Database Administration Questions


Q:

How many times can you subtract 5 from 25?

Answer

Technically or logically it is possible only once. As if you subtract 5 from 25 at first te result will be 20. Now, you can't subtract 5 from 25 since the left number is 20.


 


But if you go mathematically, it can be done infinite times and only 5 times without going into the negatives.

Report Error

View answer Workspace Report Error Discuss

8 3252
Q:

A man and his son are in a terrible accident and are rushed to the hospital in critical care. The doctor looks at the boy and exclaims "I can't operate on this boy, he's my son!" How could this be?

Answer

This is only possible when that doctor is boy's mother.

Report Error

View answer Workspace Report Error Discuss

15 3251
Q:

What is immutable object? Can you write immutable object ?

Answer

Immutable classes are Java classes whose objects can not be modified once created. Any modification in Immutable object result in new object. For example is String is immutable in Java. Mostly Immutable are also final in Java, in order to prevent sub class from overriding methods in Java which can compromise Immutability. You can achieve same functionality by making member as non final but private and not modifying them except in constructor.

Report Error

View answer Workspace Report Error Discuss

3 3243
Q:

Representation level data models provide the concepts that are close to the way many users perceive data

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

High level data models provide the concepts that are close to the way many users perceive data

Report Error

View Answer Workspace Report Error Discuss

Subject: Database
Job Role: Database Administration

0 3241
Q:

The time complexity of sequential search is

A) O(n) B) O(2n)
C) O(n^2) D) None
 
Answer & Explanation Answer: A) O(n)

Explanation:

The time complexity of sequential search is O(n)

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Database Administration

0 3240
Q:

What is more useful when it is broken?

Answer

An Egg is more useful when it is broken than it is not.

Report Error

View answer Workspace Report Error Discuss

4 3235
Q:

The relationship where both the participating entities belong to same entity type is called

A) Participation B) Recursive
C) Standard D) Normal
 
Answer & Explanation Answer: B) Recursive

Explanation:

The relationship where both the participating entities belong to same entity type is called Recursive relationship

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Database Administration

0 3224
Q:

Which of the following is system software?

A) MS Paint B) MS Excel
C) MS Word D) MS Windows
 
Answer & Explanation Answer: D) MS Windows

Explanation:

We know that, the collection of programs which performs specific tasks in a computer is called as software. Software in a computer is of two types. They are :

 

1. Aplication Software

2. System Software

 

System software is a computer program that performs the basic functionaility of a computer i.e, running a systems hardware and applications like loading programs, saving data, displaying, etc...

Report Error

View Answer Report Error Discuss

2 3221