logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • What is classloader?


  • Correct Answer
  • The classloader is a subsystem of JVM that is used to load classes and interfacesThere are many types of classloaders eg Bootstrap classloader, Extension classloader, System classloader, Plugin classloader etc 


  • Technology problems


    Search Results


    • 1. What is the difference between method overriding and overloading?
    • Discuss
    • 2. If a method is declared as protected, where may the method be accessed?
    • Discuss
    • 3. What do you understand by private, protected and public?
    • Discuss
    • 4. What is Thread ?
    • Discuss
    • 5. What is the difference between creating a thread by extending Thread class and by implementing Runnable interface? Which one should prefer?
    • Discuss
    • 6. 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
    • 7. What is JDBC ?
    • Discuss
    • 8. What is DriverManager ?
    • Discuss
    • 9. What is a ResultSet ?
    • Discuss
    • 10. What are the different JDBC drivers available ?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment