SlideShare ist ein Scribd-Unternehmen logo
1 von 41
Technical Quiz
Coding Round
Q1) What is the output of below C code?
main()
{
int i = 5;
i=(++i) / (i++);
printf("%d",i);
}
a) 2
b) 5
c) 1
d) 6
Answer: c
Q2) What is the output of below code?
main()
{
int h =5;
static char wer[] = "No Substitute for hard work";
printf("%-10.*s",h,wer);
}
a) No su
b)No Su
c) No Sub
d) error message
Answer: b
Q3) What is the output of below code?
main()
{
printf("tim");
main();
}
a) prints tim twice
b) keeps on printing tim
c) prints tim once
d) compiler error
Answer:b
Q4) In a 16-bit computer, what is the output of below code?
main()
{
int a =1;
printf("%u",~a);
}
a) 0
b)compiler error
c)1
d)65534
Answer: d
Q5) What is the output of below code?
void compute(int);
main()
{
int a =1;
compute(a);
printf("%d",a);
}
void compute( int a)
{
a=(a++)*(~a)/(a--);
}
(a) 131068
(b) 1
(c) compiler error
(d) 65534
Answer: b
Q6) What is the output of below code in JAVA?
class S
{
int x = 0;
S()
{
x++;
}
public static void main(String args[])
{
S s = new S();
System.out.println(s.x);
}
}
(a) 0
(b) 1
(c) compiler error
(d) Garbage value
Answer: b
Q7) What is the output of below code snippet in JAVA?
char word[]={'a','b','c','d','e'};
for(int i =0; i<4; i+=2)
System.out.println(word[i]);
(a) ace
(b) ac
(c) ab
(d) abe
Answer: b
Q8) What is the output of below code snippet in JAVA?
public static void main(String args[])
{
System.out.println(this);
}
(a) 0
(b) 1
(c) compiler error
(d) Garbage Value
Answer: c
Q9) What is the output of below code snippet in JAVA?
System.out.println(12<<2);
(a) 3
(b) 10
(c) compiler error
(d) 48
Answer: d
VISUAL ROUND
Q1) Name the browser that has this logo.
Answer: Microsoft Edge
Q2) Identify the American computer Scientist below.
Answer: Dennis Ritchie
Q3) Identify the hidden message in the below logo.
Answer: Cisco was founded in San Francisco, which explains the name.
The series of blue lines symbolise San Francisco’s iconic Golden Gate
Bridge
Q4) which company has this logo?
Answer: Kaspersky Antivirus
Q5) Identify the device?
Answer: Magnetic Tape Reader
Q6) Identify the adapter
Answer: Ethernet adapter (or) Network Interface Card (NIC)
Q7) Identify the icon
Answer: Universal Serial Bus (USB)
Q8) Identify the hidden message in the below logo
Answer: The ‘VA’ of the Sony VAIO logo has been made to look like an
analog signal and the ‘IO’ resembles numbers 1 and 0 which represents
a digital signal
Rapid Fire Round
Q 1) && have higher precedence than &
a) true
b) false
Answer: false
Q 2) What is the default value of local variable?
Answer: No Default Value
Q 3) Who is the founder of java?
Answer: James Gosling
Q 4) Who is the new CEO of Google?
Answer: Sundar Pichai
Q 5) When you are working on a document on PC, where is the document temporarily
stored?
Answer: RAM
Q 6) Information travels between components on the mother board through?
Answer: Buses
Q 7) Expand the term SUN in SUN Microsystems
Answer: 'STANFORD UNIVERSITY NETWORK'.
Q 8) Number of unique digits in binary number system is
Answer: two ( 0 and 1)
Q 9) The most frequently used instructions of a computer program are likely to be
fetched from
Answer: Cache memory
Q 10) ASCII stands for?
Answer: American Standard Code for Information Interchange
Q 11) Which access method is used for obtaining a record from a magnetic tape?
Answer: Sequential access
Q 12) A computer program that converts assembly language to machine language is
Answer: Assembler
Q 13) Who co-founded Hotmail in 1996 and then sold the company to Microsoft
Answer: Sabeer Bhatia
Q 14) What displays the content of the active cell in Excel?
Answer: Formula Bar
Q 15) The average time necessary for the correct sector of a disk to arrive at the read
write head is
Answer: Rotational Delay
Q 16) What does OCR stands for?
Answer: Optical character Recognition.
Q 17) Linux is a(n) ………………….. operating system.
Answer: open source
Q 18) The errors that can be pointed out by the compiler are
Answer: Syntax errors
Q 19) The tracks on a disk which can be accessed without repositioning the R/W
heads is
Answer: Cylinder
Q 20) Which is the first supercomputer developed by the Indian Scientists?
Answer: PARAM
Q 21) The symbols used in an assembly language are
Answer: Mnemonics
Q 22) What is the first ARPANET message
Answer: Lo
Q 23) What does T stands for in T flip-flop?
Answer: Toggle
Q 24) What does the "X" stand for in OS X?
Answer: Ten
Q 25) Abstract method can be in normal class . True (or) False
Answer: False
Q 26) What is the size of char in java?
Answer: 16 bits
Q 27) Switches operate in which layer of OSI model
Answer: Data Link Layer
Q 28) Following code will result in: int num = 6.7
Answer: Compilation error
Q 29) How many layers are there in TCP/IP model?
Answer: 5
Q 30) Expand the term JPEG
Answer: Joint Photographic Experts Group
Q 31) Expand the term DBMS
Answer: Database Management System
Q 32) Which CPU registers holds the address of the instructions (instructions in the
program stored in memory) to be executed next?
Answer: Program Counter (PC)
Q 33) Which protocol is used to receive email?
Answer: POP3
Q 34) Number of bits used for IPv4 address
Answer: 32 bit addresses
Q 35) Mac operating system is developed by which company?
Answer: Apple
Q 36) .tiff is an extension of which type of files?
Answer: POP3
Q 37) Number of bits used for IPv4 address
Answer: 32 bit addresses
Q 38) Which operating system is developed and used by Apple Inc in mobile phones?
Answer: iOS
Q 39) WhatsApp Inc is founded by?
Answer: Brian Acton and Jan Koum
Q 40) Who developed Linux operating system?
Answer: Linus Torvalds
Q 41) Bug means
Answer: A logical error in a program
Q 42) The step-by-step instructions that solve a problem is called _____.
Answer: An algorithm
Q 43) Which Key combination is used to close an open application in windows?
Answer: Alt+F4
Buzzer Round
1. First Search engine in internet?
a) google
b) Archie
c) Bing
d) Yahoo
Answer: b
2. Which one is the current fastest super computer in india?
a) PARAM padma
b) SAGA-220
c) CRAY3
d) PARAM Yuva II
Answer: d
3. In computer, Trojan refers to
a) Spyware
b) Malware
c) Virus
d) Worm
Answer: b
4. Which Key Combination is used to minimize all open windows displayed
on screen ?
a) Alt +M
b) CTRL+d
c) Shift+M
d) Window Key + d
Answer: d
5. Which company bought the popular video teleconferencing software
'Skype'?
a) Microsoft
b) Google
c) Accenture
d) Oracle
Answer: a
6. What file contains commands that configure systems devices in DOS ?
A. Command.com
B. Config.sys
C. Autoexec.bat
D. Win.ini
Answer: b
7. The part of machine level instruction, which tells the central processor
what has to be done, is
A. Operation code
B. Address
C. Locator
D. Flip-Flop
Answer: a
8. The process of transferring data intended for a peripheral device into a
disk (or intermediate store) so that it can be transferred to peripheral at a
more convenient time or in bulk, is known as
A. multiprogramming
B. spooling
C. caching
D. virtual programming
Answer: b
9. A system program that combines the separately compiled modules of
a program into a form suitable for execution
A. assembler
B. linking loader
C. cross compiler
D. load and go
Answer: b

