Search Header Logo

PETE 2061

Authored by Norm Brown

Other

University

Used 2+ times

PETE 2061
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

23 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec β€’ 1 pt

Which of the following statements is true?

The goal in approximation is to obtain a value that is exactly equal to a true value

Fitting a decline curve model to the observed production rate in the field is an example of approximation

A plot of observed (or historical) production rates versus time is an example of an approximation


All of the above

None of the above

2.

MULTIPLE CHOICE QUESTION

30 sec β€’ 1 pt

Which of the following statements is true?

Accuracy is the measure of how closely a value agrees with a true value, while precision refers to how any two values or approximations agree with each other.

Precision refers to how closely a value agrees with a true value.

Accuracy refers to how any two values or approximations agree with each other.

All of the above

None of the above

3.

MULTIPLE CHOICE QUESTION

30 sec β€’ 1 pt

Which of the following Python codes DOES NOT convert from a Python data type to an integer?

y = int(100.0)

b = 3.3
b = int(b)

z = float(10)

x = int(10.3)

a = int("1.3")

4.

MULTIPLE CHOICE QUESTION

30 sec β€’ 1 pt

Which of the following will read in an input as a string and convert the string into a real number?


myInputNumber = input("Enter a number")
myInputNumber = int(myInputNumber)

myInputNumber = input("Enter a number")
myInputNumber = float(myInputNumber)

myInputStr = input("Enter a number")
myInputNumber = int(myInputStr)

myInputStr = input()
myInputNumber = int(myInputNumber)

myInputStr = input()
myInputNumber = str(myInputStr)

5.

MULTIPLE CHOICE QUESTION

30 sec β€’ 1 pt

Which of the following Python codes will fail with a syntax error?

import math

x = 2.0

y = math.exp(x)

import math as mt

x = 2.0

y = mt.exp(x)

import numpy as np

x = 2.0

y = np.exp(x)

import math as mat

x = 2.0

y = mat.exp(x)

import math

x = 2.0

y = mt.exp(x)

6.

MULTIPLE CHOICE QUESTION

30 sec β€’ 1 pt

myStr = "123456789"

Given the Python code above, which of the following codes will display "34"?

print(myStr[3:4])

print(myStr[1:3])

print(myStr[2:4])

print(myStr[2:3])

print(myStr[3:5])

7.

MULTIPLE CHOICE QUESTION

30 sec β€’ 1 pt

legends = ["Kareem", "MJ", "LeBron", "Kobe", "Shaq"]

Given the Python code above, which of the following codes will display ["MJ", "LeBron", "Kobe"]?

print(legends[2:])

print(legends[2:5])

print(legends[:])

print(legends[1:-1])

print(legends)

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?