Searching for "C:"

Q:

Choose the related word/letters/number from the given alternatives.

DR:SE :: NC: ?

 

A) PF B) DO
C) OD D) PE
 
Answer & Explanation Answer: B) DO

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Analogy
Exam Prep: Bank Exams

Q:

Select the related word/letters/number from the given alternatives.
DB: IC:: YE: ?

A) FJ B) JF
C) TH D) WL
 
Answer & Explanation Answer: B) JF

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Alphabet Test
Exam Prep: Bank Exams

Q:

Consider the following inequalities in respect of any triangle ABC:

1) AC –AB < BC

2) BC –AC < AB

3) AB –BC < AC

Which of the above are correct?

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

Explanation:

AC-AB<BC Or AB+BC>AC

BC-AC<AB Or AB+AC>BC

AB-BC<AC Or AC+BC>AB

Sum of 2 sides of triangle is always greater than the third side

So all three statements are true

 

Report Error

View Answer Report Error Discuss

Filed Under: Volume and Surface Area
Exam Prep: Bank Exams

Q:

In a Δ ABC, DE || BC. D and E lie on AB and AC respectively. If AB = 7 cm and BD = 3cm, then find BC:DE

A) 2:2 B) 3:2
C) 3.5:2 D) 7:2
 
Answer & Explanation Answer: C) 3.5:2

Explanation:
Report Error

View Answer Report Error Discuss

Q:

In a Δ ABC, DE || BC. D and E lie on AB and AC respectively. If AB = 7 cm and BD = 3cm, then find BC:DE

A) 2:2 B) 3:2
C) 3.5:2 D) 7:2
 
Answer & Explanation Answer: C) 3.5:2

Explanation:
Report Error

View Answer Report Error Discuss

Q:

What is the age of Teja?

A: Four years ago, Raju was as old as Teja is at present.

B: Sita’s present age is two times of Raju’s present age.

C: The average age of Teja and Sita is 19 years.

A) Any two statements are sufficient to give answer B) Only C is sufficient
C) All of three statements are necessary to give answer D) Even using all the three statements answer cannot be found
 
Answer & Explanation Answer: C) All of three statements are necessary to give answer

Explanation:

From the given statements A, B & C

Let the present age of Teja = P

Raju present age = P + 4

Sita's present age = 2(P + 4)

Average of ages of Sita & Teja = 19

=> (2P + 8 + P)/2 = 19

= 3P + 8 = 38

=> P = 30/3 = 10

Hence, the present age of Teja = P = 10 yrs.

 

Therefore, by using all the three statements A, B & C we can find the age of Teja.

Report Error

View Answer Report Error Discuss

Filed Under: Problems on Ages
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

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

Q:

You decide to change the file system on your Windows 2000 computer. You want to change drive C: from FAT to NTFS. What should you type at the command prompt?

A) FORMAT C: /FS : NTFS B) CONVERT C: /FS : NTFS
C) FORMAT C: /NTFS D) CONVERT C: /NTFS
 
Answer & Explanation Answer: B) CONVERT C: /FS : NTFS

Explanation:

The convert.exe command is used to change a volume's file system from FAT to NTFS.

Report Error

View Answer Report Error Discuss