Constants In Exponential Notation

  • CCSS.Math.Content
Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Jhangen
J
Jhangen
Community Contributor
Quizzes Created: 3 | Total Attempts: 4,292
| Attempts: 121 | Questions: 14
Please wait...
Question 1 / 14
0 %
0/100
Score 0/100
1) Which of these is the correct constant declaration for the gravitational constant which is equal to 1.07 times 10 to the negative 9th power in feet cubed per pound second squared?

Explanation

We use all caps from constant identifiers and exponential notation must be used. No units are included. In exponential notation, the E takes the place of the x 10 of scientific notation.

Submit
Please wait...
About This Quiz
Constants In Exponential Notation - Quiz

These questions will help you prepare your Gravity. Frm program.

Personalize your quiz and earn a certificate with your name on it!
2) What is the keyword used for declaring a constant?

Explanation

Starts with a capital C. Const

Submit
3) Which is the appropriate constant declaration for the weight of the Earth in pounds?

Explanation

All capitals and exponential notation.

Submit
4) What line of code will put the cursor on the Clear command button?

Explanation

You look where the cursor is, so the code for putting the cursor somewhere is done with the name of the object followed by .SetFocus

Submit
5) Which is the correct line to use for the beginning of the For Next loop that generates the elevations from 0 to 20000 feet above the Earth's surface for elevations of 1000 feet increments?

Explanation

The directions call for the elevations to be feet above the Earth's surface from 0 to 20000 feet in 1000 foot increments. Units are not used in the For Next loop. The phrase in 1000 foot increments means that the step is 1000. No commas are used. The variable after For and after Next is Elevation.

Submit
6) Which is the correct assignment statement for calculating the acceleration?

Explanation

The correct assignment statement for calculating the acceleration is "Acceleration = GRAVITY * WEIGHTEARTH / (RADIUSEARTH + Elevation) ^ 2." This formula correctly calculates the acceleration by multiplying the gravity (GRAVITY) by the weight of the Earth (WEIGHTEARTH), and then dividing it by the sum of the radius of the Earth (RADIUSEARTH) and the elevation, all raised to the power of 2.

Submit
7) What is the best name for the menu item with the word Gravity?

Explanation

mnu is the 3-letter prefix for menu items.

Submit
8) Which is the correct syntax for the constant definition for the radius of the Earth in feet?

Explanation

Do NOT include units. Do not include commas.

Submit
9) Since the elevations are going to be provided by a For Next loop and will be from 0 to 20,000 feet above the Earth's surface in 1000 feet increments, how should the variable Elevation be declared?

Explanation

Only integers are needed because the elevations will be 0, 1000, 2000, 3000, 4000, etc up to 20000.

Submit
10) Which is the correct declaration for a variable that will hold the various results as they determined in the For Next loop?

Explanation

Look at the ResultString.frm directions as a guide. ResultString is a concatenation of values and spaces put into a string variable.

Submit
11) If the result string is made up of a concatenation of values of variables and space and then added to the listbox, which of these lines of code would be appropriate for displaying the output to the listbox?

Explanation

ResultList is the name of the ListBox where the results are being displayed. .AddItem is used with ListBoxes. The value of the variable ResultString is being added to the ListBox each time through the loop.

Submit
12) What line of code tells the computer when to increment the elevation and when to repeat the loop?

Explanation

Every For has its Next. The variable and For and its corresponding Next, must be the same.

Submit
13) What is the standard way to write constants in Visual Basic?

Explanation

All caps make constants look different from variables.

Submit
14) Since the acceleration is going to be calculated by the program, its variable must also be declared.  The sample output shows values such as 32.26627 and 32.22921 as accelerations; therefore, which is the best declaration for the acceleration variable?

Explanation

Single is needed for decimals.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 20, 2024 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 20, 2024
    Quiz Edited by
    ProProfs Editorial Team
  • Apr 20, 2010
    Quiz Created by
    Jhangen
Cancel
  • All
    All (14)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Which of these is the correct constant declaration for the...
What is the keyword used for declaring a constant?
Which is the appropriate constant declaration for the weight of the...
What line of code will put the cursor on the Clear command button?
Which is the correct line to use for the beginning of the For Next...
Which is the correct assignment statement for calculating the...
What is the best name for the menu item with the word Gravity?
Which is the correct syntax for the constant definition for the radius...
Since the elevations are going to be provided by a For Next loop and...
Which is the correct declaration for a variable that will hold the...
If the result string is made up of a concatenation of values of...
What line of code tells the computer when to increment the elevation...
What is the standard way to write constants in Visual Basic?
Since the acceleration is going to be calculated by the program, its...
Alert!

Advertisement