42
ET156 – Introduction to C Programming

Topic Reviews For Unit 5 - 6

Embed Size (px)

DESCRIPTION

ET156 – Introduction to C Programming. Topic Reviews For Unit 5 - 6. Loop Review. The statements within a while loop execute until the loop repetition condition becomes false and might never execute. Loop Review. Loop Review. - PowerPoint PPT Presentation

Citation preview

Page 1: Topic Reviews For  Unit 5 - 6

ET156 – Introduction to C Programming

Page 2: Topic Reviews For  Unit 5 - 6

Loop Review

The statements within a while loop execute until the loop repetition condition becomes false and might never execute.

Page 3: Topic Reviews For  Unit 5 - 6

Loop Review

Page 4: Topic Reviews For  Unit 5 - 6

Loop Review

A variable used to store a value being computed in increments during a loop’s execution is called an accumulator.

Page 5: Topic Reviews For  Unit 5 - 6

Loop Review

A for loop can either increment or decrement the loop control variable’s value by any

value.

Page 6: Topic Reviews For  Unit 5 - 6

Loop Review

Page 7: Topic Reviews For  Unit 5 - 6

Loop Review

You want to write a program that prompts the user for a value until the user enters -1.

This is an example of a sentinel-controlled loop.

Page 8: Topic Reviews For  Unit 5 - 6

Loop Review

Page 9: Topic Reviews For  Unit 5 - 6

Loop Review

What type of loop always executes at least once?

a. Sentinel-controlled loopb. For loopc. Do-while loopd. Counter-controlled loop

Page 10: Topic Reviews For  Unit 5 - 6

Loop Review

Page 11: Topic Reviews For  Unit 5 - 6

Pointers

A variable that has a memory address as its value is called a pointer.

Page 12: Topic Reviews For  Unit 5 - 6

Process Flow

The process of testing flow of control between a main function and its subordinate functions is called top-down testing.

Page 13: Topic Reviews For  Unit 5 - 6

Integers

Loss of accuracy due to round-off errors may occur when performing mathematical operators with integer values.

a. Trueb. False

Page 14: Topic Reviews For  Unit 5 - 6

ASCII codes

Which of the following characters has the lowest valued ASCII character code?

a. X b. ac. A d. 6

Page 15: Topic Reviews For  Unit 5 - 6

ArraysThe subscript of the first

element in an array is 0.

The Eight Elements of Array x

Page 16: Topic Reviews For  Unit 5 - 6

1-16

Figure 8.2 Arrays answer and score

Page 17: Topic Reviews For  Unit 5 - 6

1-17

Figure 8.3 Program to Print a Table of Differences

Page 18: Topic Reviews For  Unit 5 - 6

1-18

Figure 8.3 Program to Print a Table of Differences (cont’d)

Page 19: Topic Reviews For  Unit 5 - 6

Functions and arrays

A function’s return type cannot be an array.

Page 20: Topic Reviews For  Unit 5 - 6

Function fill_array

Page 21: Topic Reviews For  Unit 5 - 6

Parallel Arrays

You need to store the average rainfall, high temperature, and low temperature for each day in

the year. Average rainfall must be stored as a double. Temperatures must be stored as integers. What type of data structure could you use?

a. Enumerationb. Multidimensional arrayc. Parallel arraysd. Stack

Page 22: Topic Reviews For  Unit 5 - 6

Function to Add Two Arrays

Page 23: Topic Reviews For  Unit 5 - 6

1-23

Function Data Areas for add_arrays(x, y, x_plus_y, 5);

Page 24: Topic Reviews For  Unit 5 - 6

Stacks

When using a stack, all new elements are added to the top of the stack.

Only the top element can be removed from the stack.

Page 25: Topic Reviews For  Unit 5 - 6

Arrays and Flags

A program sets a flag within a loop to indicate when an element has been found in an array. This program is performing a linear search.

Page 26: Topic Reviews For  Unit 5 - 6

All elements in a multidimensional array have the same data type.

Page 27: Topic Reviews For  Unit 5 - 6

int i = 0;myArray[]= {2, 4, 6, 8, 10, 12, 14, 16, 18, 20}while (i < 10){

printf("%d, " myArray[i]);}

Copy this code. What changes are needed to make it work.

The way that it is written, the value 2 will be output infinitely.

Page 28: Topic Reviews For  Unit 5 - 6

What will be the value of y after the following code executes?

