SlideShare a Scribd company logo
1 of 4
Download to read offline
1
Mock GATE,
I-kon Engineering Academy,
Osmanpura, Aurangabad
Duration:- 1hr
Full Name:-
Name of College:-
Mobile No.:- Email ID:-
Note:-
1. Each question carries 1 mark.
2. Questions not attempted will result in zero mark and wrong answers will result in NEGATIVE
marks(1/3 rule).
Q.1 A starvation free job scheduling policy guarantees that no job waits indefinitely for service.
Which of the following job scheduling plicies is starvation free
(A) Round Robin (B) Priority Queuing
(C) Shortest Job First (D) Youngest Job First
ANSWER=
Q.2 Consider the following transformations on a string of five bits
T1: Complement any two bits
T2: Exchange any two bits
which of the following can not be obtained from the string 00000 by any sequence of applications
of T1 & T2
(A) 11011 (B) 10001
(C) 01010 (D) 00100
ANSWER=
Q.3 Which of the following is the name of the data structure in a compiler that is resposible for
managing information about variables & their attributes
(A) Abstract Syntax Tree(AST) (B) Attributed Grammar
(C) Symbol Table (D) Semantic Stack
ANSWER=
Q.4 Suppose that P(x, y) means “x is parent of y” & M(x) means “x is male”. If F(v, w) equals
M(v) ∧ ∃x, y(P(x, y) ∧ P(x, v) ∧ (y = v) ∧ P(y, w))
what is meaning of the expression F(v, w)
(A) v is a brother of w. (B) v is a nephew of w.
(C) v is an uncle of w. (D) v is a grandfather of w.
ANSWER=
Q.5 Which of the following statements about Ehernets is typically FALSE?
(A) Ethernets use circuit switching to send message.
(B) Ethernets use buses with multiple masters.
(C) Network connected by Ethernets are limited in length to a few hundred meters.
(D) Packets sent on Ethernets are limited in size.
ANSWER=
Q.6 Which of the following is(are) true about virtual memory systems that use pages?
I. The virtual address space can be larger than amount of physical memory.
2 Mock GATE, I-kon Engineering Academy
II. Programs must be resident in main memory throughout their execution.
III. Pages correspond to semantic characteristics of the program
(A) I only (B) I & II only
(C) II only (D) I, II & III
ANSWER=
Q.7 In the Internet Protocol(IP) suite, which of the following best describes the purpose of the
Address Resoultion Protocol(ARP)
(A) To translate web addresses to host names.
(B) To determine the IP address of a given host name.
(C) To determine the hardware addrss of a given host name.
(D) To determine the hardware address of a given IP address.
ANSWER=
Q.8 Let k be an integer greater than 1. which of the following represents the order of growth of
the expression
n
i=1 ki
(A) Θ(kn
) (B) Θ(kn·log n
)
(C) Θ(kn
· log n) (D) Θ(k2kn
)
ANSWER=
Q.9 Mergesort works by splitting a list of n numbers in half, sorting each half recursively and
merging the two halves. which of the following data structures will allow mergesort to work in
O(nlog n) time?
I. A singly linked list.
II. A doubly linked list.
III. An array.
(A) None (B) III only
(C) I & II only (D) I, II & III
ANSWER=
Q.10 Which of the following statements about datagrams sent by a node in a network is(are)
true?
I. Datagrams at the source must be the size of the smallest transmission unit(MTU) of all the
links on a path to the destination.
II. Datagrams may be fragmented during network.
III. Datagrams are reasembled only at the destination.
(A) I only (B) I & II only
(C) II only (D) II & III only
ANSWER=
Q.11 Consider the following grammar
S −→ (S)
S −→ x
which of the follwing statements is(are) true?
I. The grammar is ambiguous.
II. The grammar is suitable for top-down parsing.
III. The grammar is suitable for bottom-up parsing.
(A) I only (B) III only
(C) II only (D) II & III only
ANSWER=
3
Q.12 Let P be a procedure that for some inputs calls itself(i.e. is recursive). If P is guaranteed
to terminate, which of the following must be true?
I. P has a local variable.
II. P has an execution path where it does not call itself.
III. P either refers to global variable or has at least one parameter.
(A) I only (B) I & II only
(C) II only (D) II & III only
ANSWER=
Q.13 Let A be a finite nonempty set with cardinality n. The number of subsets S ⊆ A having
odd cardinality is
(A) 2n/2
(B) n
(C) 2n−1
(D) none of the above
ANSWER=
Q.14 Of the following sorting algorithms, which has a running time that is LEAST dependent on
the initial ordering of the input?
(A) Insertion Sort (B) Quicksort
(C) Selection Sort (D) Mergesort
ANSWER=
Q.15 The language {ww|w ∈ (0 + 1)∗
}
(A) Not accepted by any Turing Machine
(B) Accepted by Turing machine, but by no pushdown automata
(C) Accepted by pushdown automata, but not context free
(D) regular
ANSWER=
Q.16 Which of the following regular expression is equivalent to (a∗
+ b)∗
(c + d)?
(A) a∗(c + d) + b(c + d) (B) a∗(c + d) + b∗(c + d)
(C) (a + b)∗c + (a + b)∗d (D) (a∗ + b)c + (a∗ + b)d
ANSWER=
Q.17 Consider the following process
begin
x := y
x := x + 1
end
If x and y are initially 0 and two copies of the process run concurrently sharing the same
data, what is the set of possible values of x after both copies of process terminate?
(A) {1} (B) {2} (C) {1, 2} (D) {0, 1, 2}
ANSWER=
Q.18
S −→ (S + S)
S −→ (S ∗ S)
S −→ a
How many distinct parse trees does the string a+a*a+a have under the grammar
above?
(A) 5 (B) 6 (C) 7 (D) 8
ANSWER=
4 Mock GATE, I-kon Engineering Academy
Q.19 Which of the following decimal numbers have exact representation in binary nota-
tion?
(A) 0.1 (B) 0.2 (C) 0.4 (D) 0.5
ANSWER=
Q.20 Any set of Boolean operators that is sufficient to represent all Boolean expressions
is said to be complete. Which of the following is not complete?
(A) {AND, NOT} (B) {NOT, OR} (C) {AND, OR} (D) {NAND}
ANSWER=
*****ALL THE BEST*****

