SlideShare a Scribd company logo
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

More Related Content

What's hot

Computer Quiz (August 2013)
Computer Quiz (August 2013)Computer Quiz (August 2013)
Computer Quiz (August 2013)
Soham Banerjee
 
X quiz-it grand finale
X quiz-it grand finaleX quiz-it grand finale
Anokha tech quiz 2014 Finals
Anokha tech quiz 2014 FinalsAnokha tech quiz 2014 Finals
Anokha tech quiz 2014 Finals
Rohit Sridhar
 
Business Quiz
Business QuizBusiness Quiz
Business Quiz
Vedang Acharya
 
Instinct - The IT Quiz
Instinct - The IT QuizInstinct - The IT Quiz
Instinct - The IT Quiz
Somnath Chanda
 
Tech Quiz Finals
Tech Quiz FinalsTech Quiz Finals
Tech Quiz Finals
Vaishakh Baragur
 
IT Quiz 2019 - Prelims
IT Quiz 2019 - PrelimsIT Quiz 2019 - Prelims
IT Quiz 2019 - Prelims
Saksham Aurora
 
The Technology Quiz
The Technology QuizThe Technology Quiz
The Technology Quiz
SujayLKarinja
 
FAQ SpEnt Quiz 2018
FAQ SpEnt Quiz 2018FAQ SpEnt Quiz 2018
FAQ SpEnt Quiz 2018
Samanway Banerjee
 
Technical Quiz conducted at calicut on kerala state IT quiz
Technical Quiz conducted at calicut on kerala state IT quizTechnical Quiz conducted at calicut on kerala state IT quiz
Technical Quiz conducted at calicut on kerala state IT quiz
Amal Augustine
 
Technology Quiz
Technology QuizTechnology Quiz
Technology Quiz
UC San Diego
 
IT Quiz
IT QuizIT Quiz
Biz Quiz 2(ppt)
Biz Quiz 2(ppt)Biz Quiz 2(ppt)
Biz Quiz 2(ppt)Anand Bhat
 
Business Quiz
Business QuizBusiness Quiz
Business Quiz
Vedang Acharya
 
Technology quiz
Technology quizTechnology quiz
Technology quiz
Manpreet Kaur
 
Tech quiz
Tech quizTech quiz
Tech quiz
Alhad Sethi
 
"ULTIMATE TECH QUIZ"
"ULTIMATE TECH QUIZ""ULTIMATE TECH QUIZ"
"ULTIMATE TECH QUIZ"
Saksham Koul
 
IT Quiz Prelims
IT Quiz PrelimsIT Quiz Prelims
IT Quiz PrelimsSonal Raj
 
IIT Kanpur Tech Quiz
IIT Kanpur Tech QuizIIT Kanpur Tech Quiz
IIT Kanpur Tech Quiz
Anshul Roy
 
Tech, crypto and NFT quiz (The Pirates of CryTech Quiz)
Tech, crypto and NFT quiz (The Pirates of CryTech Quiz) Tech, crypto and NFT quiz (The Pirates of CryTech Quiz)
Tech, crypto and NFT quiz (The Pirates of CryTech Quiz)
Sutej Sharma
 

What's hot (20)

Computer Quiz (August 2013)
Computer Quiz (August 2013)Computer Quiz (August 2013)
Computer Quiz (August 2013)
 
X quiz-it grand finale
X quiz-it grand finaleX quiz-it grand finale
X quiz-it grand finale
 
Anokha tech quiz 2014 Finals
Anokha tech quiz 2014 FinalsAnokha tech quiz 2014 Finals
Anokha tech quiz 2014 Finals
 
Business Quiz
Business QuizBusiness Quiz
Business Quiz
 
Instinct - The IT Quiz
Instinct - The IT QuizInstinct - The IT Quiz
Instinct - The IT Quiz
 
Tech Quiz Finals
Tech Quiz FinalsTech Quiz Finals
Tech Quiz Finals
 
IT Quiz 2019 - Prelims
IT Quiz 2019 - PrelimsIT Quiz 2019 - Prelims
IT Quiz 2019 - Prelims
 
The Technology Quiz
The Technology QuizThe Technology Quiz
The Technology Quiz
 
FAQ SpEnt Quiz 2018
FAQ SpEnt Quiz 2018FAQ SpEnt Quiz 2018
FAQ SpEnt Quiz 2018
 
Technical Quiz conducted at calicut on kerala state IT quiz
Technical Quiz conducted at calicut on kerala state IT quizTechnical Quiz conducted at calicut on kerala state IT quiz
Technical Quiz conducted at calicut on kerala state IT quiz
 
Technology Quiz
Technology QuizTechnology Quiz
Technology Quiz
 
IT Quiz
IT QuizIT Quiz
IT Quiz
 
