Searching for "Non"

Q:

The phenomenon of summer sleep by animals is called

A) hibernation B) aestivation
C) laziness D) lethargy
 
Answer & Explanation Answer: B) aestivation

Explanation:

Aestivation is summer sleep. Many organisms like the snails do not find it comfortable in summer. They withdraw and lead a life with reduced BMR (basic Metabolic Rate) in a state of  dormancy.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

Q:

When two similar sources vibrate with slightly different frequencies , a regular rise and fall occurs in the loudness of tone. This phenomenon is known as 

A) doppler effect B) beats
C) resonance D) echo
 
Answer & Explanation Answer: B) beats

Explanation:

Beats means the periodic increase and decrease in loudness heard when two notes of nearly the same frequency are sounded simultaneously.

Report Error

View Answer Report Error Discuss

Filed Under: Physics

Q:

Why was the 1955 UN General Assembly called "Menon Session" or "Menon Assembly"?

Answer

Because V K Krishna Menon spoke for 13hours continuously while representing india.

Report Error

View answer Workspace Report Error Discuss

Q:

Which writer had a coat of arms with these words on it, "Non sans droict" or "Not without right"?

Answer

Shakespeare

Report Error

View answer Workspace Report Error Discuss

Q:

Which of the following states High Court has recently restored the power of the RBI to decide the period after which the bad loan can be called as a non-performing asset(NPA)?

A) Tamil Nadu B) Maharashtra
C) Gujarat D) Rajasthan
 
Answer & Explanation Answer: C) Gujarat

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

If a+b+c = 21, what is the total number of non - negative integral solutions?

A) 123 B) 253
C) 321 D) 231
 
Answer & Explanation Answer: B) 253

Explanation:

Number of non - negative integral solutions =n+r-1 Cr-1 = C223 = 253 

Report Error

View Answer Report Error Discuss

Filed Under: Permutations and Combinations
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

Q:

In a factory there are three types of Machines M1 , M2 and M3 which produces 25%, 35% and 40% of the total products respectively. M1, M2 and M3 produces 2% , 4% and 5% defective products, respectively. What is the percentage of non-defective products?

A) 89% B) 97.1%
C) 96.1% D) 86.1%
 
Answer & Explanation Answer: C) 96.1%

Explanation:

Non- defective products

 

25x0.98+35x0.96+40x0.95100 x 100 = 96.1

Report Error

View Answer Report Error Discuss

Filed Under: Percentage
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

Q:

When this. non-static datamember is compulsory inside non-static method

Answer

Whenever there is local- variable/parameter inside the method with same name as data member.


Ex:


Class Sample {


 int a;


  void show() {


   int a=5;


   system.out.println(a); // 5


   system.out.println(this.a);//23


  }


}


class MainApp {


  Public static void main(String[] args) {


  Sample s = new Sample();


   s.a = 23;


   s.show();


   }


}


 

Report Error

View answer Workspace Report Error Discuss

Subject: Java