Questions

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

If i wanted to reach the South Atlantic from the South Pacific while touching South America , I would have to use

A) Florida Straits B) Dardaelles
C) Magellan Straits D) Bosporus
 
Answer & Explanation Answer: C) Magellan Straits

Explanation:

a) joins the Gulf of Mexico and Atlantic Ocean, and touches USA and Bahama Island.

b) joins the sea of Marmara and Aegean Sea, touching Asian Turckey and European  Turkey

d) joins Black sea and sea of Marmara touching Asian Turkey and European Turkey

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2026
Q:

Project Time Management

What are the Project Management Processes included in the Project Time Management?

Answer

Activity Definition - Identifying the Specific schedule activities that need to be performed to produce the various project deliverables.


Activity Sequencing - Identifying and documenting dependencies among schedule activities


Activity Resource Estimating - Estimating the type and quantities of resources required to perform each schedule activity


Activity Duration Estimating - Estimating the number of work periods that will be needed to complete individual schedule activities


Schedule Development - Analyzing activity sequences, durations, resource requirements, and schedule constraints to creae the project schedule.


Schedule Control - Controlling changes to the project schedule

Report Error

View answer Workspace Report Error Discuss

0 2026
Q:

Which of the following is a renewable resource of energy?

A) Hydrogen fuel B) Wind energy
C) Solar energy D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Renewable energy is energy that is collected from renewable resources, which are naturally replenished on a human timescale, such as sunlight, wind, rain, tides, waves, and geothermal heat.

Report Error

View Answer Report Error Discuss

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

5 2026
Q:

Igneous rocks are classified based upon their

A) composition B) texture
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2025
Q:

What would be the output of the following program?

main()

{

    printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141);

}

Answer

4  8  10

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2025
Q:

What would be the output of the following program?

main()

{

    float a = 0.7;

    if ( a < 0.7f )

          printf ( " C ");

    else 

          Printf ( " C++ ");

}

Answer

C++

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2025