Weitere ähnliche Inhalte

Was ist angesagt?

Tech Quiz
Tech QuizTech Quiz
Tech Quiz
ssdcps8
 

Was ist angesagt? (20)

Technical Quiz (Basic concepts of computers)
Technical Quiz (Basic concepts of computers)Technical Quiz (Basic concepts of computers)
Technical Quiz (Basic concepts of computers)
 
Recognize the Image - technology Quiz
Recognize the Image - technology QuizRecognize the Image - technology Quiz
Recognize the Image - technology Quiz
 
Geek-A-Q (comp sci and tech quiz) finals, NIT JAMSHEDPUR
Geek-A-Q (comp sci and tech quiz) finals, NIT JAMSHEDPURGeek-A-Q (comp sci and tech quiz) finals, NIT JAMSHEDPUR
Geek-A-Q (comp sci and tech quiz) finals, NIT JAMSHEDPUR
 
Tech quiz
Tech quizTech quiz
Tech quiz
 
IIT Kanpur Tech Quiz
IIT Kanpur Tech QuizIIT Kanpur Tech Quiz
IIT Kanpur Tech Quiz
 
Instinct - The IT Quiz
Instinct - The IT QuizInstinct - The IT Quiz
Instinct - The IT Quiz
 
IT Quiz Final @ eRz eRDeN 15, IT Fest, ITM Mayyil
IT Quiz Final @ eRz eRDeN 15, IT Fest, ITM MayyilIT Quiz Final @ eRz eRDeN 15, IT Fest, ITM Mayyil
IT Quiz Final @ eRz eRDeN 15, IT Fest, ITM Mayyil
 
