Removal - Part 1

Removal - Part 1

University

20 Qs

quiz-placeholder

Similar activities

קלט פלט משתנים והוראות השמה

קלט פלט משתנים והוראות השמה

7th Grade - University

20 Qs

Midterm_20250418

Midterm_20250418

University

20 Qs

Chapter 2 Quiz

Chapter 2 Quiz

University

24 Qs

CodeHS - Intro to Python - Basics and Console Interaction

CodeHS - Intro to Python - Basics and Console Interaction

9th Grade - Professional Development

20 Qs

DWEC 1EV

DWEC 1EV

12th Grade - University

20 Qs

python_4_Vivek

python_4_Vivek

University

20 Qs

BASIC C PROGRAMMING

BASIC C PROGRAMMING

University

15 Qs

Pyspark MLib

Pyspark MLib

University

20 Qs

Removal - Part 1

Removal - Part 1

Assessment

Quiz

Computers

University

Hard

Created by

Janeth Ugang

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Analyze this problem:

The teller wants to compute the total price of every item. As a programmer, you will ask the teller to input the item code, unit price, and quantity.  Compute and display the total price.

Question: How many inputs are there?

 

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Analyze this problem:

The teller wants to compute the total price of every item. As a programmer, you will ask the teller to input the item code, unit price, and quantity.  Compute and display the total price.

Question: What is the formula in computing the total price?

 

totalPrice=unitPrice*quantity

totalPrice*=unitPrice*quantity

totalPrice=unitPrice+quantity

totalPrice+=unitPrice+quantity

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Analyze this problem:

The teller wants to compute the total price of every item. As a programmer, you will ask the teller to input the item code, unit price, and quantity.  Compute and display the total price.

Question: How many output(s) is/are there?

 

0

1

2

3

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Analyze this problem:

The teller wants to compute the total price of every item. As a programmer, you will ask the teller to input the item code, unit price, and quantity.  Compute and display the total price.

Question: Which of the following is an incorrect statement to input the quantity?

 

quantity=int(input("Quantity: "))

quantity=int(input("Qty: "))

quantity=int(input())

quantity=int(input("Enter quantity: ")

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Analyze this problem:

The teller wants to compute the total price of every item. As a programmer, you will ask the teller to input the item code, unit price, and quantity.  Compute and display the total price.

Question: Which of the following is an incorrect statement to display the total price?

print(totalPrice)

print("Total:", totalPrice)

print(Total = totalPrice)

print("totalPrice", totalPrice)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Analyze this problem:

Input 100 persons ages and store them in an array. Count how many persons are young (age below 18), adult (age between 18 to 59), and senior citizens (age at least 60).  Display the results.

Question:  How many inputs are there?

3

4

99

100

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Analyze this problem:

Input 100 persons ages and store them in an array. Count how many persons are young (age below 18), adult (age between 18 to 59), and senior citizens (age at least 60).  Display the results.

Question:  Which of the statements below will determine if the person is adult?

age > 18 || age < 60

age >= 18 || age < 60

age > 18 and age < 60

age >= 18 and age < 60

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?