Searching for "L"

Q:

Typically not referred to as a buffer type in critical chain project management is ______.

A) Free Buffer B) Resource Buffer
C) Project Buffer D) Feeding Buffer
 
Answer & Explanation Answer: A) Free Buffer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

Crack the Relation Logical Puzzle ?

20108561_1367416623365438_8515941278875417415_n1501053222.jpg image

A) Son B) Himself
C) Father D) Uncle
 
Answer & Explanation Answer: C) Father

Explanation:

Man's Father is Madhu's Father's Son => Madhu itself. So the Man in the photograph is Madhu's son. 

Report Error

View Answer Report Error Discuss

Filed Under: Logic Puzzles
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

Q:

Which of the following are displayed in File Explorer ?

A) Only OneDrive B) Only Storage locations
C) Both A & B D) Hardware devices such as monitors, printers, and cameras
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Storage locations and OneDrive are both displayed in File Explorer.

Report Error

View Answer Report Error Discuss

Q:

In budget 2017-18, the fund allocation for Deen Dayal Upadhyay Gram Jyoti Yojana Scheme ?

A) Rs. 6815 Crores B) Rs. 5550 Crores
C) Rs. 4814 Crores D) Rs. 2115 Crores
 
Answer & Explanation Answer: C) Rs. 4814 Crores

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams , CAT
Job Role: 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:

Both Joyel and Susy share a Windows 10 tablet with different user accounts. Joyel needs to access some files in Susy’s Documents folder. How can he do this ?

A) Joyel can access the files only if he has administrative rights B) Susy must choose to make the Documents folder Public for Joyel to see them
C) Joyel can, by default, see and access the files in any Documents folder on this computer D) Joyel cannot access those files without Susy moving them to another folder
 
Answer & Explanation Answer: A) Joyel can access the files only if he has administrative rights

Explanation:
Report Error

View Answer Report Error Discuss

Q:

What is the output after compile and run the following code ?

int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}

A) Compilation and output of "We are equal 10" B) Compilation and output of "Not equal! 10"
C) Compilation error, attempting to perform binary comparison on logical data type D) Compilation and output of "Not equal! 20"
 
Answer & Explanation Answer: B) Compilation and output of "Not equal! 10"

Explanation:

The output will be "Not equal! 10". Please note that && is logical AND operator. If first operand before (&&) is false then the other operand will not be evaluated. This illustrates that the Output +=10 calculation was never performed because processing stopped after the first operand was evaluated to be false. If you change the value of b1 to true, processing occurs as you would expect and the output would be "We are equal 20".

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification
Job Role: Analyst

Q:

Chola Empire was divided into ____

A) Mandalams, Nadu, Avanti & Kurram B) Mandalams, Nadu, Malkhand & Kurram
C) Avanti, Nadu, Malkhand & Kurram D) Mandalams, Nadu,Kurram & Valanadu
 
Answer & Explanation Answer: D) Mandalams, Nadu,Kurram & Valanadu

Explanation:
Report Error

View Answer Report Error Discuss

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