Database Administration Questions


Q:

The ratio of two positive numbers is 3 : 5 and the average of the number is 48. What is the product of numbers?

A) 3365 B) 2160
C) 1854 D) 1632
 
Answer & Explanation Answer: B) 2160

Explanation:

Let the number be 3p and 5p

ATQ,

8p = 2 x 48

p = 96/8

p = 12

 

The numbers are 36 and 60.

 

Hence, the product of the numbers = 36 x 60 = 2160.

Report Error

View Answer Report Error Discuss

3 4379
Q:

Which technology is used in compact disc or disks?

A) Laser B) Mechanical
C) Electrical D) Electro magnetic
 
Answer & Explanation Answer: A) Laser

Explanation:

                                    Which_technology_is_used_in_compact_disc_or_disks1538026052.jpg image

Compact disc (CD) is a digital optical disc data storage format that was co-developed by Philips and Sony and released in 1982. 

These are actually made to replace floppy disks that were used to store files and programs from the computer.

 

The format was originally developed to store and play only sound recordings but was later adapted for storage of data (CD-ROM).ese CD's uses Laser technology.

Report Error

View Answer Report Error Discuss

5 4374
Q:

How to call a constructor in java?

Answer

Constructor chaining is the process of calling one constructor from another constructor with respect to current object.





Within same class: It can be done using this() keyword for constructors in same class


From base class: by using super() keyword to call constructor from the base class.

Report Error

View answer Workspace Report Error Discuss

10 4373
Q:

MS-EXCEL is based on

A) OS/2 B) UNIX
C) WINDOWS D) DOS
 
Answer & Explanation Answer: C) WINDOWS

Explanation:

Microsoft Excel is a spreadsheet developed by Microsoft for Windows, macOS, Android and iOS. It features calculation, graphing tools, pivot tables, and a macro programming language called Visual Basic for Applications.

Report Error

View Answer Report Error Discuss

4 4366
Q:

The capacity to change the conceptual schema without having to change external schemas or application programs is called

A) Physical Data Independence B) Logical Data Independence
C) Both A and B D) None
 
Answer & Explanation Answer: B) Logical Data Independence

Explanation:

LDI is the capacity to change the conceptual schema without having to change external schemas or application programs.

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Database Administration

0 4343
Q:

What do you mean by friend function in C++ ?

Answer

Friends can be either functions or other classes. The class grants friends unlimited access privileges.

* The declaration of the function should be preceded by the keyword 'friend'.
* The function definition will not use the keyword or the scope operator '::'.


Thus, a friend function is an ordinary function or a member of another class.

Report Error

View answer Workspace Report Error Discuss

15 4340
Q:

From a group of 7 boys and 6 girls, five persons are to be selected to form a team, so that at least 3 girls are there in the team. In how many ways can it be done?

A) 427 B) 531
C) 651 D) 714
 
Answer & Explanation Answer: B) 531

Explanation:

Given in the question that, there are 7 boys and 6 girls. 

Team members = 5

Now, required number of ways in which a team of 5 having atleast 3 girls in the team = 

6C3  x 7C2  + 6C4 x 7C1 + 6C5= 6x5x43x2x1 x 7x62x1 + 6x5x4x34x3x2x1 x 7 + 6x5x4x3x25x4x3x2x1= 420 + 105 + 6= 531.

Report Error

View Answer Report Error Discuss

5 4332
Q:

What is an Extension of Entity Type?

Answer

The collections of entities of a particular Entity Type are grouped together into an entity set.

Report Error

View answer Workspace Report Error Discuss

26 4331