DBMS GATE Questions 2020

In this article you will get DBMS GATE Questions 2020 with answers. 1. Consider a relational database containing the following schema. The primary key of each table is indicated by underlying the constituent fields. SELECT s.sno, s.snameFROM Suppliers s, Catalogue cWHERE s.sno = c.sno ANDCost > (SELECT AVG (cost)FROM CatalogueWHERE pno = ‘P4’GROUP BY pno); The … Read more

Operating System Multiple Choice Questions Set-6

OSMCQ

1.Which of the following process scheduling algorithm may lead to starvationA.FIFOB.Round RobinC.Shortest Job NextD.None of the aboveAnswer-C If the quantum time of round robin algorithm is very large, then it is equivalent to:(A) First in first out(B) Shortest Job Next(C) Lottery scheduling(D) None of the above Answer: (A) 3.Orders are processed in the sequence they … Read more

What is Deadlock in DBMS and OS

A deadlock in DBMS and OS is a condition wherein two or more processes or transactions are waiting for each other in order to be finished but none of the processes or transactions are willing to give up the resources that the other processes need. In this situation, no processes ever get finished and are in the … Read more

Vault Configuration and deployment

A vault is a tool for securely accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, or certificates. Vault provides a unified interface to any secret while providing tight access control and recording a detailed audit log. Vault Component Storage Backend: It configures the location … Read more