CS 1400 FINAL EXAM PRACTICE QUESTIONS WITH
VERIFIED ANSWERS
Which of the following is something Hadi Parovi states?
Trucking is one of the few jobs that will not be made obsolete by technology
Students should start learning to program in High school
Everyone should learn computer science
Everyone should become a computer scientist/programmer - Answers - Everyone
should learn computer science
What was the name of the first computer programmer?
Ada Lovelace
Grace Hopper
Leonardo da Vinci
Alan Turing - Answers - Ada Lovelace
Computer Science and Computer Programming are the same thing.
True or False - Answers - False
What is the language called that a computer can understand?
Python
Interpreted
C++
Machine Language - Answers - Machine Language
What is the name of the program that runs programs written in the python language?
pyrun
javac
python
Pycharm - Answers - python
What does IDE stand for?
Instructions and Data Executor
Integrated Data Execution
Integrated Development Environment
Interactive Development Execution - Answers - Integrated Development Environment
, When I am writing a program I can also say that I am ______. Then when I run my
program I can say my program is _________. _____ is what my program displays to the
user - Answers - Coding
executing
output
print() is an example of a what?
Argument
Parameter
Language
Function - Answers - Function
What is true about python functions? (select all that apply)
Parentheses are usually used, but not always
They are case sensitive
The name must be spelled exactly right
Parameters may or may not be used - Answers - They are case sensitive
The name must be spelled exactly right
Parameters may or may not be used
Code:
print("13 + 7")
Output: - Answers - 13 + 7
What is a statement?
One function
A single line of code
The entire code file
One or multiple lines of code that are related - Answers - One or multiple lines of code
that are related
What is the name for a set of code someone has written that can be used by others? It
is sometimes called a library as well
Package
Set
Folder
Module - Answers - Package
In order to use something from a package we ______ a ______ into our program. This
is done at the top of the file. - Answers - import
module
VERIFIED ANSWERS
Which of the following is something Hadi Parovi states?
Trucking is one of the few jobs that will not be made obsolete by technology
Students should start learning to program in High school
Everyone should learn computer science
Everyone should become a computer scientist/programmer - Answers - Everyone
should learn computer science
What was the name of the first computer programmer?
Ada Lovelace
Grace Hopper
Leonardo da Vinci
Alan Turing - Answers - Ada Lovelace
Computer Science and Computer Programming are the same thing.
True or False - Answers - False
What is the language called that a computer can understand?
Python
Interpreted
C++
Machine Language - Answers - Machine Language
What is the name of the program that runs programs written in the python language?
pyrun
javac
python
Pycharm - Answers - python
What does IDE stand for?
Instructions and Data Executor
Integrated Data Execution
Integrated Development Environment
Interactive Development Execution - Answers - Integrated Development Environment
, When I am writing a program I can also say that I am ______. Then when I run my
program I can say my program is _________. _____ is what my program displays to the
user - Answers - Coding
executing
output
print() is an example of a what?
Argument
Parameter
Language
Function - Answers - Function
What is true about python functions? (select all that apply)
Parentheses are usually used, but not always
They are case sensitive
The name must be spelled exactly right
Parameters may or may not be used - Answers - They are case sensitive
The name must be spelled exactly right
Parameters may or may not be used
Code:
print("13 + 7")
Output: - Answers - 13 + 7
What is a statement?
One function
A single line of code
The entire code file
One or multiple lines of code that are related - Answers - One or multiple lines of code
that are related
What is the name for a set of code someone has written that can be used by others? It
is sometimes called a library as well
Package
Set
Folder
Module - Answers - Package
In order to use something from a package we ______ a ______ into our program. This
is done at the top of the file. - Answers - import
module