wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Career Opportunities in IT : {Shakeel Juman}

Total questions: 10

Worksheet time: 8mins

Name
Class
Date
1.

What is the output of this C code?view sourceprint?

#include <stdio.h>

void main()

{

int x = 97;

int y = sizeof(x++);

printf("x is %d", x);

}

a)

x is 98

b)

x is 97

c)

x is 99

d)

Run time error

2.

How many times "SonaCollege" is get printed?

#include<stdio.h>

int main()

{

int x;

for(x=-1; x<=10; x++)

{

if(x < 5)

continue;

else

break;

printf("University of Calicut");

}

return 0;

}

a)

0 times

b)

Infinite times

c)

11 times

d)

10 times

3.

Which of the following special symbol allowed in a variable name?

a)

* (asterisk)

b)

- (hyphen)

c)

| (pipeline)

d)

_ (underscore)

4.

Identify this person?

a)

Mark Zuckerberg

b)

Sundar Pichai

c)

Elon Musk

d)

Bill Gates

5.

Identify the Google CEO ?

a)

b)

c)

d)

6.

Which AI tool is commonly used for generating images from text prompts?

a)

ChatGPT

b)

MidJourney

c)

Grammarly

d)

Trello

7.

Who was one of the co-founders of OpenAI, the company behind ChatGPT?

a)

Satya Nadella

b)

Elon Musk

c)

Bill Gates

d)

Steve Jobs

8.

Which operating system is most commonly used for penetration testing and ethical hacking?

a)

Windows 11

b)

macOS Ventura

c)

Kali Linux

d)

Ubuntu

9.

What is used to transform plaintext into unreadable text using cryptographic techniques?

(a)  

10.

Draw a triangle with two lines