True or False Questions

Q:

 Tanjore kingdom was founded by Raja Odeyar. True or False ?

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

Explanation:

 Mysore kingdom was founded by Raja Odeyar.

Report Error

View Answer Workspace Report Error Discuss

Subject: Indian History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

11 8477
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

6 5594
Q:

Let K and L be events on the same sample space, with P (K) = 0.8 and P (B) = 0.6. Are these two events are disjoint ?

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

Explanation:

These two events cannot be disjoint because P(K) + P(L) > 1.


P(AꓴB) = P(A) + P(B) - P(AꓵB).


An event is disjoint if P(A ꓵ B) = 0. If K and L are disjoint P(K ꓴ L) = 0.8 + 0.6 = 1.4


And Since probability cannot be greater than 1, these two mentioned events cannot be disjoint.

Report Error

View Answer Workspace Report Error Discuss

Subject: Probability
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

3 3883
Q:

Draw the conclusion from the following sentences

1. Apartments in the Riverdale Manor cost less than apartments in The Gaslight Commons.
2. Apartments in the Livingston Gate cost more than apartments in the The Gaslight Commons.
3. Of the three apartment buildings, the Livingston Gate costs the most.

If the first two statements are true, the third statement is

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

Explanation:

Since the Gaslight Commons costs more than the Riverdale Manor and the Livingston Gate costs more than the Gaslight Commons, it is true that the Livingston Gate costs the most.

Report Error

View Answer Workspace Report Error Discuss

Subject: Statement and Conclusions
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

2 14415
Q:

Personnel Calculation Rule can contain several calculation formula depending on the definition and use of the rule.

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

Explanation:
Report Error

View Answer Workspace Report Error Discuss

Subject: SAP HR

1 3048
Q:

Function GWT is used in time valuation to select time wage types for all absences, which are valued on the basis of the As If principle

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

Explanation:
Report Error

View Answer Workspace Report Error Discuss

Subject: SAP HR

3 6317
Q:

Retroactive Accounting Limit determines the exact date until which master data and time data can be changed in the payroll past.

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

Explanation:
Report Error

View Answer Workspace Report Error Discuss

Subject: SAP HR

0 3706
Q:

During the Payroll run, master data and time data changes that affect the payroll past, payroll present and payroll future are not permitted.

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

Explanation:
Report Error

View Answer Workspace Report Error Discuss

Subject: SAP HR

1 3284