Questions

Q:

Nematodes and arthropods both

A) are suspension feeders B) have ciliated larvae
C) develop an anus from the blastopore (pore) formed in the gastrula stage D) grow by shedding their exoskeleton
 
Answer & Explanation Answer: D) grow by shedding their exoskeleton

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2059
Q:

Which of the following is a manipuri version of Hockey?

A) Yubi Lakpi B) Khong Kangjei
C) Hiyang Tanaba D) None of the above
 
Answer & Explanation Answer: B) Khong Kangjei

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2059
Q:

In each of the following question, find out which part has an error. Mohan is one of those boys

A) / who has expressed B) / willingness for joining
C) / the educational tour. D) No error
 
Answer & Explanation Answer: A) / who has expressed

Explanation:

‘has’ should be replaced with ‘have’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2058
Q:

Net exports are negative when

A) exports are greater than imports B) imports are greater than exports
C) No exports D) None of the above
 
Answer & Explanation Answer: B) imports are greater than exports

Explanation:


When exports are greater than imports, net exports are positive and similarly, when imports are greater than exports, net exports are negative.

 

When a country imports goods, it buys them from foreign producers. The money spent on imports leaves the economy, and that decreases the importing nation's GDP.

Report Error

View Answer Report Error Discuss

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

0 2058
Q:

Project Human Resource Management

What are the Project Management Processes included in the Project Human Resource Management?

Answer

Human Resource Planning - Identifying and documenting Project roles, responsibilities, and reporting relationships, as well as creating the staffing management plan.


Acquire Project Team - Obtaining the human resources needed to complete the project


Develop Project Team - Improving the competencies and interaction of team members to enhance project performance.


Manage Project Team - Tracking team member performance, providing feedback, resolving issues, and coordinating changes to enhance project performance.

Report Error

View answer Workspace Report Error Discuss

0 2058
Q:

What would be the output of the following program?

main()

{

    int i = -3, j =2, k =0, m ;

    m = ++j && ++i || ++k ;

    Printf ( "\n%d%d%d%d", i , j , k , m );

}

Answer

-2  3  0  1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2058
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2058
Q:

What is process synchronization?

Answer

A situation, where several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place, is called race condition. To guard against the race condition we need to ensure that only one process at a time can be manipulating the same data. The technique we use for this is called process synchronization.

Report Error

View answer Workspace Report Error Discuss

1 2058