GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

Author Archives: Anonymous

Solve the system of equations.  Be sure to write ALL answers…

Solve the system of equations.  Be sure to write ALL answers as ORDERED PAIRS!!!! MUST SHOW WORK ON PAPER.

Read Details

Choose the correct way to access value 20 from the following…

Choose the correct way to access value 20 from the following tuple aTuple = (“Orange”, [10, 20, 30], (5, 15, 25))

Read Details

Select the correct option to join two lists in Python listOn…

Select the correct option to join two lists in Python listOne = [‘a’, ‘b’, ‘c’, ‘d’] listTwo = [‘e’, ‘f’, ‘g’]

Read Details

What is the missing function name so that the output is: Cai…

What is the missing function name so that the output is: Cairo New York Paris Sydney? cities = [‘Sydney’, ‘Paris’, ‘New York’, ‘Cairo’]for c in _____(cities): print(c, end=’ ‘)

Read Details

How many times will the body of the loop be executed? numbe…

How many times will the body of the loop be executed? number = 70guess = 55while number != guess: if number > guess: guess = guess + 10 else: guess = guess – 1print(‘The number is:’, guess)

Read Details

What is output? new_string = ‘One giant leap for mankind’pr…

What is output? new_string = ‘One giant leap for mankind’print(new_string[0:6])

Read Details

What is a possible output? rentals = { ‘skis’ : 20.00, ‘boo…

What is a possible output? rentals = { ‘skis’ : 20.00, ‘boots’ : 10.00, ‘skates’ : 4.00}for x in rentals: print(x, end=’ ‘)

Read Details

Which correctly calls the add() function? def add(a, b, c):…

Which correctly calls the add() function? def add(a, b, c): print(a + b + c)

Read Details

Consider the list my_list = [‘www’, ‘python’, ‘org’] . Choos…

Consider the list my_list = [‘www’, ‘python’, ‘org’] . Choose the option that returns ‘www.python.org’ as the value to my_string.

Read Details

In the following code, the variable val is the function call…

In the following code, the variable val is the function call’s _____. def print_square_area(size): area = size * size print(“A square of size {} has area {}”.format(size, area))val = float(input(‘Enter size of square: ‘))print_square_area(val)

Read Details

Posts pagination

1 2 3 … 90,825 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top