IT Trainer Questions


Q:

What is conversion operator ?

Answer

Class can have a public method for specific data type conversions.
for example:
class B
{
double value;
public  B(int i )
operator double()
{
return value;
}
};
B BObject;
double i = BObject; // assigning object to variable i of type double.
now conversion operator gets called to assign the value.

Report Error

View answer Workspace Report Error Discuss

11 4831
Q:

Is Air a Mixture?

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

Explanation:

True, Air is a Mixture.


Air is considered as mixture for the following reasons ;


1. Air can be separated into its components like N2, O2 , Argon and CO2 by the process of fractional distillation of liquid air.


2. Air shows the properties of all the gases present in the atmosphere.
For example : Oxygen is good Supporter of combustion. Hence air also is good supporter of combustion.


3. Air does not have a fixed formula.


4. Air has a variable composition because air at different places contains different amount of gases.


5. Heat or Light energy is neither absorbed nor released when air is prepared physical by mixing required amount of gases .


6. Mixture does have fixed boiling Point. It holds good in case of liquid air.

Report Error

View Answer Workspace Report Error Discuss

Subject: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank PO , Database Administration , IT Trainer

7 4773
Q:

Which of the following method declarations are allowed inside interface?

A) public void m1() B) private void m1()
C) protected void m1() D) abstract public void m1()
 
Answer & Explanation Answer: D) abstract public void m1()

Explanation:

Inside an interface every method will be by default abstract and public

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer

0 4762
Q:

What cannot be performed from the windows task manager?

A) Open a program B) Check recent CPU usage
C) Delete a program from the hard drive D) View what applications are running in the background
 
Answer & Explanation Answer: C) Delete a program from the hard drive

Explanation:

The task manager enables you to monitor processes, applications and services currently running on your computer. You can use it to start and stop programs and processes. In addition, you can use the task manager to show informative stats about your PC’s performance and network.

 


Hence, to delete a program from the hard drive, you have to go to the control panel to uninstall an application properly.

 

Report Error

View Answer Report Error Discuss

6 4756
Q:

World's smallest Computer is unveiled by

A) Infosys B) Intel
C) IBM D) Microsoft
 
Answer & Explanation Answer: C) IBM

Explanation:

IBM has unveiled the world's smallest computer - a device no bigger than a grain of salt. Presented at the company's Think 2018 conference in Las Vegas, Nevada, the unit measures just 1mm by 1mm but has the same processing power as the x86 chip that ran early Nineties IBM desktop computers.

Report Error

View Answer Report Error Discuss

2 4756
Q:

The average age of Vishal and Raghavendra is 24 years. If a new person Veerender is also included, the average age is increased by 1.5 years. What is the age of Veerender?

A) 28.5 yrs B) 29.5 yrs
C) 30.5 yrs D) 27 yrs
 
Answer & Explanation Answer: A) 28.5 yrs

Explanation:

According to the given data,

(V + R)/2 = 24

Now, after joining of Veerender,

V + R + D)/3 = 25.5

Hence, Veerender Age = 3(25.5) - 2(24) = 76.5 - 48 = 28.5 years.

Report Error

View Answer Report Error Discuss

3 4750
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 4721
Q:

Synonym of Trustworthy?

A) Tenacity B) Insolent
C) Resolute D) Reliable
 
Answer & Explanation Answer: D) Reliable

Explanation:
Report Error

View Answer Report Error Discuss

3 4712