More Related Content

What's hot

Directed Acyclic Graph Representation of basic blocks
Directed Acyclic Graph Representation of basic blocksDirected Acyclic Graph Representation of basic blocks
Directed Acyclic Graph Representation of basic blocksMohammad Vaseem Akaram
 
Cycle’s topological optimizations and the iterative decoding problem on gener...
Cycle’s topological optimizations and the iterative decoding problem on gener...Cycle’s topological optimizations and the iterative decoding problem on gener...
Cycle’s topological optimizations and the iterative decoding problem on gener...Usatyuk Vasiliy
 
Ijmsr 2016-05
Ijmsr 2016-05Ijmsr 2016-05
Ijmsr 2016-05ijmsr
 
Design of Reversible Sequential Circuit Using Reversible Logic Synthesis
Design of Reversible Sequential Circuit Using Reversible Logic SynthesisDesign of Reversible Sequential Circuit Using Reversible Logic Synthesis
Design of Reversible Sequential Circuit Using Reversible Logic SynthesisVLSICS Design
 
Exam matlab1
Exam matlab1Exam matlab1
Exam matlab1moness
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...Editor IJCATR
 
Error control coding using bose chaudhuri hocquenghem bch codes
Error control coding using bose chaudhuri hocquenghem bch codesError control coding using bose chaudhuri hocquenghem bch codes
Error control coding using bose chaudhuri hocquenghem bch codesIAEME Publication
 
presentation
presentationpresentation
presentationjie ren
 
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite MachinesAn ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite MachinesComputer Science Journals
 
Matrix transposition
Matrix transpositionMatrix transposition
Matrix transposition동호 이
 
Parallel algorithms
Parallel algorithmsParallel algorithms
Parallel algorithmsguest084d20
 

What's hot (19)

Directed Acyclic Graph Representation of basic blocks
Directed Acyclic Graph Representation of basic blocksDirected Acyclic Graph Representation of basic blocks
Directed Acyclic Graph Representation of basic blocks
 
Gate-Cs 1998
Gate-Cs 1998Gate-Cs 1998
Gate-Cs 1998
 
