Same as others mentioned on glassdoor. 3 hour round is pawn only chess. 6 hour on-site has pair programming, leetcode and small one hour projects
Desarrollador Python Junior Interview Questions
716,730 desarrollador python junior interview questions shared by candidates
a line of code has one logical bug in it, find the bug.
What are your 3 strengths and 3 weaknesses?
Given two words as Strings, determine if they are isomorphic. Two words are called isomorphic if the letters in one word can be remapped to get the second word. Remapping a letter means replacing all occurrences of it with another letter while the ordering of the letters remains unchanged. No two letters may map to the same letter, but a letter may map to itself. * * Example: * given "foo", "app"; returns true * we can map 'f' -> 'a' and 'o' -> 'p' * * given "foo", "boa"; returns false * we can map 'f' -> 'b', 'o' -> 'o', we can't map 'o' -> 'a' * * given "bar", "foo"; returns false * we can't map both 'a' and 'r' to 'o' * * given "turtle", "tletur"; returns true * we can map 't' -> 't', 'u' -> 'l', 'r' -> 'e', 'l' -> 'u', 'e' ->'r' * * given "ab", "ca"; returns true * we can map 'a' -> 'c', 'b' -> 'a' */
Implement double pow(double a, int b) without using any already built-in functions (aka, don't use an already defined pow function).
What does the operating system do when you call a function?
Why Rakuten? If a system problem occurs at midnight, would you like to work out the problem immediately? What is your impression of Japanese?
If you had twelve identical looking-balls except that one weighed more or less than the other 11, and could weigh the balls (or any subset) three times, how can you find the correct ball and whether it weighed more or less?
Build a simple app that involves displaying data that changes in realtime
If I knew what the cross apply operator was
Viewing 1201 - 1210 interview questions