CP 120 chp2.1

Your page rank:

Total word count: 549
Pages: 2

Calculate the Price

- -
275 words
Looking for Expert Opinion?
Let us have a look at your work and suggest how to improve it!
Get a Consultant

A location in memory used for storing data and given a name in a computer program is called a _____ because the data in the location can be changed.

variable

Which of the following is NOT a legal identifier?
outrageouslyAndShockinglyLongRun
_42
_
loveportionnumber9
7thheaven

7th heaven *** can not start with a number

Which of the following IS a legal identifier?
5_and_10
Five_&_Ten
______
lovepotion#9
"hello world"

_____

Before a variable is used it must be
defined
declared
included
evaluated
assigned

declared

Declare two integer variables named profitStartOfQuarter and cashFlowEndOfYear .

int profitStartOfQuarter; int cashFlowEndOfYear;

Write a statement that declares an int variable named count .

Write a declaration for two integer variables, age and weight.

Declare an integer variable named degreesCelsius .

int count; int age; int weight; int degreesCelsius;

ASSIGNMENTS
1. Given an integer variable drivingAge that has already been declared, write a statement that assigns the value 17 to drivingAge .

2. Write a statement to set the value of num to 4 (num is a variable that has already been declared).

3. Given two integer variables num and highest, write a statement that gives highest the same value that num has.

4. Given two integer variables oldRecord and newRecord , write a statement that gives newRecord the same value that oldRecord has.

5. Given two integer variables matricAge and gradAge , write a statement that gives gradAge a value that is 4 more than the value of matricAge .

6. Write a statement to add the values of x and y together, storing the result in sum. (The variables have already been declared and x and y have already been initialized.)

1. drivingAge = 17; 2. num =4; 3. higest = num; 4. newRecord = oldRecord; 5. gradAge = matricAge + 4; 6. sum=x+y;

****Given two int variables, i and j , which have been declared and initialized, and two other int variables, itemp and jtemp , which have been declared, write some code that swaps the values in i and j by copying their values to itemp and jtemp , respectively, and then copying itemp and jtemp to j and i , respectively.

jtemp = j; itemp=i; j= itemp; i=jtemp;

****
Given three already declared int variables, i , j , and temp , write some code that swaps the values in i and j . Use temp to hold the value of i and then assign j ‘s value to i . The original value of i , which was saved in temp , can now be assigned to j .

temp = i; i=j; j=temp;

*** Given two int variables, firstPlaceWinner and secondPlaceWinner , write some code that swaps their values.

Declare any additional variables as necessary, but do not redeclare firstPlaceWinner and secondPlaceWinner .

int i; i=firstPlaceWinner; firstPlaceWinner = secondPlaceWinner; secondPlaceWinner = i;

Write a statement that declares and initializes two integer variables. Call the first one age and initialize it to 15, and call the second one weight and initialize it to 90.

int age; age=15; int weight; weight=90;

Write declaration statements to declare and initialize two variables: one is an integer variable named age, initialized to 18, and the other variable, named weight, is initialized to 114.5.

int age; age= 18; float weight; weight=114.5;

Of the following variable names, which is the best one for keeping track of whether a patient has a fever or not?
temperature
feverTest
hasFever
fever

hasFever

Of the following variable names, which is the best one for keeping track of whether an integer might be prime or not?
divisible
isPrime
mightBePrime
number

mightBePrime

Share This
Flashcard

More flashcards like this

NCLEX 10000 Integumentary Disorders

When assessing a client with partial-thickness burns over 60% of the body, which finding should the nurse report immediately? a) ...

Read more

NCLEX 300-NEURO

A client with amyotrophic lateral sclerosis (ALS) tells the nurse, "Sometimes I feel so frustrated. I can’t do anything without ...

Read more

NASM Flashcards

Which of the following is the process of getting oxygen from the environment to the tissues of the body? Diffusion ...

Read more

Unfinished tasks keep piling up?

Let us complete them for you. Quickly and professionally.

Check Price

Successful message
sending