Gate-Cs 1992
Gate-Cs 1992Gate-Cs 1992
Gate-Cs 1992
 
Cycle’s topological optimizations and the iterative decoding problem on gener...
Cycle’s topological optimizations and the iterative decoding problem on gener...Cycle’s topological optimizations and the iterative decoding problem on gener...
Cycle’s topological optimizations and the iterative decoding problem on gener...
 
Ijmsr 2016-05
Ijmsr 2016-05Ijmsr 2016-05
Ijmsr 2016-05
 
Design of Reversible Sequential Circuit Using Reversible Logic Synthesis
Design of Reversible Sequential Circuit Using Reversible Logic SynthesisDesign of Reversible Sequential Circuit Using Reversible Logic Synthesis
Design of Reversible Sequential Circuit Using Reversible Logic Synthesis
 
Exam matlab1
Exam matlab1Exam matlab1
Exam matlab1
 
Lec 2-2
Lec 2-2Lec 2-2
Lec 2-2
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Gate-Cs 1994
Gate-Cs 1994Gate-Cs 1994
Gate-Cs 1994
 
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
Ijcatr03051008Implementation of Matrix based Mapping Method Using Elliptic Cu...
 
Error control coding using bose chaudhuri hocquenghem bch codes
Error control coding using bose chaudhuri hocquenghem bch codesError control coding using bose chaudhuri hocquenghem bch codes
Error control coding using bose chaudhuri hocquenghem bch codes
 
Lab no.08
Lab no.08Lab no.08
Lab no.08
 
Unit 2
Unit 2Unit 2
Unit 2
 
presentation
presentationpresentation
presentation
 
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite MachinesAn ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
An ElGamal Encryption Scheme of Adjacency Matrix and Finite Machines
 
Matrix transposition
Matrix transpositionMatrix transposition
Matrix transposition
 
Parallel algorithms
Parallel algorithmsParallel algorithms
Parallel algorithms
 
Lecture 14
Lecture 14Lecture 14
Lecture 14
 

Similar to 1

New microsoft office word document (3)
New microsoft office word document (3)New microsoft office word document (3)
New microsoft office word document (3)Sagar Kuchekar
 
Gate Previous Years Papers
Gate Previous Years PapersGate Previous Years Papers
Gate Previous Years PapersRahul Jain
 
Axes Tech
Axes TechAxes Tech
Axes Techncct
 
Gate Previous Years Papers It2005
Gate Previous Years Papers It2005Gate Previous Years Papers It2005
Gate Previous Years Papers It2005Rahul Jain
 
Cn (cs 604) objective question
Cn (cs 604) objective questionCn (cs 604) objective question
Cn (cs 604) objective questionAmit Ku Rathore
 
AP PGECET Computer Science 2016 question paper
AP PGECET Computer Science 2016 question paperAP PGECET Computer Science 2016 question paper
AP PGECET Computer Science 2016 question paperEneutron
 
ExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docxExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docxgitagrimston
 
Gate Previous Years Papers
Gate Previous Years PapersGate Previous Years Papers
Gate Previous Years PapersRahul Jain
 
microprocessor Questions with solution
microprocessor Questions with solutionmicroprocessor Questions with solution
microprocessor Questions with solutiondit
 
Gate Previous Years Papers
Gate Previous Years PapersGate Previous Years Papers
Gate Previous Years PapersRahul Jain
 
Gate 2013 computer science and information technology previous year paper
Gate 2013 computer science and information technology previous year paperGate 2013 computer science and information technology previous year paper
Gate 2013 computer science and information technology previous year paperLokesh Kataria
 
PGCET Computer science 2017 question paper
PGCET Computer science 2017 question paperPGCET Computer science 2017 question paper
PGCET Computer science 2017 question paperEneutron
 
Technical aptitude test 2 CSE
Technical aptitude test 2 CSETechnical aptitude test 2 CSE
Technical aptitude test 2 CSESujata Regoti
 
200 310-q&a-demo-troytec
200 310-q&a-demo-troytec200 310-q&a-demo-troytec
200 310-q&a-demo-troytecIsabella789
 

Similar to 1 (20)

Gate-Cs 2010
Gate-Cs 2010Gate-Cs 2010
Gate-Cs 2010
 