AlphaBit Tech Quiz (Q?Bit) 2021 - Prelims
AlphaBit Tech Quiz (Q?Bit) 2021 - PrelimsAlphaBit Tech Quiz (Q?Bit) 2021 - Prelims
AlphaBit Tech Quiz (Q?Bit) 2021 - Prelims
 
Tech Quiz Finals
Tech Quiz FinalsTech Quiz Finals
Tech Quiz Finals
 
Tech Quiz- Boscotsav'18
Tech Quiz- Boscotsav'18Tech Quiz- Boscotsav'18
Tech Quiz- Boscotsav'18
 
IIT (BHU) Sci-tech Quiz prelims with answers
IIT (BHU) Sci-tech Quiz prelims with answersIIT (BHU) Sci-tech Quiz prelims with answers
IIT (BHU) Sci-tech Quiz prelims with answers
 
SciTech Quiz Finals - Questions+Answers - IIT BHU Quiz Club
SciTech Quiz Finals - Questions+Answers - IIT BHU Quiz ClubSciTech Quiz Finals - Questions+Answers - IIT BHU Quiz Club
SciTech Quiz Finals - Questions+Answers - IIT BHU Quiz Club
 
AlphaBit Tech Quiz (Q?Bit) 2021 - Finals
AlphaBit Tech Quiz (Q?Bit) 2021 - FinalsAlphaBit Tech Quiz (Q?Bit) 2021 - Finals
AlphaBit Tech Quiz (Q?Bit) 2021 - Finals
 
Computer Quiz PPT
Computer Quiz PPTComputer Quiz PPT
Computer Quiz PPT
 
IIT-M's Litsoc Sci-Biz-Tech Quiz Prelims 2018
IIT-M's Litsoc Sci-Biz-Tech Quiz Prelims 2018IIT-M's Litsoc Sci-Biz-Tech Quiz Prelims 2018
IIT-M's Litsoc Sci-Biz-Tech Quiz Prelims 2018
 
Technology quiz
Technology quizTechnology quiz
Technology quiz
 
Quiz Sci tech Rendezvous 2018 Finals
Quiz Sci tech Rendezvous 2018 FinalsQuiz Sci tech Rendezvous 2018 Finals
Quiz Sci tech Rendezvous 2018 Finals
 
Tech It Out (tech quiz) Prelims
Tech It Out (tech quiz) Prelims Tech It Out (tech quiz) Prelims
Tech It Out (tech quiz) Prelims
 
Tech Quiz
Tech QuizTech Quiz
Tech Quiz
 
Tech quiz
Tech quizTech quiz
Tech quiz
 

Andere mochten auch

