Questions

Q:

Project authorization is one of the processes that is associated with the initiation phase of a project. Authorization can come in many different forms, and projects are generally authorized by all of the following except

A) Technological Advances B) Customer request or market demand
C) Executive year - end bonuses D) Business or Social needs
 
Answer & Explanation Answer: C) Executive year - end bonuses

Explanation:

Project authorization should not be exclusively based upon the impact of an executive's bonus (many people would agree that it should not ever be based upon an executive's bonus). Answer A, B, and D are common events that predicate the need for project authorization and can evolve into large scope projects.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 2766
Q:

"Abhinav Bharat" was founded in 1904 as a secret society of revolutionaries by :

A) Damodar Chapekar B) V. D. Savarkar
C) Praffula Chaki D) Khudiram Bose
 
Answer & Explanation Answer: B) V. D. Savarkar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2766
Q:

What would be the output of the following program?

main()

{

   struct emp

   {

        char *n;

        int age;

   };

   struct emp e1 = { "Dravid", 23};

   struct emp e2 = e1;

   strupr (e2.n);

   printf ("\n%s",e1.n);

}

Answer

DRAVID


When a structure is assigned, passed, or returned, the copying is done monolithically. This means that the copies of any pointer fields will point to the same place as the original. In other words, anything pointed to is not copied. Hence, on changing the name through e2.n it automatically changed e1.n

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2766
Q:

What is multi tasking, multi programming, multi threading?

Answer

Multi programming: Multiprogramming is the technique of running several programs at a time using timesharing. It allows a computer to do several things at the same time. Multiprogramming creates logical parallelism. The concept of multiprogramming is that the operating system keeps several jobs in memory simultaneously. The operating system selects a job from the job pool and starts executing a job, when that job needs to wait for any i/o operations the CPU is switched to another job. So the main idea here is that the CPU is never idle. 


Multi tasking: Multitasking is the logical extension of multiprogramming .The concept of multitasking is quite similar to multiprogramming but difference is that the switching between jobs occurs so frequently that the users can interact with each program while it is running. This concept is also known as time-sharing systems. A time-shared operating system uses CPU scheduling and multiprogramming to provide each user with a small portion of time-shared system. 


Multi threading: An application typically is implemented as a separate process with several threads of control. In some situations a single application may be required to perform several similar tasks for example a web server accepts client requests for web pages, images, sound, and so forth. A busy web server may have several of clients concurrently accessing it. If the web server ran as a traditional single-threaded process, it would be able to service only one client at a time. The amount of time that a client might have to wait for its request to be serviced could be enormous. So it is efficient to have one process that contains multiple threads to serve the same purpose. This approach would multithread the web-server process, the server would create a separate thread that would listen for client requests when a request was made rather than creating another process it would create another thread to service the request. To get the advantages like responsiveness, Resource sharing economy and utilization of multiprocessor architectures multithreading concept can be used.

Report Error

View answer Workspace Report Error Discuss

1 2765
Q:

Which of the following countries is not a member of the UN

A) Nepal B) Iran
C) Kampuchea D) Switzerland
 
Answer & Explanation Answer: C) Kampuchea

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2764
Q:

Where is the headquaters of the UNESCO

A) New Delhi B) London
C) Paris D) New York
 
Answer & Explanation Answer: C) Paris

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2764
Q:

Bleeding of gums, falling of teeth, fragile bones and delayed wound healing occur due to the deficiency of which one of the following vitamins?

A) Vitamin C B) Vitamin K
C) Vitamin D D) Vitamin B
 
Answer & Explanation Answer: A) Vitamin C

Explanation:

Deficiency of Vitamin C causes Scurvy, Swelling of gums etc.Vitamin K causes Non-clotting of blood ,Vitamin D causes Rickets in children and Osteomalasia in adults, Vitamin B 1 causes Beriberi,B2 causes Cracking of skin,reddish eye,cracking of tongue,B3 causes Whitening of hair ,mentally retardness ,B5 causes Pallagra or 4D syndrome,B6 causes Anemia,skin disease ,B7 causes Paralysis,hair falling,B11 causes Dysentery and B12 causes Jaundice and Teroile Glutemi

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 2764
Q:

Where does translation occur?

A) Nucleus B) Ribosomes
C) Cytoplasm D) mitochondrion
 
Answer & Explanation Answer: C) Cytoplasm

Explanation:

Right after that, the mRNA enters the cytoplasm through nuclear pores. There, it could be translated into proteins by ribosomes. This process is called translation.

 

Translation occurs in the cytoplasm whereas transcription occurs in the nucleus.

Report Error

View Answer Report Error Discuss

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

5 2763