Questions

Q:

Which tennis player has won the Grand Slam title in men's singles 2019?

A) Rafael Nadal B) Roger Federer
C) Novak DJokovic D) Daniil Medvedev
 
Answer & Explanation Answer: A) Rafael Nadal

Explanation:

Rafael Nadal defeated Daniil Medvedev in the men's singles title at the 2019 US Open. It was Nadal's 19th Grand Slam singles title, and fourth US Open title.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

38 3512
Q:

Radio waves sent out by a radio stations are reflected by

A) troposphere B) stratosphere
C) mesosphere D) ionosphere
 
Answer & Explanation Answer: D) ionosphere

Explanation:

This is a layer of atmosphere about 60 to 70 km above the earth and extends to about 400km. It contains ionised particles which can reflect radio waves making radio communication round the world possible.

Report Error

View Answer Report Error Discuss

Filed Under: Physics

2 3512
Q:

Which structure is common to plant and animal cells?

A) Centriole B) Chloroplast
C) Central Vacuole D) Mitochondria
 
Answer & Explanation Answer: D) Mitochondria

Explanation:

Mitochondria are present in both plant and animal cells.

Report Error

View Answer Report Error Discuss

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

3 3511
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 3511
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 3510
Q:

How many cups in a quart?

A) 2 B) 3
C) 4 D) 1
 
Answer & Explanation Answer: C) 4

Explanation:

1 quart = 4 cups.

=> We know that 1 quart = 2 pints

But 1 pint = 2 cups

=> 2 pints = 2 x 2 cups = 4 cups = 1 quart.

Report Error

View Answer Report Error Discuss

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

4 3510
Q:

The average salinity of seawater is

A) 35% B) 3.5%
C) 3% D) 2.5%
 
Answer & Explanation Answer: B) 3.5%

Explanation:

Seawater or salt water is water from a sea or ocean.

On average, seawater in the world's oceans has a salinity of approximately 3.5% or 35 parts per thousand. This means that for every 1 litre (1000 mL) of seawater there are 35 grams of salts dissolved in it.

 

Hence, The average salinity of seawater is 3.5%.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

5 3509
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 3509