The error in the code is
if x%2=0:
print("The number is even")
else:
print("The number is odd")
The comparison operator is ==
What is the most commonly used computer programming language?
Profanity
The client
No
ALU
Arithmetic Logic Unit
The error in the code is
s = "hello World"
s[0] = "H"
Strings are inmutable. To change letters in a string you have to use the method replace
Complete the joke.
If my gf thinks I'm obsessed with programming, she's crazy.
endif
In which section do you find the RoT
Criteria B
What is SAAS?
Software as a Service
Steps is the machine cycle
fetch, decode, execute
What is the error in the code below
info = {"name":"bob", "age":15}
print(info["bob"])
The error is the key "bob" does not exist in the dictionary info.
Why are blind people bad at programming?
Because they can't C
What are two different types of testing?
Unit, Code review, Integration, gray, black, white box
Three types of installation processes
Direct changeover
Phased
Parallel
Physical wires connecting components in the motherboard
Buses
What is the result of this comparison
False == False in [False]
True
What kind of programming do trans robots have?
Non-binary
What are the five steps of the design cycle that must be included in the RoT
Planning, Design, Development, Evaluation and Implementation
What is the technical term for "finding errors in a program and correcting them by changing the program code."
Debugging
Protects the hardware from misuse by runaway applications and provides GUI to the user
You have a class:
class WTF:
pass
what is the output of this command
id(WTF()) == id(WTF())
True
How many programmers does it take to change a light bulb?
None. It is a hardware problem
ER diagram
Technical term for "A mirrored hard-disk is constantly maintained to be identical to the main server. It contains all the same software and all the same data"
Failover system
What is Paging?
Paging is a memory management scheme that eliminates the need for contiguous allocation of physical memory as programs are organize in blocks (pages)