logo

CuriousTab

CuriousTab

Technology problems


  • 1. What is the difference between method overriding and overloading?
  • Discuss
  • 2. What is classloader?
  • Discuss
  • 3. What will be the output of the following code snippet? Object s1 = new String("Hello"); Object s2 = new String("Hello"); if(s1 == s2) { System.out.println("s1 and s2 are =="); }else if (s1.equals(s2)) { System.out.println("s1 and s2 are equals()"); }
  • Discuss
  • 4. What is JDBC ?
  • Discuss
  • 5. What is DriverManager ?
  • Discuss
  • 6. What is a ResultSet ?
  • Discuss
  • 7. What are the different JDBC drivers available ?
  • Discuss
  • 8. Is the JDBC-ODBC Bridge multi-threaded ?
  • Discuss
  • 9. What is the difference between an Interface and an Abstract class?
  • Discuss
  • 10. What is the purpose of garbage collection in Java, and when is it used ?
  • Discuss

First 134 135 136 ... 137 .. 138 139 Last