Description: programming languages Online Quiz - 82 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What does session.createQuery("Query").scroll() return ?
Which statement is correct?
If you are not certain that a matching row exists in the database then which method is the best ?
How to enable query cache in hibernate
Which statement is correct ?
How can you make a property be read from the database but not modified in anyway
Is the Session threadsafe in Hibernate ?
What does session.evict() method do ?
Which statement is correct ?
Does hibernate allow mixing table-per-class hierarchy and table-per-subclass strategies?
who can have access for protected internal Access Modifier?
Interface
which of the following is correct?
which of the following is/are true about Polymorphism?
public class A{ public A() { Console.WriteLine("A");} } public class B: A { public B(){Console.WriteLine("B"); void print() {Console.WriteLine("Print"); }} public static void Main() { B b = new B(); b.print(); } }
Which of the following is not true about Constructors?
Namespaces can hold
Which of the following is/are correct about OUT parameter?
What is CLR ?
Which of the following is/are correct about Static method ?