Searching for "at"

Q:

Panchatantra has been written by

A) Kalidas B) Surdas
C) Vishakhadatta D) Vishnu Sharma
 
Answer & Explanation Answer: D) Vishnu Sharma

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

void waitForSignal() {

Object obj = new Object();

synchronized (Thread.currentThread()) {

obj.wait();

obj.notify();

}

}

Which statement is true?

A) This code can throw an InterruptedException. B) This code can throw an IllegalMonitorStateException.
C) This code can throw a TimeoutException after ten minutes D) All the above
 
Answer & Explanation Answer: B) This code can throw an IllegalMonitorStateException.

Explanation:

It will throw  IllegalMonitorStateException.

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer

Q:

public class Threads2 implements Runnable {

public void run() {

System.out.println("run.");

throw new RuntimeException("Problem");

Which among the following is true?

}

public static void main(String[] args) {

Thread t = new Thread(new Threads2());

t.start();

System.out.println("End of method.");

}

}

A) java.lang.RuntimeException: Problem B) run. java.lang.RuntimeException: Problem
C) End of method. java.lang.RuntimeException: Problem D) End of method. run. java.lang.RuntimeException: Problem
 
Answer & Explanation Answer: D) End of method. run. java.lang.RuntimeException: Problem

Explanation:

Only D can be true

Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

The quotation ' Some of born great , Some achieve greatness, and some have greatness, thrust upon them ' is atributed to

A) Bertrand Russell B) Abraham Lincoln
C) William Shakeshpare D) George Orwell
 
Answer & Explanation Answer: C) William Shakeshpare

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

Which one of the following is not an award given on the National Awards Day

A) Rajiv Khel Ratna B) Arjun Award
C) Dhyanchand Award D) Vishwamitra Award
 
Answer & Explanation Answer: D) Vishwamitra Award

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

Rabindranath Tagore was awarded Noble Prize for his literary work named

A) Geetanjali B) Rajtarangini
C) Chokher Bali D) None of these
 
Answer & Explanation Answer: A) Geetanjali

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

Who is the author of the book " The Argumentative "

A) V.S.Naipaul B) Vikram Seth
C) Sashi Tharoor D) Amartya Sen
 
Answer & Explanation Answer: D) Amartya Sen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

The first feature film produced in India was

A) Hatimtai B) Alamm Ara
C) Pundalik D) Raja Harishchandra
 
Answer & Explanation Answer: B) Alamm Ara

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors