IT Trainer Questions


Q:

Is MS Word an operating system?

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

Explanation:

False. MS-Word is not an Operating system.


 


Microsoft Word or MS-Word is an Application software developed by the company Microsoft. It allows users to Type and Save documents.

Report Error

View Answer Workspace Report Error Discuss

2 3295
Q:

What is an error-first callback ?

Answer

Error-first callbacks are used to pass errors and data as well. You have to pass the error as the first parameter, and it has to be checked to see if something went wrong. Additional arguments are used to pass data.


 


fs.readFile(filePath, function(err, data) {
if (err) {
// handle the error, the return is important here
// so execution stops here
return console.log(err)
}
// use the data object
console.log(data)
})

Report Error

View answer Workspace Report Error Discuss

2 3280
Q:

Which tennis player has won the Grand Slam title in men's singles 2019?

A) Rafael Nadal B) Roger Federer
C) Novak DJokovic D) Daniil Medvedev
 
Answer & Explanation Answer: A) Rafael Nadal

Explanation:

Rafael Nadal defeated Daniil Medvedev in the men's singles title at the 2019 US Open. It was Nadal's 19th Grand Slam singles title, and fourth US Open title.

Report Error

View Answer Report Error Discuss

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

38 3272
Q:

The primary colors are-

A) Yellow, red, blue B) Green, white, black
C) Blue, green, yellow D) Red, blue, green
 
Answer & Explanation Answer: D) Red, blue, green

Explanation:

The Primary Colours are Blue, Red and Green. By mixing all these three primary colours we get White colour. 

The Secondary Colours are - Yellow, Magenta and Cyan.

Report Error

View Answer Report Error Discuss

20 3272
Q:

When do you override hashcode and equals() ?

Answer

HashCode method return int value. So the Hash value is the int value returned by the hash function .


If you want to do equality check or want to use your object as key in HashMap, we must override hashcode and equals() method.

Report Error

View answer Workspace Report Error Discuss

Subject: Java
Job Role: Analyst , IT Trainer

5 3266
Q:

A Transparent DBMS

A) Keep its logical structure hidden from users B) Can access control
C) Keeps its physical structure hidden from users D) Can not hide sensitive information from users
 
Answer & Explanation Answer: C) Keeps its physical structure hidden from users

Explanation:

DBMS :: Database Managemet System.

A DBMS which keeps its physical structure hidden from the user is known as a transparent DBMS.

Report Error

View Answer Report Error Discuss

2 3264
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 3254
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 3252