Questions

Q:

Which equation represents a neutralization reaction?

A) 2Al(OH)3(s) ---> Al2O3(s) + 3H2O(l) B) H2SO4(aq) + 2NaOH(aq) ---> Na2SO4(aq) + 2H2O(l)
C) 2H2(g) + O2(g) ---> 2H2O(l) D) H2CO3(aq) ---> CO2(g) + H2O(l)
 
Answer & Explanation Answer: B) H2SO4(aq) + 2NaOH(aq) ---> Na2SO4(aq) + 2H2O(l)

Explanation:

Here in the option B) H2SO4 - Sulfuric acid is reacting with sodium hydroxide (NaOH), a base to produce a salt (Sodium Sulfate), and water (H2O). This is characteristic of of acid-base neutralization reactions.

Report Error

View Answer Report Error Discuss

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

1 2315
Q:

1 Mole of CO2 mass is

A) 32 gms B) 44 gms
C) 16 gms D) 12 gms
 
Answer & Explanation Answer: B) 44 gms

Explanation:

We know that,

Mass of Carbon = 12 gms

Mass of Oxygen = 16 gms = O2 => 16 * 2 = 32 gms

=> Mass of 1 mole of CO2 = 12 + 32 = 44 gms.

Report Error

View Answer Report Error Discuss

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

15 2315
Q:

How many bits are in a MAC address?

A) 64 B) 48
C) 32 D) 16
 
Answer & Explanation Answer: B) 48

Explanation:

MAC - Media Access Control, address is a globally unique identifier assigned to network devices, and therefore it is often referred to as hardware or physical address.

 

MAC addresses are 6-byte (48-bits) in length, and are written in MM:MM:MM:SS:SS:SS format.

Report Error

View Answer Report Error Discuss

0 2314
Q:

What is the outcome when a cell undergoes meiosis?

A) Two haploid cells B) Four haploid cells
C) Two diploid cells D) Four diploid cells
 
Answer & Explanation Answer: B) Four haploid cells

Explanation:

When a cell undergoes meiosis process, it produces 4 haploid cells as a result.

Report Error

View Answer Report Error Discuss

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

3 2314
Q:

Which amongst the following is not a component of monetary policy in India?

A) Repo rate B) Moral suasion
C) Credit Rationing D) Public Debt
 
Answer & Explanation Answer: D) Public Debt

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

1 2314
Q:

Where is the headquaters of the Universal postal Union

A) Switzerland B) UK
C) Iran D) India
 
Answer & Explanation Answer: A) Switzerland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2314
Q:

What are the roles of glass-box and black-box testing tools?

Answer

Glass Box (or white box) testing is the process of giving i/p to the system and checking how the system processes i/p to generate o/p


Black Box testing is the process of giving i/p to the system and checking if the system is giving correct o/p without bothering how the o/p is generated.


As we can see from the definitions, the role of black box testing is to ensure that the o/p generated is correct. And role of white box testing is to ensure that methods used to generate the o/p are correct.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2314
Q:

Point out the error, ifany, in the followingb code?

typedef struct

{

     int data;

     NODEPTR link;

} *NODEPTR;

 

Answer

A typedef defines a new name for a type, and in simpler cases like the one shown below you can define a new structure type and a typedef for it at the same time.


typedef struct


{


    char name[20];


    int age;


} emp;


However, in the structure defined in this question, there is an error because a typedef declaration cannot be used until it is defined. In the given code fragment the typedef declaration is not yet defined at he point where the link field is declared.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2314