This git state means that you have changed the file but you have not committed it to your database yet.
What is modified?
This can be defined as a unit of an abstract mathematical system subject to the laws of arithmetic.
What is a number?
In order to determine an integer value in this complement, you start with a positive number, flip the bits, and add one.
What is two's complement?
This is a device that performs a basic operation on electrical signals, is made by transistors with semiconductor material, and accepts one or more inputs signals.
What is a gate?
These are the three types of proofs we covered in class.
What are direct proof (proof by construction), proof by contradiction, and proof by induction (recursive proof)?
The basic git workflow includes these major stages.
What is checkout, stage fixes, and commit?
This is the name of the base-2 numbering system used in computers.
What is the binary numbering system?
This occurs when adding two positive operands together results in a negative number.
What is overflow?
This is a combination of interacting gates designed to accomplish a specific logic function.
What is a circuit?
In this type of proof you demonstrate how to build that object so that it can exist.
What is a direct proof or a proof by construction?
If you want to check your configuration settings, you can use this command to list all the settings Git can find at that point, along with the location where those settings are stored.
What is git config --list --show-origin?
C in hexadecimal is this value in decimal.
What is 12?
These are the three components represented in the bits of a real number in binary.
What are sign, mantissa, and exponent?
The above image shows the boolean expression and logic diagram for this gate type.
What is an and gate?
In this type of proof, you assume the assumption is false and then show the false assumption cannot be, thereby proving the theorem.
What is a proof by contradiction?
You can clone a repository at a certain url with this command.
What is git clone <url>?
754 in base 8 is this value in binary.
What is 111101100?
This is the binary representation for the decimal value 0.75.
What is 0.11 in base-2?

The above image shows the boolean expression and the logic diagram symbol for this gate type.
What is an xor gate?
In this proof type, you show that all elements in an infinite set have a certain property.
What is proof by induction?
Running this command in git will easily allow you to print out the history of commits, showing where your branch pointers are and how your history has diverged.
What is git log --oneline --decorate --graph --all?
This is the remainder in binary when you divide 1001010 by 1001.
What is 10 in base-2?
This is the decimal representation of the binary number 10100.01.
What is 20.25 in decimal?

The above image shows the boolean expression and the logic diagram symbol for this gate type.
What is a nand gate?
In this step of an induction proof, you show that the property holds for all values of n larger than the starting point.
What is the inductive step?