Searching for "%"

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:

What name was given to the city of Yathrib by Prophet Mohammed?

Answer

Medina

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

Q:

In Hindu mythology, what is the name of the auspicious jewel Lord Vishnu wears on a pendant around his neck?

Answer

Kaustubham

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

Q:

What term is used for initiation into Sikhism?

Answer

Pahul

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

Q:

In Indian musical terminology, what is the feminine of Raga?

Answer

Ragini

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

Q:

What is the Standard Template Library?

Answer

A library of container templates approved by the ANSI committee for inclusion in the standard C++ specification. A programmer who then launches into a discussion of the generic programming model, iterators, allocators, algorithms, and such, has a higher than average understanding of the new technology that STL brings to C++ programming

Report Error

View answer Workspace Report Error Discuss

Subject: C++
Job Role: Software Architect

Q:

What is an explicit constructor?

Answer

A conversion constructor declared with the explicit keyword. The compiler does not use an explicit constructor to implement an implied conversion of types. It’s purpose is reserved explicitly for construction

Report Error

View answer Workspace Report Error Discuss

Subject: C++
Job Role: Software Architect

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