Questions

Q:

India was elected as a President of General Assembly of the United Nations in 1953. Who occupied this office on behalf of India?

A) S. Radha Krishnan B) Gopalswamy Iyyengar
C) V.K. Krishna Menon D) Vijayalakshmi Pandit
 
Answer & Explanation Answer: D) Vijayalakshmi Pandit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

9 3497
Q:

In the context of memory management, what are placement and replacement algorithms?

Answer

Placement algorithms determine where in available real-memory to load a program. Common methods are first-fit, next-fit, best-fit. Replacement algorithms are used when memory is full, and one process (or part of a process) needs to be swapped out to accommodate a new program. The replacement algorithm determines which are the partitions to be swapped out.

Report Error

View answer Workspace Report Error Discuss

3 3497
Q:

Which of these does not contain a structural protein?

A) Tendons B) Ovalbumin
C) Muscles D) Ligaments
 
Answer & Explanation Answer: B) Ovalbumin

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

12 3497
Q:

Which of these rules are applicable for naming covalent compounds?

A) nonmetal name + nonmetal name + suffix –ide B) nonmetal name + nonmetal name + suffix –ite
C) metal name + nonmetal name + suffix –ide D) metal name + nonmetal name + suffix –ite
 
Answer & Explanation Answer: C) metal name + nonmetal name + suffix –ide

Explanation:

Simple covalent compounds are generally named by using prefixes metal name + nonmetal name + suffix –ide to indicate how many atoms of each element are shown in the formula. Also, the ending of the last (most negative) element is changed to -ide. The prefixes used are mono-, di-, tri-, tetra-, penta-, hexa-, and so forth.

Report Error

View Answer Report Error Discuss

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

0 3497
Q:

Serious dehydration may cause all of the following, EXCEPT

A) muscle cramps B) torn ligaments
C) reduced blood volume D) increased heart rate
 
Answer & Explanation Answer: B) torn ligaments

Explanation:

Serious_dehydration_may_cause_all_of_the_following,_EXCEPT1558508048.jpg image

 

Dehydration is a loss of body fluid that impairs normal bodily functions. Serious dehydration may cause muscle cramps, reduced blood volume and increased heart rate.

Report Error

View Answer Report Error Discuss

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

4 3496
Q:

Which must be true for metamorphism to occur?

A) The parent rock must be in solid form. B) Tons of pressure must be applied.
C) The process must take place underground. D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Metamorphism is the change of minerals or geologic texture in pre-existing rocks, without the protolith melting into liquid magma. The change occurs primarily due to heat, pressure, and the introduction of chemically active fluids.

 

The parent rock must be in solid form. Tons of pressure must be applied for metamorphism to happen. The process must take place underground.

Report Error

View Answer Report Error Discuss

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

5 3494
Q:

The project life cycle can be broken into five phases that tend to overlap with each other frm one phase to another;however ,the control phase does not overlap with a specific phase. why?

A) Change control management is seperate from the other phases B) Change control management has a plan that can be usede throughout the initiation, planning, execution, and closeout of the project
C) Because the project sponsor is responsible for change control management , the project manager is not involved with that phase of the project D) Change control extends throughout the entire project from initiation to closeout
 
Answer & Explanation Answer: D) Change control extends throughout the entire project from initiation to closeout

Explanation:

Change control management is utilized from the begining to the end of the project in order to keep it focused with an emphasis on the time and budget. Answer A is incorrect because change control management is not seperate from the other phases. Answer B is incorrect because the control plan must be throughout the other phases of a project. Its usage is not optional, and consistent utilization is imperative to managing scope creep and other scope expansions. Answer C is incorrect because the project sponsors is generally not responsible for the change control documentation, although it should be involved in the buy-in and approval process.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 3494
Q:

What will be output of following c code?

void main()
{
struct bitfield
{
unsigned a:5;
unsigned c:5;
unsigned b:6;

}bit;
char *p;
struct bitfield *ptr,bit1={1,3,3};
p=&bit1;
p++;
clrscr();
printf("%d",*p);
getch();
}

Answer

Output: 12

Explanation:
Binary value of a=1 is 00001 (in 5 bit)
Binary value of b=3 is 00011 (in 5 bit)
Binary value of c=3 is 000011 (in 6 bit)

In memory it is represented as:
Let address of bit1 is 500 which initialize to char pointer p. Since can is one byte data type so p++ will be 501. *p means content of memory location 501 which is (00001100) and its binary equivalent is 12. Hence output is 12.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3493