function mcq_record_mode_controller() { // Capability check if (!current_user_can('manage_options')) { wp_die(__('You do not have permission to access this page.', 'mcq-test-creator')); } // Nonce and test ID $test_id = isset($_GET['test_id']) ? intval($_GET['test_id']) : 0; $nonce = isset($_GET['nonce']) ? $_GET['nonce'] : ''; if (!$test_id || !wp_verify_nonce($nonce, 'mcq_record_mode_' . $test_id)) { wp_die(__('Invalid security token.', 'mcq-test-creator')); } // Build presentation data $presentation = mcq_build_presentation($test_id); if (!$presentation) { wp_die(__('No questions found in this test.', 'mcq-test-creator')); } // Render the view, capture output, and exit cleanly (no admin chrome) ob_start(); require_once MCQ_PLUGIN_DIR . 'views/record-mode.php'; $html = ob_get_clean(); wp_die($html); } When a ball is thrown vertically upward, what is the velocity at the highest point? - DocMCQs
Ad
Sponsored by Sir Tauqeer
CLICK HERE TO JOIN SIR TAUQUEER WHATSAPP GROUP
FOR PREPARATION CLASSES AND JOBS UPDATES
Join Now

When a ball is thrown vertically upward, what is the velocity at the highest point?

A. Zero
B. Constant
C. Maximum
D. Minimum
Correct Answer: A. Zero

When a ball is thrown vertically upward, it is constantly decelerating due to the force of gravity acting downwards. As it travels upwards, its speed decreases. At the very peak of its trajectory, just for an instant before it begins to fall back down, its instantaneous vertical velocity is Zero. This is the turning point where its direction of motion reverses.

  • Constant velocity would imply no acceleration, which is incorrect under gravity.
  • Maximum velocity occurs at the moment it is thrown, not at the highest point.
  • Minimum velocity is indeed zero, but 'zero' is the precise value at the highest point.

Leave a Comment

Join Our WhatsApp Channel ×
Scroll to Top