Questions

Q:

Iodine test is used to detect

A) Carbohydrate B) Fat
C) Protein D) Cholesterol
 
Answer & Explanation Answer: A) Carbohydrate

Explanation:

The iodine test is used to test for the presence of starch i.e, Carbohydrate.

Report Error

View Answer Report Error Discuss

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

30 12537
Q:

Which is the largest epic in world ?

Answer



Mahabharat


 

Report Error

View answer Workspace Report Error Discuss

69 12533
Q:

Who is the present Attorney General of India?

A) K.K. Venugopal B) Mukul Rohatgi
C) Ranjit Kumar D) P. P. Malhotra
 
Answer & Explanation Answer: A) K.K. Venugopal

Explanation:

K.K. Venugopal is the new Attorney General of India since 2017.

Kottayan Katankot Venugopal, known generally to us as K. K. Venugopal is an eminent Indian constitutional lawyer and a senior advocate in the Supreme Court of India.

He was preceded by Mukul Rohatgi.

Report Error

View Answer Report Error Discuss

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

12 12532
Q:

Which is the largest gulf ?

Answer


The Gulf of Mexico is the largest among all the gulfs in the world.


 


the_largest_gulf_in_the_world_is1552973222.jpg image


 


A gulf is nothing but a large inlet from the ocean into the landmass, typically with a narrower opening than a bay.


 


The Gulf of Mexico is an ocean basin mostly surrounded by the North American continent. It is a unique, semi-enclosed sea located between the Yucatan and Florida peninsulas, at the southeast shores of the United States.

Report Error

View answer Workspace Report Error Discuss

Subject: Longest, Shortest, Deepest Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

60 12506
Q:

Which revenue system among the following is also known as the bandobast system?

A) Dahsala B) Nasaq
C) Kankut D) Zabti
 
Answer & Explanation Answer: D) Zabti

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

16 12502
Q:

Impact analysis helps to decide

A) How many more test cases need to written. B) How much regression testing should be done.
C) Different Tools to perform Regression Testing D) Exit Criteria
 
Answer & Explanation Answer: B) How much regression testing should be done.

Explanation:

Impact Analysis is used in software testing to define all the risks associated with any kind of changes in a product being tested.

Impact Analysis is nothing but analyzing the impact of changes in the deployed product or application. It gives the information about the areas of the system that may be affected due to the change in the particular section or features of the application.

 

Why Impact Analysis is done :


1. It is done to understand the possible outcome of implementing the change. Inducing too much functionality into a product can reduce the overall performance of the product.

2. To identify all the files, documents and models that might have to be modified if team decides to implement the change in product

3. To estimate the effort needed behind implementing the change

4. To identify the task required to implement the change

5. It will list the dependencies on a specific element

 

The impact is analyzed on Requirements, Design & Architecture, impact on Test and impact on schedule.

Report Error

View Answer Report Error Discuss

0 12501
Q:

The Indian king who opposed Alexander was

A) Ambhi B) Porus
C) Dhanananda D) Chandragupta
 
Answer & Explanation Answer: B) Porus

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

10 12487
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 12485