10th Grade C Quizzes, Questions & Answers
Recent C Quizzes
“C” is a computer programming language, which supports structured programming, recursion, and lexical variable scope. It first appeared in 1972 and variations of it are still used prominently today. What do you...
Questions: 10 | Attempts: 255 | Last updated: Mar 22, 2025
-
Sample Question)#include void call(int,int,int); int main(){ int a=10; call(a,a++,++a); return 0; } void call(int x,int y,int z){ printf("%d %d %d",x,y,z); }
C programming language is a robust language with a rich set of built in functions and operators that can be used to write any complex program. Take up the C programming basics- functions, array, loops etc. quiz below and get...
Questions: 10 | Attempts: 406 | Last updated: Feb 17, 2025
-
Sample QuestionTo declare a header file you use #include headerfile.h
This C Programming Aptitude Test assesses knowledge in C syntax and logic. It challenges learners with code snippets requiring understanding of loops, conditionals, and memory management to predict outputs or identify errors,...
Questions: 20 | Attempts: 192 | Last updated: Feb 17, 2025
-
Sample Question1.What will be output if you will execute following c code? #include intmain(){ inti; for(i=0;i<5;i++){ inti=10; printf(" %d",i); i++; } return0; }
This quiz, titled 'Test on C Programming Skills! Trivia Quiz', assesses foundational knowledge in C programming. It features questions on syntax, data types, control structures, and recursion, helping learners gauge their...
Questions: 10 | Attempts: 1748 | Last updated: Mar 21, 2025
-
Sample Question#include<stdio.h> void main() { struct emp { char name[20]; int age; float sal; }; struct emp e={"Tiger"}; printf("\n %d %f",e.age,e.sal); }
This Aptitude test on C-Programming focuses on pointers and strings. It assesses understanding through questions on pointer operations, structure access, and string manipulations, essential for proficiency in C programming.
Questions: 15 | Attempts: 2369 | Last updated: May 21, 2025
-
Sample QuestionAre the expression *ptr++ and ++*ptr are same?
Online MCQ Quiz on C Programming Language
No. of Questions:- 10
Time:- 10 Minutes
Full Mark:- 100
Pass Mark:- 70
This Quiz if for those user who wants to test their command over the programming...
Questions: 10 | Attempts: 13080 | Last updated: Mar 22, 2025
-
Sample QuestionC language has been developed by ?
You have probably heard that every journey starts with one footstep and if you are on the journey to become a programmer you need to ensure that your game is on point. Take up the quiz on basic fundamentals of C programming...
Questions: 5 | Attempts: 284 | Last updated: Mar 17, 2025
-
Sample QuestionWhich type of language is C?
This quiz assesses knowledge on C programming data types. It covers character categories, trigraph sequences, backslash character constants, and specifics of data types like float and signed long int. Essential for learners...
Questions: 6 | Attempts: 504 | Last updated: Mar 20, 2025
-
Sample QuestionThe characters in C are grouped into ____ categories.
Array programming in computer science relates to a standard language generalizing operations on scalars to apply transparently to vectors and higher dimensional arrays. Welcome to the "Array Programming in C Language...
Questions: 16 | Attempts: 1685 | Last updated: Oct 22, 2025
-
Sample QuestionGiven: import java.util.*;class Test { public static void main(String[] args) { // insert code here x.add("one"); x.add("two"); x.add("TWO"); System.out.printIn(x.poll()); }}
Intro to C Programming Quiz 2 assesses fundamental skills in C programming. It covers topics such as loop structures, variable usage, and program testing, providing learners with practical challenges to enhance their...
Questions: 11 | Attempts: 1451 | Last updated: Feb 20, 2025
-
Sample QuestionThe body of a while loop may never get executed.
Advertisement