Gq prelimswith ans
Gq prelimswith ansGq prelimswith ans
Gq prelimswith ans
Amey Mairal
 
Cadence - A General Quiz
Cadence - A General QuizCadence - A General Quiz
Cadence - A General Quiz
Ashish Thakur
 

Andere mochten auch (20)

"ULTIMATE TECH QUIZ"
"ULTIMATE TECH QUIZ""ULTIMATE TECH QUIZ"
"ULTIMATE TECH QUIZ"
 
Tech quiz finals
Tech quiz   finalsTech quiz   finals
Tech quiz finals
 
Technical quiz
Technical quizTechnical quiz
Technical quiz
 
Quizizz Presentation
Quizizz PresentationQuizizz Presentation
Quizizz Presentation
 
Visual round Quiz
Visual round QuizVisual round Quiz
Visual round Quiz
 
Quiz on connecting words and pictures
Quiz on connecting words and picturesQuiz on connecting words and pictures
Quiz on connecting words and pictures
 
Module 7: Advanced Quiz Options Task 2
Module 7: Advanced Quiz Options Task 2Module 7: Advanced Quiz Options Task 2
Module 7: Advanced Quiz Options Task 2
 
Gq prelimswith ans
Gq prelimswith ansGq prelimswith ans
Gq prelimswith ans
 
Quiz HVACR conducted in ACREX 2012
Quiz HVACR conducted in ACREX 2012Quiz HVACR conducted in ACREX 2012
Quiz HVACR conducted in ACREX 2012
 
Audience round Quiz at ACREX 2012
Audience round Quiz at ACREX 2012Audience round Quiz at ACREX 2012
Audience round Quiz at ACREX 2012
 
In year 12? Take this quiz to look at your options after school
In year 12? Take this quiz to look at your options after schoolIn year 12? Take this quiz to look at your options after school
In year 12? Take this quiz to look at your options after school
 
Motivation-wordles
Motivation-wordlesMotivation-wordles
Motivation-wordles
 
EVS Quiz
EVS QuizEVS Quiz
EVS Quiz
 
WORDLES
WORDLESWORDLES
WORDLES
 
Cadence - A General Quiz
Cadence - A General QuizCadence - A General Quiz
Cadence - A General Quiz
 
Wordle Ppt
Wordle PptWordle Ppt
Wordle Ppt
 
Grade 7-8 Quiz (Computer Bacis) 08/26/15
Grade 7-8 Quiz (Computer Bacis) 08/26/15Grade 7-8 Quiz (Computer Bacis) 08/26/15
Grade 7-8 Quiz (Computer Bacis) 08/26/15
 
Android Quiz
Android QuizAndroid Quiz
Android Quiz
 
Wordles
WordlesWordles
Wordles
 
Technical Quiz at Technopark trivandrum
Technical Quiz at Technopark trivandrumTechnical Quiz at Technopark trivandrum
Technical Quiz at Technopark trivandrum
 

Ähnlich wie Computer ScienceTechnical quiz

Brain byte 2 k15 prelims
Brain byte 2 k15 prelimsBrain byte 2 k15 prelims
Brain byte 2 k15 prelims
Madhan Kumar
 
Data structures and algorithms unit i
Data structures and algorithms unit iData structures and algorithms unit i
Data structures and algorithms unit i
sonalisraisoni
 
Java Questioner for
Java Questioner for Java Questioner for
Java Questioner for
Abhay Korat
 

Ähnlich wie Computer ScienceTechnical quiz (20)

Brain byte 2 k15 prelims
Brain byte 2 k15 prelimsBrain byte 2 k15 prelims
Brain byte 2 k15 prelims
 
ICT Whiz Kid 2023-Finals.pptx
ICT Whiz Kid 2023-Finals.pptxICT Whiz Kid 2023-Finals.pptx
ICT Whiz Kid 2023-Finals.pptx
 
CAPE Computer Science Unit 1 Paper 1 - Practice Paper
CAPE Computer Science Unit 1 Paper 1 - Practice PaperCAPE Computer Science Unit 1 Paper 1 - Practice Paper
CAPE Computer Science Unit 1 Paper 1 - Practice Paper
 
