12th Grade C Quizzes, Questions & Answers
Recent C Quizzes
This aptitude test focuses on assessing skills in C programming, specifically related to pointers and strings. It includes practical questions on structure access, pointer operations, and string manipulation, essential for...
Questions: 15 | Attempts: 1134 | Last updated: Mar 16, 2025
-
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?
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()); }}
This quiz is based on what we have covered so far. It also includes what was discussed on Monday class. Remember that you can take the quiz TWO times at most.
Questions: 25 | Attempts: 349 | Last updated: Feb 20, 2025
-
Sample QuestionNumber 1 is a legal name for variables in C language.
HI GUYS!!!THIS QUIZ LIKE TEST IS RELATED TO FUNDAMENTAL MODULE TEST IN CTS. WHICH WILL BE VERY USEFUL FOR YOU TO SELF-TEST YOUR SKILLS!!!TOPICS COVERED ARE:->PROBLEM SOLVING IN C.->DATA STRUCTURES IN...
Questions: 16 | Attempts: 3060 | Last updated: Mar 21, 2025
-
Sample Question1. create table { empno numeric (4) constraint emp_prim primary keyEmpname varchar2 (20) constraint emp_const check(empname = upper(empname))}
*Please be reminded: when you answer the fill-in-the-blanks questions, do not use excessive/redundant -blanks- ,e.g.
enter:- if(a>b) ,
not if(a...
Questions: 12 | Attempts: 702 | Last updated: Feb 20, 2025
-
Sample QuestionA file (name.txt) containing a list of your classmates reads as below (ALL names follow immediately with a 'new line' character):What would be the output to the screen on running the code below:#include <stdio.h>main(){ char str1[20] = "Hello, boys"; char str2[100] = "God created the world in 7 days."; FILE *fp; fp=fopen("name.txt","r"); if (fp==NULL){ printf("Cant open !\n"); exit(1); } fgets(str1,12,fp); fgets(&str2[12],10,fp); printf("%s",str2); fclose(fp);}
C is a programming language which was developed by Dennis Ritchie. C language incorporates low-level access to memory, clean style and simple set of keywords which makes 'C' language a perfect system...
Questions: 10 | Attempts: 11064 | Last updated: Apr 21, 2025
-
Sample Questionvoid main() { int const * p=5; printf("%d",++(*p)); }
Advertisement