Tag: Programming
-
C++ Programming Questions and Answers – Resource Management
C++ interview questions focuses on “Resource Management”. One shall practice these advanced C++ questions to improve their C++ programming skills needed for various interviews (campus interviews, walk-in interviews, company interviews), placements, entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be a beginner,…
-
C++ Programming Questions and Answers – Catching Exceptions
C++ programming interview questions and answers focuses on “Catching Exceptions”. One shall practice these interview questions to improve their C++ programming skills needed for various interviews (campus interviews, walkin interviews, company interviews), placements, entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be…
-
C++ Programming Questions and Answers – Grouping of Exceptions
C++ interview questions and answers focuses on “Grouping of Exceptions”. One shall practice these interview questions to improve their C++ programming skills needed for various interviews (campus interviews, walk-in interviews, company interviews), placements, entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be…
-
C++ Programming MCQ – Exception Handling
C++ Programming Multiple Choice Questions & Answers (MCQs) focuses on “Exception Handling”. Q 1. What is an exception in C++ program?A. Also known as semantic errorB. A problem that arises during compilationC. Also known as the syntax errorD. A problem that arises during the execution of a program Show Answer Answer:-D. A problem that arises…
-
Python Questions and Answers – Function – 3
Python Questions focuses on “Functions”. Q 1. Python supports the creation of anonymous functions at runtime, using a construct called __________A. lambdaB. piC. anonymousD. none of the mentioned Show Answer Answer:-A. lambda Explanation Python supports the creation of anonymous functions (i.e. functions that are not bound to a name) at runtime, using a construct called…
-
Python Question and Answers – Built-in Functions – 2
Python Multiple Choice Questions & Answers (MCQs) focuses on “Built-in Functions – 2”. Q 1. What will be the output of the following Python functions? chr(‘97’)chr(97)A. a Error B. ‘a’ aC. Error a D. Error Error Show Answer Answer:-C. Error a Explanation The built-in function chr() returns the alphabet corresponding to the value given as…
-
C++ Programming Questions and Answers – Standard Template Library
C++ Programming Multiple Choice Questions & Answers (MCQs) focuses on “Standard Template Library”. Q 1. What is the Standard Template Library?A. Set of C++ classesB. Set of C++ template classes to provide common programming data structures and functionsC. Set of Template functions used for easy data structures implementationD. Set of Template data structures only Show…
-
C++ Programming Questions and Answers – Derivation and Templates
C++ interview questions focuses on “Derivation and Templates”. One shall practice these advanced C++ questions to improve their C++ programming skills needed for various interviews (campus interviews, walkin interviews, company interviews), placements, entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be a…
-
C++ Programming MCQ – Specialization
C++ interview questions and answers focuses on “Specialization “. One shall practice these interview questions to improve their C++ programming skills needed for various interviews (campus interviews, walk-in interviews, company interviews) entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be a beginner,…
-
C++ Programming Questions and Answers – Class Templates
C++ Programming Multiple Choice Questions & Answers (MCQs) focuses on “Class Templates”. Q 1. What is the syntax of class template?A. temp <paramaters> class declarationB. Template <paramaters> class declarationC. template <paramaters> class declarationD. Temp <paramaters> class declaration Show Answer Answer:-C. template class declaration Explanation Syntax involves template keyword followed by list of parameters in angular…