Comp Sci General Questions Flashcards
Python programs are…
Interpreted
Python is Case Sensitive…
True or False
True
PyCharm would be described as a…
A. Intergrated development
IDE(Integrated Development Environment)
How would you convert the string a = “HELLO” to lower case?
a) a.lower()
b) lower(a)
c) recase(a, TO_LOWER)
d) a.recase(TO_LOWER)
a.lower()
What would be the best way to find the length of the string a?
a) len(a)
b) a.length()
c) a[*]
d) Count each character
len(a)
What is the correct way to create a comment in Python?
a) // My comment
b) # My comment
c) /* My comment */
My comment
This is called
(2+3) == 2**(3)
Logical Expression
Which of the following is not a control statement in loops?
a) break
b) end
c) continue
d) none of the above
e) all of the above
end
In Python, what is the primary purpose of the “continue” keyword within a loop?
To skip the current iteration of the loop and move to the next one
What does the keys() method do?
Returns the keys in a dictionary as a list
What is the correct way to open the file grades.tsv for reading?
file = open(“grades.tsv”, “r”)
What is the correct way to read one full line from the already open file?
line = file.readline()
When reading a file, what will the readlines() method return when you reach the end of the file?
It will return an empty string(“”)
What should you do when you are done reading or writing a file?
Close the file wirh the .close() method
What does sep= method do?
Seperates the strings or lists with a new line or tab
How would you remove the extra spaces in the strings and convet the integers and floats correctly?
Use the .strip() to remove spaces and int() or float() to covert the strings
What does this method do?
lst = sorted(my_set, reverse=True)
Create a list from the following set sorted in decending order
What does lambda mean?
Used as an anonymous function inside another function. Can take any number of arguments, but only have one the expression
What does the union() method do?
Will return what both sets have
What does the difference() method do?
Will return what each set does not have
What does the intersection() method do?
Will get the common values that both sets has
What is the issuperset() method?
Returns turn if all items in the specified set exists in the original set
What is the issubset() method?
Returns True if all items in a set exists in the specified set, otherwise returns false
What is the order of the ouput of the following program?
nums = {5, 9, 2, 0, 1, 3, 4}
print(nums)
Sets are unordered, the order of the ouput is implementation dependent
What is the name of the constructor method in Python class?
__init__()
What is an instance variable in Python?
A variable defined inside a class to specific to each instance
In python, a function within a class definion is called a
method
Why is self used as the first parameter in class methods?
It is automatically assigned to the instance calling the method
True or False.
To divide 2 integers to get an integer result, you can use %%
False
What is a way to write counter = counter + 1?
counter += 1
What is the main purpose of the “break” function?
To terminate the loop and exit it prematurely
What does the term variable scope mean?
The portion of code where a variable can be accessed and modified.
def is_mutiple(n):
if n % 7 == 0:
return n
elif n % 3 == 0:
return -1
elif n % 2 == 1:
return True
else:
return False
a) -1
b) False
c) 21
d) True
c) 21
True or False.
The keys() method in Python returns the keys of a dictionary as list.
True
True or False
Lists in Python can contain elements of different data types.
True
What will this method do?
print(my_dct[:-2])
It will print out all the elemets except the last 2
True or False.
Dictionaries are always of a fixed sixed and cannot be changed.
False
True or False.
In Python dictionaries, keys must be unique, but values can be duplicated.
True
What does this method do?
print(prices[1][2])?
It will access the dictionary full of lists. Then it will access the first list and then acess the second element.
What will this line do?
return None
None
Power supply, motherboard and CPU are examples of:
A) Inputs and Outputs
B) Internal Components
C) Memory
D) Storage
E) None of the above
Internal components
The speed of the CPU is measured in:
A) Byte
B) Bit
C) Hz (Hertz)
D) None of the above
Hetz(Hz)
True or False.
Hard Disk (HDD) and solid state drive (SSD) are
examples of non-volatile storage
True
Which of the following is NOT an example of cloud
storage.
A) DropBox
B) iCloud
C) Solid State Drive
D) Google Drive
Solid State Drive
In computers, data is represented using
A) 0 , 1
B) 10 , 2
C) 0, 1, 10
D) 0, 1, 10, 2
0, 1
What is the representation used in X and Y
X = 1010 Y=1110
A) Both are Binary
B) Both are Decimal
C) X is Binary and Y is Decimal
D) Y is Binary and X is Decimal
2 10
X is binary and Y is Decimal.
What colour would rgb(255, 255, 0) or #FFFF00 most
likely look like?
A) Red
B) Green
C) Blue
D) Yellow
E) Purple / Violet
Yellow
RGB such as rgb(79, 38, 131) or #4F2683 is a
representation used for
A)Text
B) Numbers
C) Memory Addresses
D) Colour
Colour
Operating Systems (OS): The programs run by an operating
system which performs a service or function.
Application Programs: A program that controls the computer’s
resources.
A) True
B) False
False
Which one of the following is NOT an operating system?
A) iOS
B) Linux
C) Android
D) Firefox
E) Unix
Firefox
True or False.
Firmware is a special software on read-only memory
(ROM) and Facebook is an example of such software
False
True or False.
Objects are assigned to memory
True
What will this method do?
slice = temp[:6]
Will print out every value from from the first element not includes the 6th element
What will this method do?
slice = temp[6:]
Will print out the rest of the list but including the 6 position
What will this function do sort()?
It will sort a list from smallest to greatest
What will this method do .insert()?
Depending on the position it will add an element in a desired place in the list
Each pixel on your screen is made up of three
subpixels, one for each of the following colours:
A. Cyan, Magenta, Yellow
B. Orange, Green, Violet
C. Red, Yellow, Blue
D. Red, Green, Blue
E. White, Black, Green
Red, Green, Blue
CPU” stands for __________.
A. Cache memory Processing User
B. Computer Python Utility
C. Computer Program Unit
D. Central Printing Utility
E. Central Processing Unit
Central Processing Unit
One of the main functions of a GPU is to:
A. act as large-scale permanent file storage.
B. act as short time volatile file storage.
C. accelerate the rendering of 3D graphics.
D. compile or interpret Python computer code written by the user.
E. ensure the security of the computer’s network connection and encrypt Wifi traffic
Accelerate the rendering of 3D graphics
A byte can store ____ character(s) of text.
A. 1
B. 4
C. 8
D. 5
E. 3
8 bytes
Which of the following is a volatile memory?
A. Hard Disk Drive (HDD)
B. Solid State Drive (SSD)
C. Random Access Memory (RAM)
D. Punch Card
E. Blu-ray Disk
RAM is volatile.
Which mode in Python’s open() function is used to both read and write to a file without replacing it?
“a”
Why is self used as the first parameter in class methods?
It is automatically assigned to the instance calling the method
What does isinstance() mean?
Returns True if the specified object is the specified object
Unit testing means…
Testing a class in isolation from other programs
Who developed Python? What year?
1990 and Gudio Van Rossum
Object Oriented Programming…
is a programming style which tasks are solved by collaborating items. Example, String, Lists, and File objects
What is public interface?
The set of all methods provided by a class together with a description of their behavior
Encapsulating means..
The process of providing a public interface while hiding the implementation details
What is the _ used for?
It is used to indicate to class users that should not directly access the instance variables
What is the difference between a function and a method?
A method a parameter that starts with self and it is found under a class. A function is not under a class and you do not need to use self.
What is the state of the object?
The values stored in an instance variable make up the state of the object
True or false.
Always call a Python method with a double underscore ___
False
What is an accessor method?
An accessor method asks objects for info without changing it and normally returns current values
A mutator method…
Changes value and objects and usually takes a parameter that with change an instance variable. Ex. addItem()
What is a tester program?
A tester program is a driver module and contains statements to run methods in the class.
Object Reference means…
When a variable does not actually hold an object, but holds a memory location of an object
Shared Reference means…
Multiple object variables may contain reference to the same object. These are called aliases
How do you test if objects are aliases?
You use the is or is not operator.
___eq__ is used for …
IS called to compare if 2 objects are equal
__str__ is used for…
returns a human readable or an informal string representation
__repr__ returns…
a more information rich or formal string
What does the type() function do?
Returns the type of the object
variable scope
the portion of code where a variable can be access or modified.