DIGITAL FLUENCY MULTIPLE QUESTION ANSWERS
DIGITAL FLUENCY MULTIPLE QUESTION ANSWERSDIGITAL FLUENCY MULTIPLE QUESTION ANSWERS
DIGITAL FLUENCY MULTIPLE QUESTION ANSWERS
 
Sample Paper 2 Class XI (Computer Science)
Sample Paper 2 Class XI (Computer Science)Sample Paper 2 Class XI (Computer Science)
Sample Paper 2 Class XI (Computer Science)
 
Computer general questions
Computer  general questionsComputer  general questions
Computer general questions
 
INTRODUCTION TO COMPUTING.pdf
INTRODUCTION TO COMPUTING.pdfINTRODUCTION TO COMPUTING.pdf
INTRODUCTION TO COMPUTING.pdf
 
Computer knowledge-old-papers
Computer knowledge-old-papersComputer knowledge-old-papers
Computer knowledge-old-papers
 
Question Paper Code 065 informatic Practice New CBSE - 2021
Question Paper Code 065 informatic Practice New CBSE - 2021 Question Paper Code 065 informatic Practice New CBSE - 2021
Question Paper Code 065 informatic Practice New CBSE - 2021
 
Latest mcqs
Latest mcqsLatest mcqs
Latest mcqs
 
Question for Information Communication Technology quiz bee.docx
Question for Information Communication Technology quiz bee.docxQuestion for Information Communication Technology quiz bee.docx
Question for Information Communication Technology quiz bee.docx
 
C __paper.docx_final
C __paper.docx_finalC __paper.docx_final
C __paper.docx_final
 
Data structures and algorithms unit i
Data structures and algorithms unit iData structures and algorithms unit i
Data structures and algorithms unit i
 
100 Computer MCQ.pdf
100 Computer MCQ.pdf100 Computer MCQ.pdf
100 Computer MCQ.pdf
 
Once Upon a Process
Once Upon a ProcessOnce Upon a Process
Once Upon a Process
 
Basic computer question
Basic computer questionBasic computer question
Basic computer question
 
Computer awareness With Answers
Computer awareness With AnswersComputer awareness With Answers
Computer awareness With Answers
 
Computer awareness question bank
Computer awareness question bankComputer awareness question bank
Computer awareness question bank
 
AJP.pdf
AJP.pdfAJP.pdf
AJP.pdf
 
Java Questioner for
Java Questioner for Java Questioner for
Java Questioner for
 

Mehr von Lakshmi Sarvani Videla

Mehr von Lakshmi Sarvani Videla (20)

Data Science Using Python
Data Science Using PythonData Science Using Python
Data Science Using Python
 
Programs on multithreading
Programs on multithreadingPrograms on multithreading
Programs on multithreading
 
Menu Driven programs in Java
Menu Driven programs in JavaMenu Driven programs in Java
Menu Driven programs in Java
 
Recursion in C
Recursion in CRecursion in C
Recursion in C
 
Simple questions on structures concept
Simple questions on structures conceptSimple questions on structures concept
Simple questions on structures concept
 
Errors incompetitiveprogramming
Errors incompetitiveprogrammingErrors incompetitiveprogramming
Errors incompetitiveprogramming
 
Relational Operators in C
Relational Operators in CRelational Operators in C
Relational Operators in C
 
Recursive functions in C
Recursive functions in CRecursive functions in C
Recursive functions in C
 
Function Pointer in C
Function Pointer in CFunction Pointer in C
Function Pointer in C
 
Functions
FunctionsFunctions
Functions
 
Java sessionnotes
Java sessionnotesJava sessionnotes
Java sessionnotes
 
Singlelinked list
Singlelinked listSinglelinked list
Singlelinked list
 
Graphs
GraphsGraphs
Graphs
 
B trees
B treesB trees
B trees
 
Functions in python3
Functions in python3Functions in python3
Functions in python3
 
Dictionary
DictionaryDictionary
Dictionary
 
Sets
SetsSets
Sets
 
