Questions

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

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2044
Q:

Select the antonym of
to perpetuate

A) to eternize B) to canonize
C) to cease D) to bolster
 
Answer & Explanation Answer: C) to cease

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT

0 2044
Q:

Which generation of computer is still under development?

A) 5th B) 4th
C) 3rd D) 2nd
 
Answer & Explanation Answer: A) 5th

Explanation:

5th generation of computers are still under development depending on the artificial intelligence.

Report Error

View Answer Report Error Discuss

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

3 2043
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 2042
Q:

Systems biology is mainly an attempt to

A) Understand the behavior of entire biological systems B) Speed up the technological application of scientific knowledge
C) Analyze genomes from different species. D) None of the above
 
Answer & Explanation Answer: A) Understand the behavior of entire biological systems

Explanation:

An approach to studying biology that aims to model the dynamic behavior of whole biological systems based on a study of the interactions among the system's parts.

Report Error

View Answer Report Error Discuss

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

1 2042
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 2042
Q:

What are the benefits of multithreaded programming?

Answer

 



  • Responsiveness

  • Resources sharing

  • Economy

  • Utilization of multiprocessor architectures.

Report Error

View answer Workspace Report Error Discuss

1 2042