IT Trainer Questions


Q:

Javascript is interpreted by

A) Server B) Object
C) Client D) None of the above
 
Answer & Explanation Answer: C) Client

Explanation:

JavaScript is an interpreted language, not a compiled language. A program such as C++ or Java needs to be compiled before it is run.

The source code is passed through a program called a compiler, which translates it into bytecode that the machine understands and can execute.

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: Analyst , IT Trainer

20 20486
Q:

In a certain coding language, iF GO = 32 & SHE = 49 then SOME will be equal to ?

A) 56 B) 58
C) 62 D) 64
 
Answer & Explanation Answer: A) 56

Explanation:

If we count letters till the end of the alphabet including that letter in reverse order then
Here the values are nothing but the values corresponding to the alphabets when taken in a reverse order,i.e,A=26 ,B=25...,Z=1
G = 20 and O = 12 totaling 32
S = 8, H = 19 and E = 22 totaling 49

So
SOME = 8 + 12 + 14 + 22 = 56.

Report Error

View Answer Report Error Discuss

Filed Under: Coding and Decoding
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

99 20286
Q:

Find the next number in the given number series?

2, 19, 0, 21, –2, ?

A) 23 B) 25
C) 27 D) 29
 
Answer & Explanation Answer: A) 23

Explanation:

The given number series 2, 19, 0, 21, –2, ? follows a pattern,

2

2 + 17 = 19

19 - 19 = 0

0 + 21 = 21

21 - 23 = -2

-2 + 25 = 23

 

Hence, the next number in the series is 23.

Report Error

View Answer Report Error Discuss

2 20181
Q:

If  1 1 1 1 = R
    2 2 2 2 = T
    3 3 3 3 = E
    4 4 4 4 = N

 

Then  5 5 5 5 = ?

A) Y B) Z
C) T D) X
 
Answer & Explanation Answer: A) Y

Explanation:

If you add all the terms of the LHS of equality, then the last letter of the sum written in words would give you the RHS.

1 + 1 + 1 + 1 = 4 = FOUR

2 + 2 + 2 + 2 = 8 = EIGHT

3 + 3 + 3 + 3 = 12 = TWELVE

4 + 4 + 4 + 4 = 16 = SIXTEEN

 

So, following the same pattern.

5 + 5 + 5 + 5 = 20 = TWENTY

 

That gives us our answer to 5 5 5 5 =  "Y".

Report Error

View Answer Report Error Discuss

51 20159
Q:

Find the next number in the sequence?

28, 16, 28, 76, 274

A) 1233 B) 1243
C) 1256 D) 1276
 
Answer & Explanation Answer: B) 1243

Explanation:

Given number sequence is 28, 16, 28, 76, 274

Here the sequence follows a pattern that

28

28 x 0.5 + 2 = 14 + 2 = 16

16 x 1.5 + 4 = 24 + 4 = 28

28 x 2.5 + 6 = 70 + 6 = 76

76 x 3.5 + 8 = 266 + 8 = 274

274 x 4.5 + 10 = 1233 + 10 = 1243

 

Hence, the next number in the given number sequence is 1243.

Report Error

View Answer Report Error Discuss

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

1 20028
Q:

Find the Odd One Out?

3 24 186 1008 5040 20160

A) 24 B) 20160
C) 186 D) 5040
 
Answer & Explanation Answer: C) 186

Explanation:

The given number series is 3  24  186  1008  5040  20160

Here  the given series follows a pattern that,

3

3 x 8 = 24

24 x 7 = 168 not 186

168 x 6 = 1008

1008 x 5 =  5040

5040 x 4 = 20160

 

Hence the Odd One in the number series is 186.

Report Error

View Answer Report Error Discuss

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

3 20009
Q:

Brightness of bulb depends on voltage or current?

A) Current B) Voltage
C) Both A & B D) None
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Brightness of bulb depends on both voltage and current. The brightness depends on power.

Since we know that  Power (P) = Voltage x Current = V I

So whether you increase the current or the voltage the brightness will increase.

 

Example Illustration:

 If you connect a long bulb and a round bulb in series, the long bulb glows but the round bulb does not. Both of them have the same current flowing through them (they are in series) but the long bulb has a greater voltage across it because it has more resistance (even though V= IR is not obeyed exactly, voltage drop does depend on the resistance). If you connect a round bulb and a long bulb in parallel, however, it is the round bulb that is brighter because now the voltage across both bulbs is the same but the current is larger through the round bulb (smaller resistance).

 

Hence, the brightness of a bulb depends on power i.e, both voltage and current.

Report Error

View Answer Report Error Discuss

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

31 19996
Q:

 Which of the following is the original purpose of SQL?

A) To specify the syntax and semantics of SQL data definition language B) To specify the syntax and semantics of SQL manipulation language
C) To define the data structures D) All of the above.
 
Answer & Explanation Answer: D) All of the above.

Explanation:

SQL is a domain-specific language used in programming and designed for managing data held in a relational database management system, or for stream processing in a relational data stream management system.

 

Purpose of SQL are ::

* To define the data structures

* To specify the syntax and semantics of SQL manipulation language

* To specify the syntax and semantics of SQL data definition language

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Analyst , Database Administration , IT Trainer

19 19963