WorksheetsIEEE Day
Total questions: 15
Worksheet time: 5mins
What does IEEE stand for?
Institute of Engineers for Electrical Engineering
Institute of Electrical and Electronics Engineers
Institute of Electronics and Electrical Engineers
Institute of Electricians and Electrical Engineers
When was the IEEE Day officially celebrated this year?
6th of October
7th of October
5th of October
10th of October
When was IEEE established?
1965
1961
1963
1968
Which of these is not an object oriented programming language?
C#
Java
C
Python
What is the theme of this year’s IEEE Day?
Go ahead with the Technology for a Better Tomorrow
Without Technology we can't hope for a Tomorrow
Leveraging Technology for a Better Tomorrow
Get together and make a Better Tomorrow
Which country is IEEE headquarters located in?
United States of America
Bangladesh
Australia
New Zealand
What will be the output of this program?
main ()
{
char x;
x = 'A' + 5;
printf("%c", x);
}
A + 5
A
5
F
How many regions is IEEE divided into?
10
5
20
15
What is required in each C program?
The program must have at least one function.
The program does not require any function.
Input data
Output data
Who is the chairperson of IEEE Sri Lanka Section for the year 2021/22?
Prof. Ruwan Gopura
Dr. Subodha Charles
Dr. Sudeera Nawarathna
Dr. Maheshi Dissanayaka
What is the operator used to make one's complement ?
& bitwise and operator
| bitwise or operator
~ bitwise negate operator
^ bitwise exclusive or
Which of the following statements is not true?
A pointer to an int and a pointer to a double are of the same size.
A pointer must point to a data item on the heap (free store).
A pointer can be reassigned to point to another data item.
A pointer can point to an array.
How many characters can a string hold when declared as follows?
char name[20] ;
18
19
20
None of the these
Which of the following comment is correct when a macro definition includes arguments?
The opening parenthesis should immediately follow the macro name.
There should be at least one blank between the macro name and the opening parenthesis
There should be only one blank between the macro name and the opening parenthesis
All the above comments are correct.
Which of the following operator's precedence order is correct (from highest to lowest)?
%, *, /, +, -
%, +, /, *, -
+, -, %, *, /
%, +, -, *, /
