IT Trainer Questions


Q:

Break the logic behind the given mathematical puzzle?

Maths_logic_puzzle1557901040.png image

A) 7 B) 8
C) 11 D) 13
 
Answer & Explanation Answer: B) 8

Explanation:

In the given puzzle,

The logic is in the format of lets say, a/b


In that case b doesn't matter, because

2/2 = 1,

6/5 = 6/2 = 3,

10/11 = 10/2 = 5

 

This means that equation is a/2

So 16/19 is equal 16/2 = 8.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

19 4285
Q:

6 B in an O?

A) 6 books in an order B) 6 balls in an over
C) 6 bats in an odd D) None of the above
 
Answer & Explanation Answer: B) 6 balls in an over

Explanation:

6 b in an o means 6 balls in an over in cricket.

Report Error

View Answer Report Error Discuss

4 4282
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 4266
Q:

Sravan drove from home to a neighboring town at the speed of 50 km/h and on his returning journey, he drove at the speed of 45 km/h and also took an hour longer to reach home. What distance did he cover?

A) 350 kms B) 450 kms
C) 900 kms D) 700 kms
 
Answer & Explanation Answer: C) 900 kms

Explanation:

Let the distance he covered each way = d kms

According to the question,

d/45 - d/50 = 1

=> d = 450 kms.

 

Hence, the total distance he covered in his way = d + d = 2 d = 2 x 450 = 900 kms.

Report Error

View Answer Report Error Discuss

14 4264
Q:

Q = mcdT refers to

A) Enthalpy formula B) Heat Transfer formula
C) Specific Heat formula D) Heat of Vaporization
 
Answer & Explanation Answer: C) Specific Heat formula

Explanation:

Q = mc∆T refers to Specific Heat formula.

 

When heat energy is added to a substance, the temperature will change by a certain amount.

The relationship between heat energy and temperature is different for every material, and the specific heat is a value that describes how they relate.

 

Q = mc∆T

 

Q = heat energy (Joules, J)

m = mass of a substance (kg)

c = specific heat (units J/kg∙K)

∆T = change in temperature (Kelvins, K)

Report Error

View Answer Report Error Discuss

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

2 4253
Q:

What is C-Sharp (C#) and its advantages ?

Answer

C# is a type-safe, managed and object oriented language, which is compiled by .Net framework for generating intermediate language (IL).


Below are some of the features supported in C# -
* Constructors and Destructors
* Properties
* Passing Parameters
* Arrays
* Main
* XML Documentation and
* Indexers


Below are the advantages of C# -


* Easy to learn
* Object oriented
* Component oriented
* Part of .NET framework

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: IT Trainer , Analyst

1 4252
Q:

If a Siren sounds for every 5 seconds, how many times will it sound in ¾ of an hour?

A) 541 times B) 540 times
C) 450 times D) 275 times
 
Answer & Explanation Answer: A) 541 times

Explanation:

There are 60 minutes in an hour.

In ¾ of an hour there are (60 × ¾) minutes = 45 minutes.

In ¾ of an hour there are (60 × 45) seconds = 2700 seconds.

Siren sounds for every 5 seconds.

In 2700 seconds = 2700/5 = 540 times.

The count start after the first sound, the Siren will sound 541 times in ¾ of an hour.

Report Error

View Answer Report Error Discuss

Filed Under: Clock puzzles
Exam Prep: GRE , GATE , CAT , Bank Exams
Job Role: Project Manager , IT Trainer , Bank PO , Bank Clerk

10 4236
Q:

What is JSON ?

Answer

* JSON full form is JavaScript Object Notation.
* JSON is a lightweight text-based open standard designed for human-readable data interchange.
* It is derived from the JavaScript programming language for representing simple data structures and associative arrays, called objects.
* And JSON is language-independent, with parsers available for virtually every programming language.
* Uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python,php
* The JSON format is often used for serializing and transmitting structured data over a network connection.
* When third party data interchane(REST Services) then JSON may used there LIKE SHOP.
* It is primarily used to transmit data between a server and web application, serving as an alternative to XML.


 

Report Error

View answer Workspace Report Error Discuss

2 4223