Questions

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

In the following question, a word has been written in four different ways out of which only one is correctly spelt. Select the correctly spelt word.

 

A) Ambarass B) Embarass
C) Embarrs D) Embarrass
 
Answer & Explanation Answer: D) Embarrass

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

3 2351
Q:

Which formula represents a polar molecule?

A) C - O B) C - N
C) H - N D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

A chemical bond in which the electrons are not shared equally due to differences in the electronegativity of the atoms.

 

The polarity of a covalent bond is measured using its dipole moment.

 Large dipole moment = more polar

 Small dipole moment = more nonpolar.

Report Error

View Answer Report Error Discuss

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

2 2350
Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

He took a loan of hundred rupees from me.

A) debt B) demand
C) advance D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:

No improvement is required. Loan is a temporary provision of money, usage is correct. Debt is an obligation. Demand is a claim to something owed. Advance is a supply in expectation of repayment.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2350
Q:

Which waves cannot be transmitted through vacuum?

A) Electromagnetic B) Light
C) Sound D) Heat
 
Answer & Explanation Answer: C) Sound

Explanation:

Sound waves cannot be transmitted through vacuum. 

Report Error

View Answer Report Error Discuss

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

6 2350
Q:

The law of demand implies that

A) the higher the price of a good, the lesser the quantity demanded B) the higher the price of a good, the higher the quantity demanded
C) the higher the quantity demanded, the higher the price of a good D) All of the above
 
Answer & Explanation Answer: A) the higher the price of a good, the lesser the quantity demanded

Explanation:

The law of demand implies that "The higher the price of a good, the lesser the quantity demanded".

 

 

For example:

If the rate of a mobile phone increased, the quantity demanded by the customers is decreased.

Report Error

View Answer Report Error Discuss

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

2 2349
Q:

What is IGP?

Answer

It is any routing protocol used within an autonomous system.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2349
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 2349