NEW
Font size
WorksheetsComputer Programming 1
Total questions: 30
Worksheet time: 15mins
A computer program is a set of instructions that tells the computer what to do, how to interact with the user and process data.
TRUE
FALSE
A computer professional who writes this set of instructions is what we call a coder.
TRUE
FALSE
An analysis is a formula or set of steps for solving a particular problem.
TRUE
FALSE
A variable is a named area in memory that stores value or string.
TRUE
FALSE
A flowchart is a graphical representation of the procedures involved in the solutions of problems.
TRUE
FALSE
A program written and coded using machine readable codes is called syntax.
TRUE
FALSE
Floating type variables can hold real numbers such as: 2.34, -9.382, 5.0 etc.
TRUE
FALSE
Keyword char is used for declaring character type variables.
TRUE
FALSE
System Flowchart shows the overall activities of the system.
TRUE
FALSE
C Data Types are grouped into three types.
TRUE
FALSE
Integers are whole numbers that can have both positive and negative values, but no decimal values.
TRUE
FALSE
Program Flowchart depicts the logic of instructions to solve a specific problem.
TRUE
FALSE
C is a compiled programming language.
TRUE
FALSE
A converter is a particular tool that compiles a program and turns it into a machine readable object file.
TRUE
FALSE
Data types simply refer to the type and size of data associated with variables and functions.
TRUE
FALSE
A computer codes is a set of instructions that tells the computer what to do.
TRUE
FALSE
A computer professional who writes this set of instructions is what we call a coder.
TRUE
FALSE
A program written and coded using machine readable codes is called programming language.
TRUE
FALSE
An algorithm is a formula or set of steps for solving a particular problem.
TRUE
FALSE
Logic is sound reasoning in solving a problem.
TRUE
FALSE
It is a data type that can only store a whole number.
Integer
Float
Double
Character
String
Which is correct example for variable declaration?
int a;b;c;
Int a,b,c;
int a,b,c;
int a,b;c;
Which is correct example for variable declaration?
int a;b;c;
Int a,b,c;
int a,b,c;
int a,b;c;
_______________to be included to use standard I/O functions : prinf(),scanf()
#include<conio.h>
#include<stdio.h>
#include<string.h>
#include<math.h>
C is a ____________ programming language
Object oriented Programming
Procedure oriented Programming
Structured programming language
Structure and Procedure Oriented Programming
Which of the following is a logical AND operator?
||
!
&&
None of the above
This symbols * represent of what arithmetic operators
Addition
Division
Multiplication
Subtraction
This symbol %d refers to what data type
Char
Double
Float
Integer
This symbol < = of relational operators refer to
Equal to
Greater than
Less than
Less or Equal to
1. This symbol % refers to what arithmetic operator
Addition
Division
Subtraction
Modulus
