Question
Two paths of width 6 metres are to be made in the centre
of rectangular field such that they are perpendicular to each other. Find the area (in m2) of the field left after making the path if A can complete a round of the field along its boundary in 8.5 seconds while travelling with a speed of 6.4 m/s and difference between length and breadth of the field is 5 metres.Solution
Let length of the field is ‘l’ metres Breadth of the field = ‘l – 5’ metres So, 2 × (l + l – 5) = 8.5 × 6.4 = 54.4 So, 2l – 5 = 27.2 Or, 2l = 32.2 So, l = 16.1 metres And b = 16.1 – 5 = 11.1 metres Desired area = 16.1 × 11.1 – {16.1 × 6 + 11.1 × 6 – 6 × 6} = 178.71 – 127.2 = 51.51 m2
Which deadlock prevention scheme allows older transactions to preempt younger ones?
Which of the following SQL queries would return the total number of employees in each department, but only for departments with more than 10 employees?
Which of the following commands are used to put a restriction on the number of rows returned from a query?
In an E-R diagram, a double rectangle represents a:
Consider the following Java-like pseudo-code for inserting a node into a Binary Search Tree (BST):
  ```java
  class Node {
Which of the following is a non-relational database?
What does the ‘
HTTPS ensures which of the following?
A program needs to process elements from a `Queue` until it becomes empty. Which control flow structure is most suitable for this task?Â
In a relational database, what is a candidate key?