PETE 2061

PETE 2061

University

23 Qs

quiz-placeholder

Similar activities

Python workshop day2

Python workshop day2

University

20 Qs

kuiz phyton

kuiz phyton

University

25 Qs

Algo-Unlock

Algo-Unlock

University

20 Qs

python giber

python giber

University

21 Qs

Основы Python

Основы Python

University

19 Qs

Season 4 #Spaic Python Weekly Quiz

Season 4 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

Coding Vocabulary

Coding Vocabulary

University

21 Qs

Python 3

Python 3

University

21 Qs

PETE 2061

PETE 2061

Assessment

Quiz

Other

University

Easy

Created by

Norm Brown

Used 2+ times

FREE Resource

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)

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?