C Programming Quizzes, Questions & Answers
Recent Quizzes
C++ Final Quiz
Questions: 10 | Attempts: 300 | Last updated: Feb 17, 2023
-
Sample QuestionWhat is the output of the following code class base{ public : virtual void func1()=0; void func2() { cout<<"\n In base, function2"; } }; //end of class class derived : public base{ public : void fun3() { cout<<"\n In derived , function3"; } };//end of class int main(){ derived d; d.fun3(); return 0; }
ILP C++ Quiz
Questions: 33 | Attempts: 102 | Last updated: Feb 17, 2023
-
Sample QuestionWhat is the output of the following snippet? int a=0101; int b=101; cout<<a<<” , ”<<b;
Online MCQ Quiz on C/C++ Programming - Set 1 No. of Questions:- 10 Time:- 10 Minutes Full Mark:- 100 Pass Mark:- 70 This Quiz is for those user who wants to test their knowledge/skill in C/C++ Programming Language. for...
Questions: 10 | Attempts: 15721 | Last updated: Jun 17, 2024
-
Sample QuestionC++ was originally developed by
C programming is one of the most popular programming languages, and over the week we got to cover much about C programming structure and pointers. Do you recall that a pointer is a variable which points to the address of another...
Questions: 15 | Attempts: 771 | Last updated: Feb 21, 2024
-
Sample QuestionIf a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?
Do you think you are an expert with C Programming Language? This quiz highlights specific pertinent questions such as the maximum value of an integer constant when C Language was created, what is permitted in C arithmetic...
Questions: 40 | Attempts: 1620 | Last updated: Mar 22, 2023
-
Sample QuestionThe Expression, A=30*1000+2768 evaluates to ________________.
This quiz provides you the basic multiple choice questions on C constants.
Questions: 10 | Attempts: 709 | Last updated: Feb 17, 2023
-
Sample QuestionCharacter Set of C language contains ?
This quiz provides you the multiple choice questions of C language
Questions: 10 | Attempts: 1923 | Last updated: Mar 20, 2023
-
Sample QuestionC language was developed by ?
Are you a computer programmer looking for a way to refresh what you know when it comes to the output of C programs? If you said yes, then you are in luck as the quiz is prepared to help you do just that. Give it a try and see if...
Questions: 10 | Attempts: 344 | Last updated: Sep 30, 2024
-
Sample QuestionWhat is the final value of x when the code int x; for(x=0; x<10; x++) {} is run?
Questions: 10 | Attempts: 447 | Last updated: Mar 20, 2023
-
Sample QuestionWhat will be output if you will compile and execute the following c code? #include int main(){ int a=sizeof(a); a=modify(a); printf("%d",a); return 0; }What will be output if you will compile and execute the following c code? #include int main(){ int a=sizeof(a); a=modify(a); printf("%d",a); return 0; } int modify(int x){ int y=3; _AX=x+y; return; }
C++ language was developed in 1979 and it is a sophisticated general purpose programming language based on C. if you are a starter at this language, then the quiz below is perfect for you, if you consider chapter one to three...
Questions: 26 | Attempts: 163 | Last updated: Feb 17, 2023
-
Sample QuestionIf the following are valid identifiers, check valid, otherwise check invalid, return
Advertisement