Lists
ListsLists
Lists
 
DataStructures notes
DataStructures notesDataStructures notes
DataStructures notes
 
Solutionsfor co2 C Programs for data structures
Solutionsfor co2 C Programs for data structuresSolutionsfor co2 C Programs for data structures
Solutionsfor co2 C Programs for data structures
 

Kürzlich hochgeladen

Kürzlich hochgeladen (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

Computer ScienceTechnical quiz

  • 3. Q1) What is the output of below C code? main() { int i = 5; i=(++i) / (i++); printf("%d",i); } a) 2 b) 5 c) 1 d) 6 Answer: c
  • 4. Q2) What is the output of below code? main() { int h =5; static char wer[] = "No Substitute for hard work"; printf("%-10.*s",h,wer); } a) No su b)No Su c) No Sub d) error message Answer: b
  • 5. Q3) What is the output of below code? main() { printf("tim"); main(); } a) prints tim twice b) keeps on printing tim c) prints tim once d) compiler error Answer:b
  • 6. Q4) In a 16-bit computer, what is the output of below code? main() { int a =1; printf("%u",~a); } a) 0 b)compiler error c)1 d)65534 Answer: d
  • 7. Q5) What is the output of below code? void compute(int); main() { int a =1; compute(a); printf("%d",a); } void compute( int a) { a=(a++)*(~a)/(a--); } (a) 131068 (b) 1 (c) compiler error (d) 65534 Answer: b
  • 8. Q6) What is the output of below code in JAVA? class S { int x = 0; S() { x++; } public static void main(String args[]) { S s = new S(); System.out.println(s.x); } } (a) 0 (b) 1 (c) compiler error (d) Garbage value Answer: b
  • 9. Q7) What is the output of below code snippet in JAVA? char word[]={'a','b','c','d','e'}; for(int i =0; i<4; i+=2) System.out.println(word[i]); (a) ace (b) ac (c) ab (d) abe Answer: b
  • 10. Q8) What is the output of below code snippet in JAVA? public static void main(String args[]) { System.out.println(this); } (a) 0 (b) 1 (c) compiler error (d) Garbage Value Answer: c
  • 11. Q9) What is the output of below code snippet in JAVA? System.out.println(12<<2); (a) 3 (b) 10 (c) compiler error (d) 48 Answer: d
  • 13. Q1) Name the browser that has this logo. Answer: Microsoft Edge
  • 14. Q2) Identify the American computer Scientist below. Answer: Dennis Ritchie
  • 15. Q3) Identify the hidden message in the below logo. Answer: Cisco was founded in San Francisco, which explains the name. The series of blue lines symbolise San Francisco’s iconic Golden Gate Bridge
  • 16. Q4) which company has this logo? Answer: Kaspersky Antivirus
  • 17. Q5) Identify the device? Answer: Magnetic Tape Reader
  • 18. Q6) Identify the adapter Answer: Ethernet adapter (or) Network Interface Card (NIC)
  • 19. Q7) Identify the icon Answer: Universal Serial Bus (USB)
  • 20. Q8) Identify the hidden message in the below logo Answer: The ‘VA’ of the Sony VAIO logo has been made to look like an analog signal and the ‘IO’ resembles numbers 1 and 0 which represents a digital signal
  • 22. Q 1) && have higher precedence than & a) true b) false Answer: false Q 2) What is the default value of local variable? Answer: No Default Value Q 3) Who is the founder of java? Answer: James Gosling Q 4) Who is the new CEO of Google? Answer: Sundar Pichai
  • 23. Q 5) When you are working on a document on PC, where is the document temporarily stored? Answer: RAM Q 6) Information travels between components on the mother board through? Answer: Buses Q 7) Expand the term SUN in SUN Microsystems Answer: 'STANFORD UNIVERSITY NETWORK'.
  • 24. Q 8) Number of unique digits in binary number system is Answer: two ( 0 and 1) Q 9) The most frequently used instructions of a computer program are likely to be fetched from Answer: Cache memory Q 10) ASCII stands for? Answer: American Standard Code for Information Interchange
  • 25. Q 11) Which access method is used for obtaining a record from a magnetic tape? Answer: Sequential access Q 12) A computer program that converts assembly language to machine language is Answer: Assembler Q 13) Who co-founded Hotmail in 1996 and then sold the company to Microsoft Answer: Sabeer Bhatia
  • 26. Q 14) What displays the content of the active cell in Excel? Answer: Formula Bar Q 15) The average time necessary for the correct sector of a disk to arrive at the read write head is Answer: Rotational Delay Q 16) What does OCR stands for? Answer: Optical character Recognition.
  • 27. Q 17) Linux is a(n) ………………….. operating system. Answer: open source Q 18) The errors that can be pointed out by the compiler are Answer: Syntax errors Q 19) The tracks on a disk which can be accessed without repositioning the R/W heads is Answer: Cylinder
  • 28. Q 20) Which is the first supercomputer developed by the Indian Scientists? Answer: PARAM Q 21) The symbols used in an assembly language are Answer: Mnemonics Q 22) What is the first ARPANET message Answer: Lo
  • 29. Q 23) What does T stands for in T flip-flop? Answer: Toggle Q 24) What does the "X" stand for in OS X? Answer: Ten Q 25) Abstract method can be in normal class . True (or) False Answer: False
  • 30. Q 26) What is the size of char in java? Answer: 16 bits Q 27) Switches operate in which layer of OSI model Answer: Data Link Layer Q 28) Following code will result in: int num = 6.7 Answer: Compilation error
  • 31. Q 29) How many layers are there in TCP/IP model? Answer: 5 Q 30) Expand the term JPEG Answer: Joint Photographic Experts Group Q 31) Expand the term DBMS Answer: Database Management System
  • 32. Q 32) Which CPU registers holds the address of the instructions (instructions in the program stored in memory) to be executed next? Answer: Program Counter (PC) Q 33) Which protocol is used to receive email? Answer: POP3 Q 34) Number of bits used for IPv4 address Answer: 32 bit addresses
  • 33. Q 35) Mac operating system is developed by which company? Answer: Apple Q 36) .tiff is an extension of which type of files? Answer: POP3 Q 37) Number of bits used for IPv4 address Answer: 32 bit addresses
  • 34. Q 38) Which operating system is developed and used by Apple Inc in mobile phones? Answer: iOS Q 39) WhatsApp Inc is founded by? Answer: Brian Acton and Jan Koum Q 40) Who developed Linux operating system? Answer: Linus Torvalds
  • 35. Q 41) Bug means Answer: A logical error in a program Q 42) The step-by-step instructions that solve a problem is called _____. Answer: An algorithm Q 43) Which Key combination is used to close an open application in windows? Answer: Alt+F4
  • 37. 1. First Search engine in internet? a) google b) Archie c) Bing d) Yahoo Answer: b 2. Which one is the current fastest super computer in india? a) PARAM padma b) SAGA-220 c) CRAY3 d) PARAM Yuva II Answer: d
  • 38. 3. In computer, Trojan refers to a) Spyware b) Malware c) Virus d) Worm Answer: b 4. Which Key Combination is used to minimize all open windows displayed on screen ? a) Alt +M b) CTRL+d c) Shift+M d) Window Key + d Answer: d
  • 39. 5. Which company bought the popular video teleconferencing software 'Skype'? a) Microsoft b) Google c) Accenture d) Oracle Answer: a 6. What file contains commands that configure systems devices in DOS ? A. Command.com B. Config.sys C. Autoexec.bat D. Win.ini Answer: b
  • 40. 7. The part of machine level instruction, which tells the central processor what has to be done, is A. Operation code B. Address C. Locator D. Flip-Flop Answer: a 8. The process of transferring data intended for a peripheral device into a disk (or intermediate store) so that it can be transferred to peripheral at a more convenient time or in bulk, is known as A. multiprogramming B. spooling C. caching D. virtual programming Answer: b
  • 41. 9. A system program that combines the separately compiled modules of a program into a form suitable for execution A. assembler B. linking loader C. cross compiler D. load and go Answer: b