C++

 60 Minutes
 16 Questions


This test assesses knowledge of technology, C++, and related topics. It will cover topics such as object-oriented programming, compound data types, C++ basics, and sorting and data manipulation. The test will consist of multiple-choice questions, and coding challenges. The questions will range from basic to advanced, and will require the candidate to demonstrate their understanding of the topics. The test will also assess the candidate's ability to apply their knowledge to solve coding problems.


Example Question:

Multiple-Choice
Will the delete ptr in the following code free array memory?
int * ptr= new int[10];
for(int i=0; i<10; i++)
{
ptr[i]=i;
cout<< ptr[i];
}
delete ptr;