Package deal
CS 1101 Bundled Exams Questions and Answers Latest Versions (2024/2025) (Complete and Accurate)
CS 1101 Bundled Exams Questions and Answers Latest Versions (2024/2025) (Complete and Accurate)
[Show more]CS 1101 Bundled Exams Questions and Answers Latest Versions (2024/2025) (Complete and Accurate)
[Show more]Computers and Programming 1: Starting 
out with Python- Chapter 1 Quiz 
Questions with Complete Solutions 
 
T/F: A software developer is the person with the training to design, create, and test computer 
programs. True 
 
T/F: A computer is a single device that performs different types of tasks for...
Preview 2 out of 11 pages
Add to cartComputers and Programming 1: Starting 
out with Python- Chapter 1 Quiz 
Questions with Complete Solutions 
 
T/F: A software developer is the person with the training to design, create, and test computer 
programs. True 
 
T/F: A computer is a single device that performs different types of tasks for...
CS 1101 Self-Quiz Unit 6 Latest Update 
 
Graded A+ 
 
A function that returns an integer value grater than 0 is called a boolean function. False 
 
Encapsulation is the process of wrapping a piece of code in a function True 
 
Encapsulation is the process of wrapping a piece of code in a function F...
Preview 1 out of 4 pages
Add to cartCS 1101 Self-Quiz Unit 6 Latest Update 
 
Graded A+ 
 
A function that returns an integer value grater than 0 is called a boolean function. False 
 
Encapsulation is the process of wrapping a piece of code in a function True 
 
Encapsulation is the process of wrapping a piece of code in a function F...
CS 1101 UNIT 2: Variables, Expressions, 
 
and Statements 100% Solved 
 
What output will the following python command produce: 
 
>>> print (1,000,000) 
Select one: 
a. 1,000 
b. 1,000,000 
c. 1 0 0 
 
d. Error invalid type The correct answer is: 1 0 0 
 
What output will the following pyt...
Preview 2 out of 9 pages
Add to cartCS 1101 UNIT 2: Variables, Expressions, 
 
and Statements 100% Solved 
 
What output will the following python command produce: 
 
>>> print (1,000,000) 
Select one: 
a. 1,000 
b. 1,000,000 
c. 1 0 0 
 
d. Error invalid type The correct answer is: 1 0 0 
 
What output will the following pyt...
CS 1101 Self Quiz 1 Latest Update 
 
Graded A+ 
 
Consider the following text from a Python interpreter. 
>>> print(2 + 2) 
4 
 
What is the text "4" called? 
Select one: 
a. a function 
b. an operator 
c. a prompt 
d. a statement 
 
e. a value e. a value 
 
What is python's response to ...
Preview 2 out of 14 pages
Add to cartCS 1101 Self Quiz 1 Latest Update 
 
Graded A+ 
 
Consider the following text from a Python interpreter. 
>>> print(2 + 2) 
4 
 
What is the text "4" called? 
Select one: 
a. a function 
b. an operator 
c. a prompt 
d. a statement 
 
e. a value e. a value 
 
What is python's response to ...
CS 1101 TRUE/FALSE LATEST 2024 
 
GRADED A+ 
 
Fortran language was designed to process business transactions FALSE 
 
The COBOL language was designed to solve business problems and was adapted to processing 
business transactions TRUE 
 
The C language was developed at Bell Labs with the objective ...
Preview 2 out of 8 pages
Add to cartCS 1101 TRUE/FALSE LATEST 2024 
 
GRADED A+ 
 
Fortran language was designed to process business transactions FALSE 
 
The COBOL language was designed to solve business problems and was adapted to processing 
business transactions TRUE 
 
The C language was developed at Bell Labs with the objective ...
CS1101 - Unit 5 Questions and Answers 
 
Already Passed 
 
What does function subroutine do? 
 
def subroutine( n ): 
while n > 0: 
print (n,) 
n -= 1 Counts from n down to 1 and displays each number 
 
What output will the following python command produce: 
 