New microsoft office word document (3)
New microsoft office word document (3)New microsoft office word document (3)
New microsoft office word document (3)
 
Gate-Cs 2009
Gate-Cs 2009Gate-Cs 2009
Gate-Cs 2009
 
Cs gate-2011
Cs gate-2011Cs gate-2011
Cs gate-2011
 
Cs gate-2011
Cs gate-2011Cs gate-2011
Cs gate-2011
 
Gate Previous Years Papers
Gate Previous Years PapersGate Previous Years Papers
Gate Previous Years Papers
 
Axes Tech
Axes TechAxes Tech
Axes Tech
 
Gate Previous Years Papers It2005
Gate Previous Years Papers It2005Gate Previous Years Papers It2005
Gate Previous Years Papers It2005
 
Cn (cs 604) objective question
Cn (cs 604) objective questionCn (cs 604) objective question
Cn (cs 604) objective question
 
AP PGECET Computer Science 2016 question paper
AP PGECET Computer Science 2016 question paperAP PGECET Computer Science 2016 question paper
AP PGECET Computer Science 2016 question paper
 
ExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docxExamName___________________________________MULTIPLE CH.docx
ExamName___________________________________MULTIPLE CH.docx
 
Gate Previous Years Papers
Gate Previous Years PapersGate Previous Years Papers
Gate Previous Years Papers
 
Gate-Cs 1999
Gate-Cs 1999Gate-Cs 1999
Gate-Cs 1999
 
De20 sol
De20 solDe20 sol
De20 sol
 
microprocessor Questions with solution
microprocessor Questions with solutionmicroprocessor Questions with solution
microprocessor Questions with solution
 
Gate Previous Years Papers
Gate Previous Years PapersGate Previous Years Papers
Gate Previous Years Papers
 
Gate 2013 computer science and information technology previous year paper
Gate 2013 computer science and information technology previous year paperGate 2013 computer science and information technology previous year paper
Gate 2013 computer science and information technology previous year paper
 
PGCET Computer science 2017 question paper
PGCET Computer science 2017 question paperPGCET Computer science 2017 question paper
PGCET Computer science 2017 question paper
 
Technical aptitude test 2 CSE
Technical aptitude test 2 CSETechnical aptitude test 2 CSE
Technical aptitude test 2 CSE
 
200 310-q&a-demo-troytec
200 310-q&a-demo-troytec200 310-q&a-demo-troytec
200 310-q&a-demo-troytec
 

Recently uploaded

_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 

Recently uploaded (20)

_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 

1

  • 1. 1 Mock GATE, I-kon Engineering Academy, Osmanpura, Aurangabad Duration:- 1hr Full Name:- Name of College:- Mobile No.:- Email ID:- Note:- 1. Each question carries 1 mark. 2. Questions not attempted will result in zero mark and wrong answers will result in NEGATIVE marks(1/3 rule). Q.1 A starvation free job scheduling policy guarantees that no job waits indefinitely for service. Which of the following job scheduling plicies is starvation free (A) Round Robin (B) Priority Queuing (C) Shortest Job First (D) Youngest Job First ANSWER= Q.2 Consider the following transformations on a string of five bits T1: Complement any two bits T2: Exchange any two bits which of the following can not be obtained from the string 00000 by any sequence of applications of T1 & T2 (A) 11011 (B) 10001 (C) 01010 (D) 00100 ANSWER= Q.3 Which of the following is the name of the data structure in a compiler that is resposible for managing information about variables & their attributes (A) Abstract Syntax Tree(AST) (B) Attributed Grammar (C) Symbol Table (D) Semantic Stack ANSWER= Q.4 Suppose that P(x, y) means “x is parent of y” & M(x) means “x is male”. If F(v, w) equals M(v) ∧ ∃x, y(P(x, y) ∧ P(x, v) ∧ (y = v) ∧ P(y, w)) what is meaning of the expression F(v, w) (A) v is a brother of w. (B) v is a nephew of w. (C) v is an uncle of w. (D) v is a grandfather of w. ANSWER= Q.5 Which of the following statements about Ehernets is typically FALSE? (A) Ethernets use circuit switching to send message. (B) Ethernets use buses with multiple masters. (C) Network connected by Ethernets are limited in length to a few hundred meters. (D) Packets sent on Ethernets are limited in size. ANSWER= Q.6 Which of the following is(are) true about virtual memory systems that use pages? I. The virtual address space can be larger than amount of physical memory.
  • 2. 2 Mock GATE, I-kon Engineering Academy II. Programs must be resident in main memory throughout their execution. III. Pages correspond to semantic characteristics of the program (A) I only (B) I & II only (C) II only (D) I, II & III ANSWER= Q.7 In the Internet Protocol(IP) suite, which of the following best describes the purpose of the Address Resoultion Protocol(ARP) (A) To translate web addresses to host names. (B) To determine the IP address of a given host name. (C) To determine the hardware addrss of a given host name. (D) To determine the hardware address of a given IP address. ANSWER= Q.8 Let k be an integer greater than 1. which of the following represents the order of growth of the expression n i=1 ki (A) Θ(kn ) (B) Θ(kn·log n ) (C) Θ(kn · log n) (D) Θ(k2kn ) ANSWER= Q.9 Mergesort works by splitting a list of n numbers in half, sorting each half recursively and merging the two halves. which of the following data structures will allow mergesort to work in O(nlog n) time? I. A singly linked list. II. A doubly linked list. III. An array. (A) None (B) III only (C) I & II only (D) I, II & III ANSWER= Q.10 Which of the following statements about datagrams sent by a node in a network is(are) true? I. Datagrams at the source must be the size of the smallest transmission unit(MTU) of all the links on a path to the destination. II. Datagrams may be fragmented during network. III. Datagrams are reasembled only at the destination. (A) I only (B) I & II only (C) II only (D) II & III only ANSWER= Q.11 Consider the following grammar S −→ (S) S −→ x which of the follwing statements is(are) true? I. The grammar is ambiguous. II. The grammar is suitable for top-down parsing. III. The grammar is suitable for bottom-up parsing. (A) I only (B) III only (C) II only (D) II & III only ANSWER=
  • 3. 3 Q.12 Let P be a procedure that for some inputs calls itself(i.e. is recursive). If P is guaranteed to terminate, which of the following must be true? I. P has a local variable. II. P has an execution path where it does not call itself. III. P either refers to global variable or has at least one parameter. (A) I only (B) I & II only (C) II only (D) II & III only ANSWER= Q.13 Let A be a finite nonempty set with cardinality n. The number of subsets S ⊆ A having odd cardinality is (A) 2n/2 (B) n (C) 2n−1 (D) none of the above ANSWER= Q.14 Of the following sorting algorithms, which has a running time that is LEAST dependent on the initial ordering of the input? (A) Insertion Sort (B) Quicksort (C) Selection Sort (D) Mergesort ANSWER= Q.15 The language {ww|w ∈ (0 + 1)∗ } (A) Not accepted by any Turing Machine (B) Accepted by Turing machine, but by no pushdown automata (C) Accepted by pushdown automata, but not context free (D) regular ANSWER= Q.16 Which of the following regular expression is equivalent to (a∗ + b)∗ (c + d)? (A) a∗(c + d) + b(c + d) (B) a∗(c + d) + b∗(c + d) (C) (a + b)∗c + (a + b)∗d (D) (a∗ + b)c + (a∗ + b)d ANSWER= Q.17 Consider the following process begin x := y x := x + 1 end If x and y are initially 0 and two copies of the process run concurrently sharing the same data, what is the set of possible values of x after both copies of process terminate? (A) {1} (B) {2} (C) {1, 2} (D) {0, 1, 2} ANSWER= Q.18 S −→ (S + S) S −→ (S ∗ S) S −→ a How many distinct parse trees does the string a+a*a+a have under the grammar above? (A) 5 (B) 6 (C) 7 (D) 8 ANSWER=
  • 4. 4 Mock GATE, I-kon Engineering Academy Q.19 Which of the following decimal numbers have exact representation in binary nota- tion? (A) 0.1 (B) 0.2 (C) 0.4 (D) 0.5 ANSWER= Q.20 Any set of Boolean operators that is sufficient to represent all Boolean expressions is said to be complete. Which of the following is not complete? (A) {AND, NOT} (B) {NOT, OR} (C) {AND, OR} (D) {NAND} ANSWER= *****ALL THE BEST*****