Skip to content

pcsciencegeek/2048

Repository files navigation

//------------------------------------------------------------------// // README.md // // Author: Drew Mills // // Date : 02/04/17 // //------------------------------------------------------------------//

Unix/Linux related Questions:

1.From your current directory how do you copy over a java file named fubar from a folder three directories above? Write the full command required to perform this action.

cp fubar.java ../../../

  1. What does the command “man cat” do (with no quotes)?

it will give you a Description (or manual) of cat

Java related Questions:

  1. Name the 2 requirements for a constructor signature.

Access modifier (public, private, or protected), The name of the class the constructor is in

  1. What does the keyword static mean in regards to variables?

it denotes that a variable, can be accessed without requiring an instantiation of the class it belongs too.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages