Who is founder of java?
Answer / Mradul Kumar Verma
The founders of Java are James Gosling, Mike Sheridan, and Patrick Naughton, who were all employed by Sun Microsystems.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a flag variable?
Which class contains a method: cloneable or object?
What is the importance in context in JDBC connection pools?
What are the two environment variables that must be set in order to run any java programs?
Java does not support multiple inheritance. how interface helps in the same?
What are the Class Libraries ?
what is the purpose of the wait(), notify(), and notifyall() methods? : Java thread
List out five keywords related to exception handling ?
Explain the scope of a variable.
Explain method overloading and overriding?
How do you add spaces in java?
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).