Biz Quiz 2(ppt)
Biz Quiz 2(ppt)Biz Quiz 2(ppt)
Biz Quiz 2(ppt)
 
Business Quiz
Business QuizBusiness Quiz
Business Quiz
 
Technology quiz
Technology quizTechnology quiz
Technology quiz
 
Tech quiz
Tech quizTech quiz
Tech quiz
 
"ULTIMATE TECH QUIZ"
"ULTIMATE TECH QUIZ""ULTIMATE TECH QUIZ"
"ULTIMATE TECH QUIZ"
 
IT Quiz Prelims
IT Quiz PrelimsIT Quiz Prelims
IT Quiz Prelims
 
IIT Kanpur Tech Quiz
IIT Kanpur Tech QuizIIT Kanpur Tech Quiz
IIT Kanpur Tech Quiz
 
Tech, crypto and NFT quiz (The Pirates of CryTech Quiz)
Tech, crypto and NFT quiz (The Pirates of CryTech Quiz) Tech, crypto and NFT quiz (The Pirates of CryTech Quiz)
Tech, crypto and NFT quiz (The Pirates of CryTech Quiz)
 

Viewers also liked

Technical Quiz (Basic concepts of computers)
Technical Quiz (Basic concepts of computers)Technical Quiz (Basic concepts of computers)
Technical Quiz (Basic concepts of computers)
Manpreet Kaur
 
Tech quiz finals
Tech quiz   finalsTech quiz   finals
Tech quiz finals
Somnath Chanda
 
Computer quiz for primary classes
Computer quiz for primary classesComputer quiz for primary classes
Computer quiz for primary classes
Rajashekar_rs
 
Technical quiz
Technical quizTechnical quiz
Technical quiz
Aaina Kalla
 
Final Round Technical quiz at KMEA Engineering college by Electronics and com...
Final Round Technical quiz at KMEA Engineering college by Electronics and com...Final Round Technical quiz at KMEA Engineering college by Electronics and com...
Final Round Technical quiz at KMEA Engineering college by Electronics and com...
Amal Augustine
 
Tech It Out (tech quiz) Prelims
Tech It Out (tech quiz) Prelims Tech It Out (tech quiz) Prelims
Tech It Out (tech quiz) Prelims
Kanav Rampal
 
Quizizz Presentation
Quizizz PresentationQuizizz Presentation
Quizizz Presentation
Quizizz
 
Visual round Quiz
Visual round QuizVisual round Quiz
Visual round Quiz
Santhosh Madheswaran
 
Quiz on connecting words and pictures
Quiz on connecting words and picturesQuiz on connecting words and pictures
Quiz on connecting words and pictures
pptmania
 
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
Ciel Educttu
 
Gq prelimswith ans
Gq prelimswith ansGq prelimswith ans
Gq prelimswith ansAmey Mairal
 
Quiz HVACR conducted in ACREX 2012
Quiz HVACR conducted in ACREX 2012Quiz HVACR conducted in ACREX 2012
Quiz HVACR conducted in ACREX 2012
Mohan Reddy
 
Audience round Quiz at ACREX 2012
Audience round Quiz at ACREX 2012Audience round Quiz at ACREX 2012
Audience round Quiz at ACREX 2012
Mohan Reddy
 
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
University of Southern Queensland
 
EVS Quiz
EVS QuizEVS Quiz
WORDLES
WORDLESWORDLES
WORDLES
Ria Buccat
 
Cadence - A General Quiz
Cadence - A General QuizCadence - A General Quiz
Cadence - A General QuizAshish Thakur
 
Wordle Ppt
Wordle PptWordle Ppt
Wordle Ppt
Michael Hill
 
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
mreckman
 

Viewers also liked (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)
 
Tech quiz finals
Tech quiz   finalsTech quiz   finals
Tech quiz finals
 
Computer quiz for primary classes
Computer quiz for primary classesComputer quiz for primary classes
Computer quiz for primary classes
 
Technical quiz
Technical quizTechnical quiz
Technical quiz
 
Final Round Technical quiz at KMEA Engineering college by Electronics and com...
Final Round Technical quiz at KMEA Engineering college by Electronics and com...Final Round Technical quiz at KMEA Engineering college by Electronics and com...
Final Round Technical quiz at KMEA Engineering college by Electronics and com...
 
Tech It Out (tech quiz) Prelims
Tech It Out (tech quiz) Prelims Tech It Out (tech quiz) Prelims
Tech It Out (tech quiz) Prelims
 
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
 

Similar to Computer ScienceTechnical quiz

Brain byte 2 k15 prelims
Brain byte 2 k15 prelimsBrain byte 2 k15 prelims
Brain byte 2 k15 prelimsMadhan Kumar
 
