- Q What links Sheffield, Edinburgh, Rome
- Q What is the software frequently utilized by end users called (like Word, PowerPoint)?
- Q Explain the generic term internet.
- Q Which agitation lead to the formation of Public Service Commission in Travancore;
- Q What do you understand by hierarchical data?
- Q What was the most recent film you saw?
- Q Sadhujana Paripalana Sangham was organized in the pattern of which organisation?
- Q What is an user exit used for?
- Q Explain the details of the 1992 National Environment Policy of India. Mention how this policy document reflects constitutional provisions of environment protection in the country?
- Q which among was not included in fundamental right?
- Q class opOverload{ public: bool operator==(opOverload temp); }; bool opOverload::operator==(opOverload temp){ if(*this == temp ){ cout<<"The both are same objects "; return true; } cout<<"The both are different "; return false; } void main(){ opOverload a1, a2; a1== a2; }