NEW
Font size
WorksheetsC Programming Language Re-Test
Total questions: 20
Worksheet time: 9mins
It is a programming language used to rewrite the UNIX Operating system from its original code.
Basic Combined Programming Language
C Programming Language
C++ Programming Language
B Language
It is a set of instructions that tell a computer what to do.
Programming Language
Computer Instructions
Computer Program
Programming System
He is the developer of B Programming Language.
Ken Thompson
Dennis Ritchie
Brian Kernighan
Martin Richards
He is the writer and developer of C Programming Language.
Martin Richards
Ken Thompson
Brian Kernighan
Dennis Ritchie
It is a feature of C Programming Language that allows you to break a code into different parts using functions which can be stored in the form of libraries for future use and reusability.
Structured Programming Language
Use of Pointers
Portability
Mid-level Programming Language
It is the year when the first edition of 'The C programming language' by K& RC was published.
1978
1979
1988
1989
It is a feature of C Programming Language that provides a lot of built in functions that make the development fast.
Simple
Portability
Use of Pointers
Rich Library
It is a feature of C Programming Language that points to a specific location in the memory and interact directly with it.
Simple
Memory Management
Use of Pointers
Recursion
It is a feature of C Programming Language that it can create a function that can call itself multiple times until a given condition is true.
Portability
Recursion
Speed
Mid-level Programming Language
What does 'portability' mean in the context of C programming?
A. Writing code for a specific hardware platform
B. Writing code that can run on different hardware and operating systems
C. Using only the most recent C language features
D. Ignoring cross-platform compatibility
In basic program structure of C program what is the code or syntax that you can use to display text or print an output?
A. scanf
B. print
C. printf
D. scan
Which among of the following is NOT an advantage of C Programming Language?
A. C is an Object-Oriented Programming Language
B. C is cross-platform compatibility
C. C is very efficient and fast
D. C was used to create embedded systems in microcontrollers
Using the Dev C++ Application, we can use it to write, compile and run the code of our C++ programs. What is the shortcut key in keyboard to COMPILE AND RUN the code of our program?
F8
F9
F10
F11
Using the Dev C++ Application, we can use it to write, compile and run the code of our C++ programs. What is the shortcut key in keyboard to COMPILE the code of our program?
F8
F9
F10
F11
In Dev C++ the shortcut Key of RUN is ______
F10
F11
F9
In basic program structure of C program this is the line where the execution of any C program begins.
#include <stdio.h>
int main( )
C language was developed at AT & T Bell Laboratories in New York, USA.
TRUE
FALSE
To display text in a program write the code printout ().
TRUE
FALSE
Every statement we declare in our program should be terminated with a semicolon.
TRUE
FALSE
The file extension name of C source code is .cpp
TRUE
FALSE
