Search Header Logo
Funcitons and while loop

Funcitons and while loop

Assessment

Presentation

Computers

University

Easy

Created by

Sandy BM

Used 7+ times

FREE Resource

13 Slides • 14 Questions

1

media

2

media

3

Open Ended

Question image

What subproblems do you identify in this problem?

4

Match

Write a mean function that receives 3 integers and returns the mean as a floating-point number.

Input

Process

Output

num1,num,num3

mean = (num1+num2+num3)/3

mean

5

media

6

Match

Write a dispersion function that receives the standard deviation as a floating-point number and displays a message indicating that "the dispersion is low" if the standard deviation is less than 3, that "the dispersion is moderate" if the standard deviation is greater than or equal to 3 and less than 6, and that "the dispersion is high" when the standard deviation is greater than or equal to 6.

Input

if std <3: "low"

elif std <=6: "moderate"

else: "high"

Output

std

Process

"low"/"moderate"/"high"

7

media

8

Match

Write a dispersion function that receives the standard deviation as a floating-point number and displays a message indicating that "the dispersion is low" if the standard deviation is less than 3, that "the dispersion is moderate" if the standard deviation is greater than or equal to 3 and less than 6, and that "the dispersion is high" when the standard deviation is greater than or equal to 6.

Input

if std <3: "low"

elif std < 6: "moderate"

else: "high"

Output

std

Process

"low"/"moderate"/"high"

9

Open Ended

Write a dispersion function that receives the standard deviation as a floating-point number and displays a message indicating that "the dispersion is low" if the standard deviation is less than 3, that "the dispersion is moderate" if the standard deviation is greater than or equal to 3 and less than 6, and that "the dispersion is high" when the standard deviation is greater than or equal to 6.

10

Match

Design an algorithm that, given 3 numbers, calculates the mean, standard deviation, and indicates whether the data dispersion is low (less than 3), moderate (greater than or equal to 3 and less than 6), or high (greater than or equal to 6).

num1,num2,num3

Calculate the mean, calculate standard deviation, calculate dispersion

mean, standard deviation, dispersion message

Input

Process

Output

11

Open Ended

Design an algorithm that, given 3 numbers, calculates the mean, standard deviation, and indicates whether the data dispersion is low (less than 3), moderate (greater than or equal to 3 and less than 6), or high (greater than or equal to 6).

12

media

13

media

14

media

15

Draw

error
?

16

media

17

Dropdown

Question image
What does this loop do?​ ​ ​

18

Match

Design a function that, given two integers a and b, prints the values between a and b, incrementing by 3 if a is less than b, and by 4 if a is greater than b.

Input

Output

What is being repeated?

Where does it start?

Where does it end?

lower_l,upper_l

numerical sequence between a and b

Checking a<b and printing sequence

in a if a<b

or in b otherwise

in b if a<b

or in a otherwise

19

media

20

Open Ended

Question image

Complete the code so that it runs correctly, including the main() function and its call

21

Draw

Design a function that receives the upper and lower bounds of a closed range of integers and displays on the screen the numbers in this range that are simultaneously multiples of 5 and 7. For example, if the closed range with a lower bound of 35 and an upper bound of 140 is given as input, the output would be: 35, 70, 105, 140.

22

Open Ended

Question image

Complete the code so that it runs correctly, including the main() function and its call

23

Open Ended

Desing a function that reads strings until you read an “*”

24

media

25

media

26

media

27

media
media

Show answer

Auto Play

Slide 1 / 27

SLIDE