ICT Whiz Kid 2023-Finals.pptx
ICT Whiz Kid 2023-Finals.pptxICT Whiz Kid 2023-Finals.pptx
ICT Whiz Kid 2023-Finals.pptx
MalpiSchool
 
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
Alex Stewart
 
DIGITAL FLUENCY MULTIPLE QUESTION ANSWERS
DIGITAL FLUENCY MULTIPLE QUESTION ANSWERSDIGITAL FLUENCY MULTIPLE QUESTION ANSWERS
DIGITAL FLUENCY MULTIPLE QUESTION ANSWERS
sddppml
 
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)
Poonam Chopra
 
Computer general questions
Computer  general questionsComputer  general questions
Computer general questions
Knowledge Center Computer
 
INTRODUCTION TO COMPUTING.pdf
INTRODUCTION TO COMPUTING.pdfINTRODUCTION TO COMPUTING.pdf
INTRODUCTION TO COMPUTING.pdf
oscardarius
 
Computer knowledge-old-papers
Computer knowledge-old-papersComputer knowledge-old-papers
Computer knowledge-old-papers
neha rawat
 
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
FarhanAhmade
 
Latest mcqs
Latest mcqsLatest mcqs
Latest mcqs
TAYYABA MAHR
 
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
moigarcia2
 
C __paper.docx_final
C __paper.docx_finalC __paper.docx_final
C __paper.docx_final
Sumit Sar
 
Data structures and algorithms unit i
Data structures and algorithms unit iData structures and algorithms unit i
Data structures and algorithms unit i
sonalisraisoni
 
100 Computer MCQ.pdf
100 Computer MCQ.pdf100 Computer MCQ.pdf
100 Computer MCQ.pdf
FAWAD KHAN
 
Once Upon a Process
Once Upon a ProcessOnce Upon a Process
Once Upon a Process
David Evans
 
Basic computer question
Basic computer questionBasic computer question
Basic computer question
ABHISHEK KUMAR
 
Computer awareness question bank
Computer awareness question bankComputer awareness question bank
Computer awareness question bank
BankExamsToday.com
 
Computer awareness With Answers
Computer awareness With AnswersComputer awareness With Answers
Computer awareness With Answers
BankExamsToday.com
 
AJP.pdf
AJP.pdfAJP.pdf
AJP.pdf
Swapnil Kale
 
Java Questioner for
Java Questioner for Java Questioner for
Java Questioner for Abhay Korat
 

Similar to 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 question bank
Computer awareness question bankComputer awareness question bank
Computer awareness question bank
 
Computer awareness With Answers
Computer awareness With AnswersComputer awareness With Answers
Computer awareness With Answers
 
AJP.pdf
AJP.pdfAJP.pdf
AJP.pdf
 
Java Questioner for
Java Questioner for Java Questioner for
Java Questioner for
 

More from Lakshmi Sarvani Videla

Data Science Using Python
Data Science Using PythonData Science Using Python
Data Science Using Python
Lakshmi Sarvani Videla
 
Programs on multithreading
Programs on multithreadingPrograms on multithreading
Programs on multithreading
Lakshmi Sarvani Videla
 
Menu Driven programs in Java
Menu Driven programs in JavaMenu Driven programs in Java
Menu Driven programs in Java
Lakshmi Sarvani Videla
 
Recursion in C
Recursion in CRecursion in C
Recursion in C
Lakshmi Sarvani Videla
 
Simple questions on structures concept
Simple questions on structures conceptSimple questions on structures concept
Simple questions on structures concept
Lakshmi Sarvani Videla
 
Errors incompetitiveprogramming
Errors incompetitiveprogrammingErrors incompetitiveprogramming
Errors incompetitiveprogramming
Lakshmi Sarvani Videla
 
Relational Operators in C
Relational Operators in CRelational Operators in C
Relational Operators in C
Lakshmi Sarvani Videla
 
Recursive functions in C
Recursive functions in CRecursive functions in C
Recursive functions in C
Lakshmi Sarvani Videla
 
Function Pointer in C
Function Pointer in CFunction Pointer in C
Function Pointer in C
Lakshmi Sarvani Videla
 
Functions
FunctionsFunctions
Java sessionnotes
Java sessionnotesJava sessionnotes
Java sessionnotes
Lakshmi Sarvani Videla
 
Singlelinked list
Singlelinked listSinglelinked list
Singlelinked list
Lakshmi Sarvani Videla
 
Graphs
GraphsGraphs
B trees
B treesB trees
Functions in python3
Functions in python3Functions in python3
Functions in python3
Lakshmi Sarvani Videla
 
Dictionary
DictionaryDictionary
Sets
SetsSets
Lists
ListsLists
DataStructures notes
DataStructures notesDataStructures notes
DataStructures notes
Lakshmi Sarvani Videla
 
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
Lakshmi Sarvani Videla
 

More from 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
 

Recently uploaded

Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 

Recently uploaded (20)

Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 

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