QUESTIONS WITH COMPLETE 100%
VERIFIED SOLUTIONS 2024/2025, EXAMS
OF COMPUTER NETWORKS
Version Control System Correct Answer powerful tools that
enable you to track changes to programming projects; enable you
to look back at your code at any point in time in the past,
collaborate with other developers and merge the work of many
into a working product
Repository (Repo) Correct Answer the place where a project
lives
Commit Correct Answer an incremental change to the repository
Origin Correct Answer the location of the remote repository
Master Correct Answer the name of the default branch in the git
repository
Branches Correct Answer in Git allow you to work on specific
features independently, without touching the code in master
Types:
*The master branch
*The dev branch
Master Branch Correct Answer the production state of your
application.
Dev Branch Correct Answer the testing state of your application,
which would be what you test on
, Low level programming language Correct Answer a programming
language that is closer to how the processor thinks and hardware
(machine code), are quite difficult to learn (EX. C)
High level programming language Correct Answer a language
where the code you write is more abstract from the machine code
that it produces (EX. Python); enables development of a program
in a much more user-friendly programming context
Pull request (pr) Correct Answer allow you to review all the code
that would be changed in the merge and either approve or reject
it.
script.py Correct Answer the filename of the Python program you
want to run
Variables Correct Answer a way of storing data in programs; the
act of assigning a value where we use the equals (=) operator.
String Correct Answer A series of characters (basically, text); are
always surrounded by quotes
Integer Correct Answer A whole number (could be positive or
negative)
Float Correct Answer A number with a decimal point
Boolean Correct Answer A True or False value; can be
represented as 1 (True) and 0 (False)
"Whitespace" Correct Answer refers to a type of character that
doesn't print anything out, but adds some sort of spacing
formatting to the output.