Searching for "Which"

Q:

Which of the following is UN special agency and not programme

A) UNDP B) UNIFEM
C) IBRD D) UNFPA
 
Answer & Explanation Answer: A) UNDP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

Q:

Which of the following is a World Bank group of five institutions

A) IMF B) IDA
C) ILO D) ITU
 
Answer & Explanation Answer: B) IDA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

Q:

Which of the following countries is not a member of the Nuclear Suppliers Group(NSG)

A) France B) Russia
C) USA D) Iran
 
Answer & Explanation Answer: D) Iran

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

Q:

In which country UNESCO Science Co-operation Office has been set-up

A) Cairo,Jakarta B) Nairobi, New Delhi
C) Montevideo, Venice D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

Q:

Mallika Sarabhi is associated with which of the  following fields

A) Social Service B) Classical Music
C) Classical Dance D) Sports
 
Answer & Explanation Answer: C) Classical Dance

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Which of the following statements are equal for a variable declared in the interface ?

1. int X=10
2. public int X=10
3. public static final int X=10

A) Only 1 and 2 are equal B) Only 2 and 3 are equal
C) All are unequal D) All are equal
 
Answer & Explanation Answer: D) All are equal

Explanation:

All the statements are equal because inside an interface a variable declared will be public static final by default 

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer

Q:

Which of the following method declarations are allowed inside interface?

A) public void m1() B) private void m1()
C) protected void m1() D) abstract public void m1()
 
Answer & Explanation Answer: D) abstract public void m1()

Explanation:

Inside an interface every method will be by default abstract and public

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer

Q:

Which of the following are valied?

A) A class can extend any number of classes simulteneously B) A class can implement only one interface at a time
C) A class can extend other class or can implement interface but not both simulteneously D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

A is wrong because a class can extend nly one class .B is wrong because a class can implement any number of interfaces.C is wronb because both can can be done simulteneously.So, D is correct

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer