PYQBOOK

Filter Questions

Found 475 question(s)

Q421 MCQ GATE CS Medium 2 Marks 2020
DBMS → Relational Design
Consider a relational table R that is in 3NF, but not in BCNF. Which one of the following statements is TRUE?
Choose One:
Q422 MCQ GATE CS Hard 2 Marks 2020
DBMS → Concurrency Control
Consider a schedule of transactions T1 and T2: T1: RA, RC, WD, WB, Commit. T2: RB, WB, RD, WC, Commit. Here, RX stands for Read(X) and WX stands for Write(X). Which one of the following schedules is conflict equivalent to the above schedule?
Choose One:
Q423 MCQ GATE CS Medium 1 Mark 2020
DBMS → SQL
Consider a relational database containing the following schemas. Catalogue(sno, pno, cost), Suppliers(sno, sname, location), Parts(pno, pname, part_spec). SELECT s.sno, s.sname FROM Suppliers s, Catalogue c WHERE s.sno = c.sno AND cost > (SELECT AVG (cost) FROM Catalogue WHERE pno = 'P4' GROUP BY pno); The number of rows returned by the above SQL query is
Choose One:
Q424 MCQ GATE CS Medium 1 Mark 2020
DBMS → SQL
Consider a relational database containing the following schemas. Catalogue(sno, pno, cost), Suppliers(sno, sname, location), Parts(pno, pname, part_spec). SELECT s.sno, s.sname FROM Suppliers s, Catalogue c WHERE s.sno = c.sno AND cost > (SELECT AVG (cost) FROM Catalogue WHERE pno = 'P4' GROUP BY pno); The number of rows returned by the above SQL query is
Choose One:
Q425 MCQ GATE CS Hard 2 Marks 2020
DL → Number Representation
Consider three registers R1, R2, and R3 that store numbers in IEEE-754 single precision floating point format. Assume that R1 and R2 contain the values (in hexadecimal notation) 0x42200000 and 0xC1200000, respectively. If R3 = R1/R2, what is the value stored in R3?
Choose One: