IT Trainer Questions


Q:

The flow of information through MIS is

A) organization dependent B) information dependent
C) management dependent D) need dependent
 
Answer & Explanation Answer: D) need dependent

Explanation:

The flow of information through MIS - Management Information System is Need dependent.

The backbone of any organization is Information. The information of MIS comes from both internal and external sources.

Report Error

View Answer Report Error Discuss

5 5628
Q:

Give an example for the use of volatile keyword in c++ ?

Answer

Most of the times compilers will do optimization to the code to speed up the program. For example in the below code,


int k = 15;
while( k == 15)


{
// Do something
}


compiler may think that value of 'k' is not getting changed in the program and replace it with 'while(true)', which will result in an infinite loop. In actual scenario, the value of 'k' may be getting updated from outside of the program.


Volatile keyword is used to tell compiler that the variable declared using 'volatile' may be used from outside the current scope, so that compiler won't apply any optimization. This matters only in case of multi-threaded applications.


In the above example if variable 'k' was declared using volatile, compiler will not optimize it. In shot, value of the volatile variables will be read from the memory location directly.

Report Error

View answer Workspace Report Error Discuss

5 5618
Q:

Data integrity constraints are used to

A) Ensure that duplicate records are not entered into the table B) Prevent users from changing the values stored in the table
C) Control who is allowed access to the data D) Improve the quality of data entered for a specific property like table column
 
Answer & Explanation Answer: D) Improve the quality of data entered for a specific property like table column

Explanation:

Integrity constraints are used to ensure accuracy and consistency of data in a relational database. Data integrity is handled in a relational database through the concept of referential integrity. Many types of integrity constraints play a role in referential integrity (RI).

 

Hence, Data integrity constraints are used to Improve the quality of data entered for a specific property i.e, table column.

Report Error

View Answer Report Error Discuss

27 5601
Q:

Values that are used to end loops are referred to as _____ values.

A) stop B) sentinel
C) end D) finish
 
Answer & Explanation Answer: B) sentinel

Explanation:
Report Error

View Answer Report Error Discuss

4 5599
Q:

One who sacrifices his life for a cause

One_who_sacrifices_his_life_for_a_cause1552994742.jpg image

A) Patriot B) Soldier
C) Martyr D) Revolutionary
 
Answer & Explanation Answer: C) Martyr

Explanation:

One who sacrifices his life for a cause is called as Martyr.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

2 5575
Q:

What has Hands But cannot Clap?

A) Toy B) Clock
C) Bag D) Shirt
 
Answer & Explanation Answer: B) Clock

Explanation:

What has Hands But cannot Clap is a Clock or a Watch.

A Clock technically has 3 hands.

1 Hour Hand Which tells Hours

1 Minute Hand Which tells Minutes

1 Second Hand Which tells Seconds.

But cannot clap with these hands.

Report Error

View Answer Report Error Discuss

11 5537
Q:

Find the compound interest on Rs. 6,500 for 4 years if the rate of interest is 10% p.a. for the first 2 years and 20% per annum for the next 2 years? 

A) Rs. 3845 B) Rs. 4826
C) Rs. 5142 D) Rs. 4415
 
Answer & Explanation Answer: B) Rs. 4826

Explanation:

We know the formula for calculating

The compound interest C = P1 + r100n - 1 where P = amount, r = rate of interest, n = time

Here P = 5000, r1 = 10, r2 = 20

Then C = 65001 + 101002 x 1 + 201002 - 1= 6500 x 18562500= 65 x 185625

C = Rs. 4826.

Report Error

View Answer Report Error Discuss

20 5512
Q:

In HTML document the tags are

A) hidden keywords B) used to display the content
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications.

HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content. Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tag and </html> is the closing tag.

Report Error

View Answer Report Error Discuss

Filed Under: Web Technology
Job Role: IT Trainer

13 5509