Searching for "u"

Q:

Gum Kelucharan Mohapatra is a maestro of which of the following dance forms

A) Kathak B) Kuchipudi
C) Odissi D) Kathakali
 
Answer & Explanation Answer: A) Kathak

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Kuldip Nayarr, a journalist was appointed as a high commissioner in 

A) UK B) Pakistan
C) Sri Lanka D) Australia
 
Answer & Explanation Answer: A) UK

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Jamini Roy is a famous

A) Dancer B) Magician
C) Cartoonist D) Painter
 
Answer & Explanation Answer: D) Painter

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Gun gopi krrishna was a maestro of which of the follwing dance forms

A) Manipuri B) Bharatanatyam
C) Kuchipudi D) Kathak
 
Answer & Explanation Answer: D) Kathak

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Which of the following statement is true?

A) Cohesion is the OO principle most closely associated with hiding implementation details B) Cohesion is the OO principle most closely associated with making sure that classes know about other classes only through their APIs
C) Cohesion is the OO principle most closely associated with making sure that a class is designed with a single, well-focused purpose D) None
 
Answer & Explanation Answer: C) Cohesion is the OO principle most closely associated with making sure that a class is designed with a single, well-focused purpose

Explanation:

A refers to encapsulation, B refers to coupling

Report Error

View Answer Report Error Discuss

Filed Under: Programming

Q:

public abstract interface Frobnicate { public void twiddle(String s); } 

Which is a correct class?

A) public abstract class Frob implements Frobnicate { public abstract void twiddle(String s) { } } B) public abstract class Frob implements Frobnicate { }
C) public class Frob extends Frobnicate { public void twiddle(Integer i) { } } D) public class Frob implements Frobnicate { public void twiddle(Integer i) { } }
 
Answer & Explanation Answer: B) public abstract class Frob implements Frobnicate { }

Explanation:

B is correct, an abstract class need not implement any or all of an interface’s methods

Report Error

View Answer Report Error Discuss

Filed Under: Programming

Q:

What is the capital of Hungary?

A) Budapest B) Reykjavik
C) Santo Domingo D) None
 
Answer & Explanation Answer: A) Budapest

Explanation:

Budapest is the capital of Hungary

Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

Q:

Which is true?

A) "X extends Y" is correct if and only if X is a class and Y is an interface B) "X extends Y" is correct if and only if X is a class and Y is an interface
C) "X extends Y" is correct if X and Y are either both classes or both interfaces D) "X extends Y" is correct for all combinations of X and Y being classes and/or interfaces
 
Answer & Explanation Answer: C) "X extends Y" is correct if X and Y are either both classes or both interfaces

Explanation:

A is incorrect because classes implement interfaces, they don't extend them. B is incorrect because interfaces only "inherit from" other interfaces. D is incorrect based on the preceding rules.

Report Error

View Answer Report Error Discuss

Filed Under: Java