Questions

Q:

What belongs to you but is used more by others?

A) Clothes B) Cosmetics
C) Shoes D) Name
 
Answer & Explanation Answer: D) Name

Explanation:

Yep! It's your NAME that belongs to you but is used more by others than you.

Report Error

View Answer Report Error Discuss

9 3363
Q:

National Dairy Research Institute is located at

A) Ludhiana B) Karnal
C) Pantnagar D) Hyderabad
 
Answer & Explanation Answer: B) Karnal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

4 3363
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 3362
Q:

What does the Mount protocol do?

Answer

The Mount protocol returns a file handle and the name of the file system in which a requested file resides. The message is sent to the client from the server after reception of a client's request.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

3 3362
Q:

What does 'M' stand for in Roman numerals?

A) 1 B) 50
C) 500 D) 1000
 
Answer & Explanation Answer: D) 1000

Explanation:

Letters of the alphabet used in ancient Rome to represent numbers:

I = 1;

V = 5;

X = 10;

L = 50;

C = 100;

D = 500;

M = 1000.

The numbers one through ten are written I, II, III, IV, V, VI, VII, VIII, IX, and X.

Report Error

View Answer Report Error Discuss

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

4 3362
Q:

What separates the components of a domain name?

A) apostrophes B) periods
C) spaces D) commas
 
Answer & Explanation Answer: B) periods

Explanation:
Report Error

View Answer Report Error Discuss

5 3362
Q:

GNLF stands for

A) Gorkha National Liberation Front B) Gross National Liberation Form
C) Both option A and B D) None of the above
 
Answer & Explanation Answer: A) Gorkha National Liberation Front

Explanation:

GNLF stands for Gorkha National Liberation Front.

 

Gorkha National Liberation Front (GNLF) is a political party in the Darjeeling District of West Bengal, India. It was formed in 1980 by Subhash Ghisingh with the objective of demanding a Gorkhaland state within India.

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

2 3361
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 3361