Command Line
Git
Github
Java
More Java
100

What does mkdir stand for? 

Make directory 

100

What are the two ways a get repo can be created? 

git init and git clone 

100

What is the file where we write our markdown called? 

README

100

Java is a case sensitive language? True or False? 

True

100

This is an : int[] numbers = {1,2,3,4}

What is an array? 

200

Do spaces matter in the command line? True or false? 

True

200

Git manges files within a ______?

Repository - Repo

200

To copy someone else's Github code and make our own.

What is forking?

200

Java is a _______ programming language

What is class-based? 

200

A programming model that organizes software design around data, or objects, rather than functions and logic.

What is Object-oriented programming (OOP)?

300

What command do we use to move a file to another destination?

mv

300

What is a version control system? 

It is a tool to keep track of changes made to a piece of software over time.

300

Must do this before push changes to git.

What is a commit? 

300

-2147493648

What is int? 

300

What are the fundamental items in object-oriented programming?

  • Classes

  • Objects

  • Methods 

  • Attributes

400

What does GUI stand for and when doesn't need to be checked? 

Graphical User Interface, when results of the command can be seen in the command line. 

400

What is git add . user for? And is also know as what? 

What is adding files and adding changes. What is staging.

400

Command that creates a new upstream branch in the remote repository on git push 

what is -u (git push -u origin branch-name)? 

400

The six relational operators.

 

equal to

not equal to

lower than

lower or equal to

higher than

higher or equal to

400

In Java, they are called fields, but are sometimes also referred to as data members.

What are attributes? 

A person’s attributes include:

  • their first name, 

  • their last name, 

  • their age, and so on. 

500

Every command is made of 3 elements. What are they? 

command, option and argument (directory being created) 

500

What are the four state every file in a repo can be in? 

untracked, modified, unmodified and staged

500

A proposal to merge a set of changes from one branch into another

What is a pull Request (PR)?
500

List the 4 scopes of a Java variable ... 

what is instance, local, class, parameter 

500

Java, constructors can never be... 

final, static or abstract