Introduction to Programming and Java Flashcards

1
Q

File System

A

“File System” is method of storing and organizing computer files and the data they contain to make it easy to find and access them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

File Path

A

A file path, the general form of the name of a file or directory, specifies a unique location in a file system. A path points to a file system location by following the directory tree hierarchy expressed in a string of characters in which path components, separated by a delimiting character, represent each directory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

File Extension

A

A file extension, sometimes called a file suffix or a filename extension, is the character or group of characters after the period that makes up an entire file name. The file extension helps an operating system, like Windows or Mac OSX, determine which program on your computer the file is associated with.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Command Line

A

The command line is a text interface for your computer. It’s a program that takes in commands, which it passes on to the computer’s operating system to run. From the command line, you can navigate through files and folders on your computer, just as you would with Windows Explorer on Windows or Finder on Mac OS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

pwd

A

Print Working Directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

ls

A

List all folders and files in a directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

cd

A

Change Directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Programming Language

A

Set of instruction to the computer to produce various output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

JAVA

A

Java is a programming language and a computing platform.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

JDK

A

Java Development Kit

What you need in your computer when you need to write a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

In order to run a Java program you need to have ____

A

JRE

Java Runtime Environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

JRE runs ______.

A

JVM

Java Virtual Machine

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

source code

A

Source code is the fundamental component of a computer program that is created by a programmer. It can be read and easily understood by a human being. When a programmer types a sequence of C language statements into Windows Notepad, for example, and saves the sequence as a text file, the text file is said to contain the source code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly