Questions

Q:

You can use the tab key to ________

A) move a cursor across the screen B) indent a paragraph
C) move the cursor down the screen D) both (a) and (b)
 
Answer & Explanation Answer: D) both (a) and (b)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

59 18512
Q:

In the following pieces of code, B and D will compile without any error. True or false ?

A: StringBuffer sb1 = "abcd";

B: Boolean b = new Boolean("abcd");

C: byte b = 255;

D: int x = 0x1234;

E: float fl = 1.2;

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

Explanation:

The code segments B and D will compile without any error. A is not a valid way to construct a StringBuffer, you need to create a StringBuffer object using "new". B is a valid construction of a Boolean (any string other than "true" or "false" to the Boolean constructor will result in a Boolean with a value of "false"). C will fail to compile because the valid range for a byte is -128 to +127 (i.e., 8 bits, signed). D is correct, 0x1234 is the hexadecimal representation in java. E fails to compile because the compiler interprets 1.2 as a double being assigned to a float (down-casting), which is not valid. You either need an explicit cast, as in "(float)1.2" or "1.2f", to indicate a float.

Report Error

View Answer Workspace Report Error Discuss

16 18509
Q:

Macro flowchart is also called as

A) Less Detail flowchart B) More detail flowchart
C) Simple detailed flowchart D) None of the above
 
Answer & Explanation Answer: A) Less Detail flowchart

Explanation:

A flowchart is a type of diagram that represents a workflow or process. A flowchart can also be defined as a diagrammatic representation of an algorithm, a step-by-step approach to solving a task.

Macro flowchart shows the outlines the main segments of program. Macro flowchart is also called as less detail flowchart.

Report Error

View Answer Report Error Discuss

Filed Under: Programming
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

50 18475
Q:

What should come at the place of question mark (?) in the following question?

437+216-413=?-234

A) 2.79 B) 5.01
C) 4.29 D) 6.36
 
Answer & Explanation Answer: B) 5.01

Explanation:

? = 4 + 85/4

 

? = 5.01

Report Error

View Answer Report Error Discuss

0 18474
Q:

Tansen Samman has been instituted by the Government of

A) Uttar Pradesh B) Gujarat
C) Maharashtra D) Madhya Pradesh
 
Answer & Explanation Answer: D) Madhya Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

36 18440
Q:

How many members were Initially  there in the Constituent assembly of India

A) 300 B) 304
C) 308 D) 310
 
Answer & Explanation Answer: A) 300

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

42 18436
Q:

The _____ controls communications for the entire computer system

A) arithmetic-logic unit B) semiconductor
C) motherboard D) coprocessor
 
Answer & Explanation Answer: C) motherboard

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

69 18429
Q:

Which of the statements given below are correct?

1. The author of the novel 'Atonement' is Ian McEwan.
2. The author of the novel 'The Sound and the Fury' is L. Ron Hubbard.
3. The author of the novel 'White Teeth' is Zadie Smith.

A) 1 and 2 B) 2 and 3
C) 1 and 3 D) 1, 2 and 3
 
Answer & Explanation Answer: C) 1 and 3

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 18376