Topic — Add New » Posts Last Poster Freshness
FB HACKER CUP QUESTION 1 geekologic 1 week

You are racing on a 2D lattice grid starting from the origin (0,0) towards a goal (M,N) where M and N are positive integers such that 0 < M <= N. There is a checkpoint that's neither on the origin nor on the goal with coordinates (m,n) such that 0 <= m <= M and 0 <= n <= N. You must clear the checkpoint before you reach the goal. The shortest path takes T = M + N steps.
At each point, you can move to the four immediate neighbors at a fixed speed, but since you don't wa...

Is Java a pure object oriented language? 17 Dev Babu 1 week

Is Java a pure objected oriented language? Can you please give some examples of pure object oriented languages.

Multiple public interfaces in a Java file 2 pavan 3 weeks

It is not allowed in Java to have more than one public classs in a file. Can we have more than one public interfaces, or a public interface and a public class

Autoboxing in Java 3 rahul 1 month

What is autoboxing in Java?

Microsoft Interview Question for Software Engineer/Developer (Fresher) about Java 2 Shantanu 1 month

Why java is platform independent? (They expected something other than bytecode and portability)

Microsoft
string literals 1 namit mishra 1 month

what is string literal in java?

Interview Question for Software Engineer/Developer (Fresher) about Java 2 kartik 2 months

what is the purpose of garbage collection, when is it used? explain with an example

[closed] Interview Question for Software Engineer/Developer (Fresher) about Java 2 kartik 2 months

how parameters are passed in Java?

Interview Question for Software Engineer/Developer (Fresher) about Java 1 op 2 months

what is serialization? how do we serialize objects to a file?

Interview Question for Software Engineer/Developer (Fresher) about Java 1 op 2 months

what r checked and unchecked exceptions?

Interview Question for Software Engineer/Developer (Fresher) about Java 1 op 2 months

how synchronization is done among threads in Java?

Interview Question for Software Engineer/Developer (Fresher) about Java 1 op 2 months

what are inner classes? can inner classes access private/default members of outer class?

References in Java and C++ 2 2 months

What are the differences between references in C++ and Java?

Why doesn't Java support default arguments? 2 2 months

Default arguments are ot supported in Java. Is there any reason for this?

Checked and unchecked exceptions in Java 1 2 months

What are checked and unchecked exceptions in Java? When to use checked exceptions?

programming 2 Ravi 2 months

Write a Java program that outputs all possible strings formed by using the characters 'c', 'a', 'r', 'b', 'o' , and 'n' exactly once.

Enums in Java 2 kartik 3 months

How enums in Java are different from C++?