Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 2 out of 8 pages
Exam (elaborations)

TAMU ENGR 102 (python coding) - Exam Questions Answered Correctly 100% Guaranteed Success Latest Update 2025

Document preview thumbnail
Preview 2 out of 8 pages

TAMU ENGR 102 (python coding) - Exam Questions Answered Correctly 100% Guaranteed Success Latest Update 2025 x += c - Answers x = x + c a -= 3 - Answers a = a - 3 x *= 4 - Answers x = x * 4 y /= 3 - Answers y = y / 3 what are some different types of variables? - Answers Integers, Floating-Point, Strings, Booleans what is an integer? - Answers whole numbers, no decimals/fractions what are floating-point numbers? - Answers numbers with a decimal point what is boolean? - Answers single value either true or false what are strings? - Answers way of describing text (you can use either single quotes or double quotes) float(3) - Answers value becomes 3.0 int(4.9) - Answers has the value 4 str(10*1.0) - Answers has the value '10.0' what is the boolean value of true/false? - Answers true is assumed to have the value 1 false is assumed to have the value 0 x = 3 y = 4 print(str(x) + ':' + str(y)) - Answers 3:4 how to ask the user for input? - Answers x = float(input()) == - Answers equal to != - Answers inequality a = 10 b = 10 c = 20 d = ((ab) and (b=c)) or (not((((c=a+b) and (a==10)) or ((b==10) and c!=10)))) print(d) - Answers false temperature = 100 is_hot = (temperature 85) if is_hot: print("It's hot") if not is_hot: print("It's not hot") - Answers It's hot when to use if-elif-else statements? - Answers when you have multiple "cases" of the same type when to use nested statements? - Answers when there is a clear "order" of checks: checking A then B what is the "while" statement? - Answers creates a loop and will repeat a set of instructions infinitely until the condition is false. while condition: things to do a = 0 while a == 0: print("About to change a") a = 1 print("Changing a back to 0") a = 0 - Answers About to change a Changing a back to 0 About to change a Changing a back to 0 ... (an infinite loop) what is the for loop designed to do? - Answers to perform specific statements for a determined number of iterations

Content preview

TAMU ENGR 102 (python coding) - Exam Questions Answered Correctly 100% Guaranteed Success
Latest Update 2025

x += c - Answers x = x + c

a -= 3 - Answers a = a - 3

x *= 4 - Answers x = x * 4

y /= 3 - Answers y = y / 3

what are some different types of variables? - Answers Integers, Floating-Point, Strings, Booleans

what is an integer? - Answers whole numbers, no decimals/fractions

what are floating-point numbers? - Answers numbers with a decimal point

what is boolean? - Answers single value either true or false

what are strings? - Answers way of describing text (you can use either single quotes or double quotes)

float(3) - Answers value becomes 3.0

int(4.9) - Answers has the value 4

str(10*1.0) - Answers has the value '10.0'

what is the boolean value of true/false? - Answers true is assumed to have the value 1

false is assumed to have the value 0

x=3

y=4

print(str(x) + ':' + str(y)) - Answers 3:4

how to ask the user for input? - Answers x = float(input())

== - Answers equal to

!= - Answers inequality

a = 10

b = 10

c = 20

d = ((a>b) and (b<=c)) or (not((((c<=a+b) and (a==10)) or ((b==10) and c!=10))))

, print(d) - Answers false

temperature = 100

is_hot = (temperature > 85)

if is_hot:

print("It's hot")

if not is_hot:

print("It's not hot") - Answers It's hot

when to use if-elif-else statements? - Answers when you have multiple "cases" of the same type

when to use nested statements? - Answers when there is a clear "order" of checks: checking A then B

what is the "while" statement? - Answers creates a loop and will repeat a set of instructions infinitely
until the condition is false.

while <condition>:

<things to do>

a=0

while a == 0:

print("About to change a")

a=1

print("Changing a back to 0")

a = 0 - Answers About to change a

Changing a back to 0

About to change a

Changing a back to 0

... (an infinite loop)

what is the for loop designed to do? - Answers to perform specific statements for a determined number
of iterations

sum = 0

Document information

Uploaded on
February 10, 2025
Number of pages
8
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers
$9.49

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
TutorJosh
3.4
(74)
Sold
481
Followers
16
Items
32590
Last sold
3 days ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions