logo

Crowdly

Browser

Add to Chrome

CS 1101-01 Programming Fundamentals - AY2026-T1

Looking for CS 1101-01 Programming Fundamentals - AY2026-T1 test answers and solutions? Browse our comprehensive collection of verified answers for CS 1101-01 Programming Fundamentals - AY2026-T1 at my.uopeople.edu.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

String

objects are modified with string slices.

0%
0%
View this question
The elements of a list are immutable.
0%
0%
View this question
Functions can only return boolean expressions.
0%
0%
View this question

The operands of the logical operators should be boolean expressions, but Python is not very strict. Any nonzero number is interpreted as True.

100%
0%
View this question
A stack diagram shows the value of each variable and the function to which each variable belongs.
100%
0%
View this question
What output will the following Python 3 program produce?

n = 10

while n != 1:

    print(n,)

    if n % 2 == 0: # n is even

        n = n / 2

    else: # n is odd

        n = n * 3 + 1

100%
0%
0%
0%
View this question

What is the value of the variable index after the Python code below is executed?

 

word = 'bAnana'

index = word.find('a')

0%
0%
100%
0%
0%
View this question

What is the return type of the Python function shown below?

isinstance(10.001, float)

0%
0%
0%
100%
0%
View this question
A development approach that is intended to avoid a lot of debugging by only adding and testing small amounts of code at a time is called:
0%
0%
0%
0%
View this question

What is the

output of the following Python program?

pi

= int(3.14159)

print

(pi)

0%
0%
0%
0%
View this question

Want instant access to all verified answers on my.uopeople.edu?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome