wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Tech Forza

Total questions: 25

Worksheet time: 4mins

Name
Class
Date
1.

Which technology services company did IEEE acquire in 2016?

a)

Flexi IT

b)

WebSailors

c)

Civenty

d)

GlobalSpec

2.

The third component in algorithms is classified as

a)

data repetition

b)

statement repetition

c)

selection

d)

stating order of operations

3.

The programming language 'COMAL' stand for

a)

common algorithmic language

b)

common arithmetic language

c)

common arithmetic learning

d)

common algorithmic learning

4.

To make the program more easier to understand, the programmers can

a)

add comments to it

b)

declare variable names

c)

use secure data

d)

both a and b

5.

The programming language which is used for scientific purposes and the work is to be done in batches is

a)

PASCAL

b)

FORTRAN

c)

LOGO

d)

COMAL

6.

A program which interprets each line of high level program at the time of execution is called

a)

the CLOSED function

b)

the OPEN function

c)

the START function

d)

the END function

7.

Predict the output


#include <stdio.h>

int var= 5;

int main() {

int var = var;

print {"%d",var};

}

a)

5

b)

compiler error

c)

garbage value

d)

none of the above

8.

ASCII decimal range of characters from A...Z is

a)

65-90

b)

100-127

c)

58-92

d)

1-28

9.

What does printf function returns?

a)

Size of integer

b)

Size of character

c)

Number of characters printed on the screen

d)

Size of variable

10.

Size of operator returns size in

a)

Bits

b)

Bytes

c)

Kilobytes

d)

Megabytes

11.

Guess the logo

a)

IEEE Power and Energy Society

b)

IEEE Broadcast Technology Society

c)

IEEE Communication Society

d)

IEEE Magnetics Society

12.

The first IEEE Milestone dates back to?

a)

1751

b)

1749

c)

1777

d)

1759

13.

Which of these is not an IEEE publication?

a)

IEEE Microwave Magazine

b)

IEEE Spectrum Magazine

c)

IEEE Journal of Oceanic Engineering

d)

IEEE Science Magazine

14.

Which IEEE platform enables users to store, search, access and manage datasets?

a)

IEEE TechRxiv

b)

IEEE Dataport

c)

Code Ocean

d)

IEEE Author Center

15.

The variable which uses the same name in whole program and in its all routines thus best classified as

a)

middle variable

b)

local variable

c)

default variable

d)

global variable

16.

The following code int a=4, b=6; printf("%d",a==b);

a)

Outputs an error message

b)

Prints 1

c)

Prints 0

d)

None of the above

17.

Study the following code int I=263; putchar(I);

a)

Prints 263

b)

Prints garbage

c)

Rings the bell

d)

Prints the ASCII equivalent 263

18.

The statement used to make choice between different options and only option is to be performed is written as

a)

if then statement

b)

if else statement

c)

then else statement

d)

else one statement

19.

How many keyword's in C?

a)

0

b)

32

c)

48

d)

255

20.

Variable that are declared but not initialized contains ?

a)

0

b)

Black space

c)

garbage

d)

none

21.

In which year, C Language was Developed?

a)

1979

b)

1972

c)

1991

d)

1995

22.

Which of the following function is user defined?

a)

printf

b)

scanf

c)

main

d)

none

23.

How many types of loop in C?

a)

1

b)

2

c)

3

d)

none

24.

Which Type of statement is 'break' in C language?

a)

Jump statement

b)

Conditional statement

c)

Looping statement

d)

All of above

25.

Which of the following user-defined datatype share its memory with each other?

a)

structure

b)

array

c)

class

d)

union