Searching for "Which"

Q:

What is the name of the elephant which serves as the mount of Lord Indra?

Answer

Airavata

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

Q:

Which Ragamala depicts the martial arts by introducing horsemen in battle?

Answer

 Nataraga/ Natanarayana

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

Q:

Consider the following statements about Sikh Gurus:
1. Banda Bahadur was appointed as the military leader of the Sikhs by Guru Tegh Bahadur.
2. Guru Arjan Dev become the Sikh Guru after Guru Ram Das.
3. Guru Arjan Dev gave to Sikhs their own script- Gurumukhi.
Which of the statements given is/are correct?

A) 1 only B) 2 and 3
C) 1 and 3 D) 1 and 2
 
Answer & Explanation Answer: D) 1 and 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture

Q:

According to legend, which deity was Ved Vyasa's scribe as he dictated the story of the Mahabharata?

Answer

Ganesha

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

Q:

A special member function of a class, which is invoked automatically whenever an object goes out of the scope is called

A) Constructor B) Destructor
C) Friend function D) None of the above
 
Answer & Explanation Answer: B) Destructor

Explanation:

Destructor is a special member function of a class, which is invoked automatically whenever an object goes out of the scope. It has the same name as its class with a tilde character prefixed.

Report Error

View Answer Report Error Discuss

Filed Under: C++
Job Role: Software Architect

Q:

Which kind of inheritance is not supported directly through classes in java?

A) Multilevel B) Multiple
C) Single D) Hirarcheal
 
Answer & Explanation Answer: B) Multiple

Explanation:

Multiple inheritance is not supported directly but it is achieved through the concept of Interface

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: Software Architect

Q:

Which among the following are not the c++ tokens

A) Identifiers B) keywords
C) Strings D) None
 
Answer & Explanation Answer: D) None

Explanation:

All the above listed options are c++ tokens .They  include:

             - keywords

             - Identifiers

             - Constants

             - Strings

             - operators

Report Error

View Answer Report Error Discuss

Filed Under: C++
Exam Prep: GATE

Q:

Which among the following is a scope resolution operator?

A) : B) ::
C) :? D) None
 
Answer & Explanation Answer: B) ::

Explanation:

:: is the scope resolution operator

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: Software Architect