int x = 0, n = 2;do

{x *= n + 1;n++;

}while (n < 10);

a. 0 b. 1c. 10 d. 11

Page 29: Topic Reviews For  Unit 5 - 6

You want to write a program that will loop until an event occurs. This is an example of ________________.

a. an accumulator-controlled loop

b. a conditional loop

c. a counter-controlled loop

d. a sentinel-controlled loop

Page 30: Topic Reviews For  Unit 5 - 6

What type of loop always executes at least once?a. Sentinel-controlled loopb. For loopc. Do-while loopd. Counter-controlled loop

A variable that stores a 1 or 0 that is used to indicate whether an

event hasoccurred or not is called?

a. an accumulatorb. a flagc. an increment operatord. a sentinel value

Page 31: Topic Reviews For  Unit 5 - 6

What will be the value of y after the following code executes?

int x = 0, n = 2;

do

{

x *= n + 1;

n++;

}while (n < 10);

 a. 0 b. 1 c. 10 d. 11

Page 32: Topic Reviews For  Unit 5 - 6

What will be the value of x after executing the following code? int i, j, x=0;

for (i=0; i< 3; ++i){

for(j=1; j< 2; ++j){x += i * j;}

}a. 0 b. 3 c. 6 d. 9

Page 33: Topic Reviews For  Unit 5 - 6

Assume that age = 18. What will be the output of the following code?

switch (age) {

case 16:

case 17:

printf("Old enough to drive/n");

case 18:

case 19:

case 20:

printf("Old enough to vote/n");

case 21:

printf("Old enough to drink/n");

}

 

a. Nothingb. Old enough to votec. Old enough to vote Old enough to drinkd. Old enough to drive Old enough to vote Old enough to drink

Page 34: Topic Reviews For  Unit 5 - 6

Assume that price = $4.00. What would be the value of total after executing the following code?

if (price > 100)

shipping = 20;

else if (price < 50)

shipping = 10;

else if (price < 5)

shipping = 0;

 if (price > 10)

tax = price * 0.5;

else

tax = price * 0.1;

total = price + tax + shipping;

a. 14.20b. 14.04c. 4.20d. 4.04

Page 35: Topic Reviews For  Unit 5 - 6

a. 0 1 8 27 64 b. 0 1 8 27 64 125c. 0.0 0.0 0.0 0.0 0.0 d. No output

What will the output be when the following code executes?

#define SIZE 5

int main(void)

{ int cubes, i;

for (i=0; i<SIZE; ++i)

{

cubes = i * i * i;

printf(“%f “, cubes);

}

}

Page 36: Topic Reviews For  Unit 5 - 6

a. 1, 2, 3, 4, 5, 6, 7, 8, 9b. 1, 2, 3, 4, 5, 6, 7, 8, 9, 10c. No values will be output.d. The value 0 will be output infinitely.

What will be the output when the code below executes?int i = 0;while (i < 10){ printf(" The value of i is: %d”, i);} 

Page 37: Topic Reviews For  Unit 5 - 6

You want to write a program that prompts the user for a value until the user enters -1. This is an example of ________________.

a. an accumulator-controlled loopb. a conditional loopc. a counter-controlled loopd. a sentinel-controlled loop

Page 38: Topic Reviews For  Unit 5 - 6

A for loop _________________________________.a. will never result in an infinite loopb. increases the loop control variable’s value by 1 with every executionc. can increment the loop control variable’s value by any positive incrementd. can either increment or decrement the loop control variable’s value byany value

Page 39: Topic Reviews For  Unit 5 - 6

A variable used to store a value being computed in increments during a loop’s execution is called _____________________.

a. an accumulator

b. a flag

c. an increment operator

d. a sentinel value

Page 40: Topic Reviews For  Unit 5 - 6

The statements within a while loop execute _________________________.

a. at least once and continue executing until the loop repetition conditionbecomes trueb. at least once and continue executing until the loop repetition conditionbecomes falsec. until the loop repetition condition becomes false and might neverexecuted. until the loop repetition condition becomes true and might neverexecute

Page 41: Topic Reviews For  Unit 5 - 6

The controlling expression for a switch statement can be of type

___________.

a. int, char, or double

b. int or double

c. int or char

d. char or double

Page 42: Topic Reviews For  Unit 5 - 6

Using nested if statements is more efficient than using a sequence of if statements.

a. True

b. False