True or False Questions

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 5523
Q:

Microwave communication uses high-frequency.

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

Explanation:

Microwaves are high-frequency signals in the 300 MHz to 300 GHz range. This is in contrast to radio signals, which are typically broadcast in all directions. Radio signals operate in the 3 Hz to 300 MHz range.


Microwave signals are used for both satellite and ground-based communications.

Report Error

View Answer Workspace Report Error Discuss

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

5 5404
Q:

Wild animals are not considered a natural resource.

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

Explanation:

Natural resources are resources taken from nature to satisfy our needs. As wild animals are on the earth naturally, they are considered as natural resources.


 


Hence, the given statement is false.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

3 5317
Q:

Sensitive data is always classified.

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

Explanation:

FALSE. Sensitive data is NOT always classified.


 


Sensitive information is data that must be protected from unauthorized access to safeguard the privacy or security of an individual or organization.



There are three main types of sensitive information:


1. Personal information


2. Business information


3. Classified information



Data is "Classified" based on the damage that might result from unauthorized disclosure. Some data is Sensitive, but will not necessarily do harm to the country if released publicly - such as PII- which could do harm to individuals if released but not necessarily the country.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 4945
Q:

Myeloid stem cells give rise to all leukocytes.

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

Explanation:

Hemopoiesis begins in the red bone marrow, with hemopoietic stem cells that differentiate into myeloid and lymphoid lineages.


 


Myeloid stem cells give rise to all the other formed elements, including the erythrocytes; megakaryocytes that produce platelets; and a myeloblast lineage that gives rise to monocytes and three forms of granular leukocytes: neutrophils, eosinophils, and basophils.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 4871
Q:

An asset under construction requires a separate asset class with their own account determination since depreciation has to be shown separately on the balances sheet.

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

Explanation:
Report Error

View Answer Workspace Report Error Discuss

Subject: SAP FI

0 4615
Q:

Whether the last number 240 in the following series is according to the remaining numbers pattern ?

2, 4, 12, 48, 240

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

Explanation:

The given series follows,


2


2 x 2 = 4


4 x 3 = 12


12 x 4 = 48


48 x 5 = 240.

Report Error

View Answer Workspace Report Error Discuss

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

22 4526
Q:

The Marine Corps philosophy of leadership is based upon developing individual Marine.

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

Explanation:

The belief that leadership qualities can be developed within the individual Marine, and that leaders have the responsibility for developing those qualities is the Marine Corps philosophy of leadership.


 


The United States Marine Corps, also referred to as the United States Marines, is a branch of the United States Armed Forces responsible for conducting amphibious operations with the United States Navy.

Report Error

View Answer Workspace Report Error Discuss

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

1 4378