NEW
Font size
WorksheetsTech Forza
Total questions: 25
Worksheet time: 4mins
Which technology services company did IEEE acquire in 2016?
Flexi IT
WebSailors
Civenty
GlobalSpec
The third component in algorithms is classified as
data repetition
statement repetition
selection
stating order of operations
The programming language 'COMAL' stand for
common algorithmic language
common arithmetic language
common arithmetic learning
common algorithmic learning
To make the program more easier to understand, the programmers can
add comments to it
declare variable names
use secure data
both a and b
The programming language which is used for scientific purposes and the work is to be done in batches is
PASCAL
FORTRAN
LOGO
COMAL
A program which interprets each line of high level program at the time of execution is called
the CLOSED function
the OPEN function
the START function
the END function
Predict the output
#include <stdio.h>
int var= 5;
int main() {
int var = var;
print {"%d",var};
}
5
compiler error
garbage value
none of the above
ASCII decimal range of characters from A...Z is
65-90
100-127
58-92
1-28
What does printf function returns?
Size of integer
Size of character
Number of characters printed on the screen
Size of variable
Size of operator returns size in
Bits
Bytes
Kilobytes
Megabytes
Guess the logo
IEEE Power and Energy Society
IEEE Broadcast Technology Society
IEEE Communication Society
IEEE Magnetics Society
The first IEEE Milestone dates back to?
1751
1749
1777
1759
Which of these is not an IEEE publication?
IEEE Microwave Magazine
IEEE Spectrum Magazine
IEEE Journal of Oceanic Engineering
IEEE Science Magazine
Which IEEE platform enables users to store, search, access and manage datasets?
IEEE TechRxiv
IEEE Dataport
Code Ocean
IEEE Author Center
The variable which uses the same name in whole program and in its all routines thus best classified as
middle variable
local variable
default variable
global variable
The following code int a=4, b=6; printf("%d",a==b);
Outputs an error message
Prints 1
Prints 0
None of the above
Study the following code int I=263; putchar(I);
Prints 263
Prints garbage
Rings the bell
Prints the ASCII equivalent 263
The statement used to make choice between different options and only option is to be performed is written as
if then statement
if else statement
then else statement
else one statement
How many keyword's in C?
0
32
48
255
Variable that are declared but not initialized contains ?
0
Black space
garbage
none
In which year, C Language was Developed?
1979
1972
1991
1995
Which of the following function is user defined?
printf
scanf
main
none
How many types of loop in C?
1
2
3
none
Which Type of statement is 'break' in C language?
Jump statement
Conditional statement
Looping statement
All of above
Which of the following user-defined datatype share its memory with each other?
structure
array
class
union
