__ gives power to the computer
What is a power supply/PSU?
___ is what you search while debugging
What is a bug?
The most basic way regular computer register data
What is binary?
A=7 B=4
Write(A == B)
What is false?
the least amount of byte required to store numbers
What is 1?
The interface stored inside the motherboard
What is a BIOS?
The action of rewriting your whole code to make it uniform
What is refactoring.
The smallest leveled programming language
What is assembly?
A=6 B=12
Write(A > B/2)
What is false?
__ can host TRUE or FALSE
What is boolean?
__ calculate main mathematics operation
What is a CPU?
Code with a lot of complexity layers
What is nested code?
The language mostly use by google to compete with c
What is go?
A=4 B=4
Write(2/(A%B))
What is an error?
__ can host the largest number in c#
What is a double?
The most important part in a server rack
What is hard drive?
__ is read before debugging
What is a documentation?
__ is mostly use for AI
What is Python?
A="lucky" B="you"
A += B Write(A)
What is lucky you?
The most efficient way to store a sentence
What is a string?
The biggest authorization you can get on an Operating System
What is Kernel Permission?
__ is talking to an unexperienced person about your project
What is rubber duck debuging?
___ is the assembly code that keep the result of an arithmetic
What is an accumulator/EDX
A = "Hi"
For (i=0; i>4; i++;)
Write(A)
What is nothing/blank?
The name of this variable: Char[]
What is a char/character collection?