What’s your availability this summer
Java Interview Questions
6,580,096 interview questions shared by candidates
Do you have tattoos? ANSWER: NO.....no matter what!!!!
What experience do you have in marketing?
need to join tomorrow are you ready?
N points lie on a circle. You draw lines connecting all the points to each other. These lines divide up the circle into a number of regions. How many regions is this? Assume that the points are scattered in such a way as to give the maximum number of regions for that N.
3) Poker. 26 red, 26 black. Take one every time, you can choose to guess whether it’s red. You have only one chance. If you are right, you get 1 dollar. What’s the strategy? And what’s the expected earn?
class A { public A() { foo(); } public void foo() { System.out.println("Class A"); } } class B extends A { public B(){} public void foo() { System.out.println("Class B"); } } class main { public static void main(String[] args) { A a = new B(); } } What does it print? Class A or Class B?
Are you prepared to work in the elements?
There is a table that tracks every time a user turns a feature on or off, with columns user_id, action ("on" or "off), date, and time. How many users turned the feature on today? How many users have ever turned the feature on? In a table that tracks the status of every user every day, how would you add today's data to it?
Given two strings representing integer numbers ("123" , "30") return a string representing the sum of the two numbers ("153")
Viewing 1721 - 1730 interview questions