Searching for "NO"

Q:

Aryabhatta was India's renowned

A) Poet B) Physicist
C) Mathmartician D) None of these
 
Answer & Explanation Answer: C) Mathmartician

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Name the person popularly Known as Gurudv

A) Narayana guru B) Tagore
C) Dr.S.Radhakrishnan D) Ramakrishna Paramahamsa
 
Answer & Explanation Answer: B) Tagore

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Who was known as the 'Father of Lok sabha'

A) Anantasayanam B) Bashyam
C) Mavlankar D) Zkir Hussain
 
Answer & Explanation Answer: C) Mavlankar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

Q:

Directions : For the Assertion (A) and Reason (R) below, choose the correct alternative 

Assertion (A)   :   Most of the Himalayan rivers are perennial. 

Reason (R)      :   They are fed by melting snow. 

A) Both A and R are true and R is the correct explanation of A. B) Both A and R are true but R is NOT the correct explanation of A.
C) A is true but R is false. D) A is false but R is true.
 
Answer & Explanation Answer: A) Both A and R are true and R is the correct explanation of A.

Explanation:

Most Himalayan rivers originating in Himalayan peaks are perennial because they are fed by the melting snow throughout the year. 

 

 

Report Error

View Answer Report Error Discuss

Filed Under: Assertion and Reason

Q:

Directions : For the Assertion (A) and Reason (R) below, choose the correct alternative 

Assertion (A)   :   Weeds should not be allowed to grow along with the crops. 

Reason (R)     :    Weeds leave no space for plants to grow. 

A) Both A and R are true and R is the correct explanation of A. B) Both A and R are true but R is NOT the correct explanation of A.
C) A is true but R is false. D) A is false but R is true.
 
Answer & Explanation Answer: C) A is true but R is false.

Explanation:

Weeds should not be allowed to grow along with the crops because they consume the plant nutrients. 

Report Error

View Answer Report Error Discuss

Filed Under: Assertion and Reason

Q:

Which of the following is not used for commenting in java?

A) // B) /* */
C) /** */ D) /** **/
 
Answer & Explanation Answer: D) /** **/

Explanation:
  • //               is a single line comment
  • /*  */          is commenting on one or more lines
  • /** */         is documentation comment
Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

Which of the following is not the other name of attriibute?

A) Data member B) Instance variable
C) instance D) Data filed
 
Answer & Explanation Answer: C) instance

Explanation:

Instance is an object not an attribute

Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

By whom will the unallocated memory that is no longer needed will be cleared in java?

A) Java Virtual Machine B) Garebage collector
C) Both A and B D) None
 
Answer & Explanation Answer: B) Garebage collector

Explanation:

The Java programming language provides a system-level thread to track memory allocation.

Garbage collection has the following characteristics:

• Checks for and frees memory no longer needed

• Is done automatically

• Can vary dramatically across JVM implementations

Report Error

View Answer Report Error Discuss

Filed Under: Java