(Comprehensive Final Exam Study Guide for CSCI 1300 - Exam 1: 2026 Questions and Answers)
Terms in this set (37)
How are fractions represented in a computer and how By IEE floating point representation and 32 or 64 bits
bits are required
What are the Python class names for string, integer, str, int, float, bool
floating point, and boolean?
What is not a valid python name anything that starts with a number or has the - character
4 + 6.0 10.0
15 // 2 7
3.0
x=3 True
y=5
x<y
3/30/2026, 5:31:26 PM 3/30/2026, 5:31:25 PM 3/30/2026, 5:31:22 PM
, (Comprehensive Final Exam Study Guide for CSCI 1300 - Exam 1: 2026 Questions and Answers)
a = ( x !=y) False
b = (x == y)
a and b
x=3 True
y=5
a = ( x !=y)
b = (x == y)
a or b
x=3 False
y=5
a = ( x !=y)
b = (x == y)
not a
15 % 2 1
what does % return the remaining value
3/30/2026, 5:31:26 PM 3/30/2026, 5:31:25 PM 3/30/2026, 5:31:22 PM
Terms in this set (37)
How are fractions represented in a computer and how By IEE floating point representation and 32 or 64 bits
bits are required
What are the Python class names for string, integer, str, int, float, bool
floating point, and boolean?
What is not a valid python name anything that starts with a number or has the - character
4 + 6.0 10.0
15 // 2 7
3.0
x=3 True
y=5
x<y
3/30/2026, 5:31:26 PM 3/30/2026, 5:31:25 PM 3/30/2026, 5:31:22 PM
, (Comprehensive Final Exam Study Guide for CSCI 1300 - Exam 1: 2026 Questions and Answers)
a = ( x !=y) False
b = (x == y)
a and b
x=3 True
y=5
a = ( x !=y)
b = (x == y)
a or b
x=3 False
y=5
a = ( x !=y)
b = (x == y)
not a
15 % 2 1
what does % return the remaining value
3/30/2026, 5:31:26 PM 3/30/2026, 5:31:25 PM 3/30/2026, 5:31:22 PM