Saturday, 16 March 2013
Basic Calculator program in Java
›
I guess we are ready to write some good quality basic Java programs. One thing I would like to state here is that even if you are finding J...
6 comments:
Interview Question #4 What is immutable object? Can you write immutable object?
›
Immutable classes in java are classes whose object cannot be modified. Most instance variables and functions of immutable classes are also ...
MCQ #10
›
Question) If you do not use curly braces for a while loop body , what will execute if the while condition is true? Options) Nothing F...
MCQ #9
›
Question) When you pass variable as an argument to a method call, what are you passing? Options) The actual value A copy of the value ...
MCQ #8
›
Question) Assume x = 0 and y = 3. What is the value of x after : x = y++; Options) 0 3 4 Answer) 3 Explanation) You must kn...
‹
›
Home
View web version