NEW
Font size
WorksheetsPST Using C Part1
Total questions: 10
Worksheet time: 6mins
Who is know as founder of C language
Dennis Ritchie
Bjarne Stroustroup
Tim Berner Lee
Rasmus Ledorf
Which of these is not a correct variable data type?
int
float
real
char
C is
Low level language
High level language
Assembly level language
Medium level language
Which punctuation ends most of the lines of C code?
.
,
;
"
The starting point of C execution at
==
function()
main()
!=
Prewritten packages are imported to program by using which symbol
Hint: Header Files
%
/
#
$
What do you think is the output for the below code snippet?
int main(){
int a=10,b=20;
printf("%d", b/a);
}
Error
2
0.2
30
What do you need to import stdio.h a header file?
Just a waste of time
To run the code
It helps in compilation to binary coded file
To perform input and output operations
A precise sequence of instructions for processes that can be executed by a computer; how a computer processes information.
Input
Output
Algorithm
Approaches used to solve a problem
Algorithm
Pseudo code
Flowchart
All mentioned options
