C 1 online test, online practice test, exam, quiz

C 1 Online Test

The purpose of this online test is to help you evaluate your C 1 knowledge yourself. These Multiple Choice Questions (MCQs) on C 1 will prepare you for technical round of job interview, written test and many certification exams.

The test contains 12 questions and there is no time limit. You will get 1 point for each correct answer. You will get your online test score after finishing the complete test.
(Total 12 questions)        (Time spent 0:0)

1. What is the output of following C++ program?
#include < iostream>
using namespace std;
int main()
{
typedef int num;
typedef char let;
let w = "steve";
num a = 10, b = 15;
num c = a + w;
cout << c;
return 0;
}

   View Test Answer
Advertisement