Font size
WorksheetsCareer Opportunities in IT : {Shakeel Juman}
Total questions: 10
Worksheet time: 8mins
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);
}
x is 98
x is 97
x is 99
Run time error
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;
}
0 times
Infinite times
11 times
10 times
Which of the following special symbol allowed in a variable name?
* (asterisk)
- (hyphen)
| (pipeline)
_ (underscore)
Identify this person?
Mark Zuckerberg
Sundar Pichai
Elon Musk
Bill Gates
Identify the Google CEO ?
Which AI tool is commonly used for generating images from text prompts?
ChatGPT
MidJourney
Grammarly
Trello
Who was one of the co-founders of OpenAI, the company behind ChatGPT?
Satya Nadella
Elon Musk
Bill Gates
Steve Jobs
Which operating system is most commonly used for penetration testing and ethical hacking?
Windows 11
macOS Ventura
Kali Linux
Ubuntu
What is used to transform plaintext into unreadable text using cryptographic techniques?
(a)
Draw a triangle with two lines

