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