>>> percentage = float ( 60...
Preview 2 out of 5 pages
Add to cartCS1101 - Unit 5 Questions and Answers 
 
Already Passed 
 
What does function subroutine do? 
 
def subroutine( n ): 
while n > 0: 
print (n,) 
n -= 1 Counts from n down to 1 and displays each number 
 
What output will the following python command produce: 
 
>>> percentage = float ( 60...
CS 1101 Self-Quiz Unit 4 with Verified 
 
Solutions 
 
One of the advantages of a function is that it allows the programmer to alter the flow of 
execution in the program. False 
 
A stack diagram shows the value of each variable and the function to which each variable 
belongs. True 
 
True or Fals...
Preview 2 out of 6 pages
Add to cartCS 1101 Self-Quiz Unit 4 with Verified 
 
Solutions 
 
One of the advantages of a function is that it allows the programmer to alter the flow of 
execution in the program. False 
 
A stack diagram shows the value of each variable and the function to which each variable 
belongs. True 
 
True or Fals...
Uopeople Week 7 CS 1101 Self-Quiz 
 
Rated A+ 
 
Python dictionaries are mutable 
true 
Which of the following types are allowed for Python dictionary values? 
a. dictionary 
b. list 
c. list of dictionaries 
d. tuple 
e. All of the above 
 
e. All of the above 
If you use a Python dictionary in a f...
Preview 1 out of 3 pages
Add to cartUopeople Week 7 CS 1101 Self-Quiz 
 
Rated A+ 
 
Python dictionaries are mutable 
true 
Which of the following types are allowed for Python dictionary values? 
a. dictionary 
b. list 
c. list of dictionaries 
d. tuple 
e. All of the above 
 
e. All of the above 
If you use a Python dictionary in a f...
CS1101 Unit 7 Questions with Verified 
 
Answers 
 
A data type in which the values are made up of components, or elements, that are themselves 
values is known as an object data type. False 
 
Given any real numbers a and b, exactly one of the following relations holds: a < b, a > b, or a = 
...
Preview 2 out of 5 pages
Add to cartCS1101 Unit 7 Questions with Verified 
 
Answers 
 
A data type in which the values are made up of components, or elements, that are themselves 
values is known as an object data type. False 
 
Given any real numbers a and b, exactly one of the following relations holds: a < b, a > b, or a = 
...
CS 1101 Questions and Answers with 
 
Verified Solutions 
 
Expressions evaluate to either true or false. What will the output of the following code be when 
the expression "Ni!" is evaluated? 
 
if "Ni!": 
print ('We are the Knights who say, "Ni!"') 
else: 
print ("Stop it! No more of this...
Preview 4 out of 93 pages
Add to cartCS 1101 Questions and Answers with 
 
Verified Solutions 
 
Expressions evaluate to either true or false. What will the output of the following code be when 
the expression "Ni!" is evaluated? 
 
if "Ni!": 
print ('We are the Knights who say, "Ni!"') 
else: 
print ("Stop it! No more of this...
CS 1101 Questions and Answers Already 
 
Graded A 
 
In the following segment of Python code, what do we call the portion of the statement that 
follows the dot('.capitalize')? 
alize('maryland') 
a. Module 
b. Method 
c. Attribute 
 
d. Function name b. Method 
 
Assume that d is a Python dicti...
Preview 2 out of 6 pages
Add to cartCS 1101 Questions and Answers Already 
 
Graded A 
 
In the following segment of Python code, what do we call the portion of the statement that 
follows the dot('.capitalize')? 
alize('maryland') 
a. Module 
b. Method 
c. Attribute 
 
d. Function name b. Method 
 
Assume that d is a Python dicti...
CS 1101: Programming Fundamentals 
Questions with Verified Solutions 
 
Consider the following Python program. 
 
fin = open('') 
for line in fin: 
word = () 
print(word) 
 
What does the program loop over? 
 
a. Lines in a file 
b. Lines in a list 
c. Words in a dictionary 
d. Words in a list 
 
...
Preview 4 out of 71 pages
Add to cartCS 1101: Programming Fundamentals 
Questions with Verified Solutions 
 
Consider the following Python program. 
 
fin = open('') 
for line in fin: 
word = () 
print(word) 
 
What does the program loop over? 
 
a. Lines in a file 
b. Lines in a list 
c. Words in a dictionary 
d. Words in a list 
 
...
CS 1101 Programming Fundamentals 
Final Exam Review with Complete 
 
Solutions 
 
What output will the following Python program produce? 
 
n = 10000 
count = 0 
while n: 
 
count = count + 1 
n = n / 10 
n=int(n) 
print(count) 5 
 
What output will the following Python commands produce? 
 
>>...
Preview 3 out of 24 pages
Add to cartCS 1101 Programming Fundamentals 
Final Exam Review with Complete 
 
Solutions 
 
What output will the following Python program produce? 
 
n = 10000 
count = 0 
while n: 
 
count = count + 1 
n = n / 10 
n=int(n) 
print(count) 5 
 
What output will the following Python commands produce? 
 
>>...
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Stuvia is a marketplace, so you are not buying this document from us, but from seller StellarScores. Stuvia facilitates payment to the seller.
No, you only buy these notes for CA$34.09. You're not tied to anything after your purchase.
4.6 stars on Google & Trustpilot (+1000 reviews)
75632 documents were sold in the last 30 days
Founded in 2010, the go-to place to buy study notes for 14 years now