ITEC30 (Sir Jonel) Flashcards
known as a software, are instructions to the computer, telling it what to do
Computer Programs
is the creation of a program that is executable by a computer and performs the required tasks.
Programming
it is a series of instructions that directs a computer to perform specific operations.
Programs
is a formal language that specifies a set of instructions that can be used to produce various kinds of output.
Programming Language
contains a vocabulary that allows the programmer to communicate a series of instruction to a computer in a form that the computer can understand and obey.
Programming Language
A computer’s native language, which differs among different types of computers, a set of built-in primitive instructions.
Machine Language
uses a short descriptive word, known as a mnemonic, to represent each of the machine-language instructions
Assembly Language
were developed to make programming easier.
Assembly Language
They are platform independent, which means that you can write a program in a high-level language and run it in different types of machines.
High-Level Language
are English-like and easy to learn and use.
High-Level Language
COBOL acronym
COmmon Business Oriented Language
FORTRAN acronym
FORmula TRANslation
BASIC acronym
Beginner’s All-purpose Symbolic Instruction Code
Pascal
named for Blaise Pascal
Ada
named for Ada Lovelace
C
developed by the designer of B
Visual Basic
Basic-like visual language developed by Microsoft
Delphi
Pascal-like visual language developed by Borland
C++
an object-oriented language, based on C
C#
a Java-like language developed by Microsoft
It is a High-Level Programming Language,
Platform Independent, and Object-Oriented
Java
is a powerful and versatile programming language for developing software running on mobile devices, desktop computers, and servers
Java
robust means
reliability
Java was developed by a team led by who?
James Gosling
where was the Java developed?
Sun Microsystems.
WORA means?
“write once, run anywhere”
It is a technical definition of the language that includes the syntax and semantics of the Java programming language.
JAVA LANGUAGE SPECIFICATION
it contains predefined classes and interfaces for developing Java programs.
APPLICATION PROGRAM INTERFACE (API)
It is a software development environment for Java applications and applets.
JAVA DEVELOPMENT KIT (JDK)
API acronym
APPLICATION PROGRAM INTERFACE
JDK acronym
JAVA DEVELOPMENT KIT
JAVAC acronym
Java Compiler
JAR acronym
Java Archiving Tool
JDB acronym
Java Debugging
JRE acronym
Java Runtime Environment
Java three editions
Java Standard Edition (Java SE)
Java Enterprise Edition (Java EE)
Java Micro Edition (Java ME)
to develop client-side applications. The applications can run standalone or as applets running from a Web browser.
Java Standard Edition (Java SE)
to develop server-side applications, such as Java servlets, JavaServer Pages (JSP), and JavaServer Faces (JSF)
Java Enterprise Edition (Java EE)
to develop applications for mobile devices, such as cell phones
Java Micro Edition (Java ME)
is a platform for creating rich internet applications using a lightweight user-interface API.
JavaFX
Basic supports for Application
JDK Alpha and Beta (1995)
Introduction of Access Specifies
JDK 1.0 (January 23, 1996)
Main Emphasis on Database connectivity & RMI
J2SE 1.1 (February 19, 1997)
Introduction of JIT collection Framework
J2SE 1.2 (December 8,1998)
Introduction of jar indexing, jar sound
J2SE 1.3 (May 8, 2000)
Introduction of xml Processing, Printing, JDBC
J2SE 1.4 (February 6, 2002)
Introduction of Boxing/Unboxing, Generics
J2SE 5.0 (September 30, 2004)
Introduction of Pluggable Annotations, Java GSS
Java SE 6 (December 11,2006)
Introduction of Multiple Exception Handling Automatic null Handling
Java SE 7 (July 28, 2011)
Introduction of Lambda Expressions,
Type Annotations
Java SE 8 (March 18,2014)
Introduction of Lambda Expressions, Type Annotations
Java SE 8 (March 18, 2014)
IDE acronym
INTEGRATED DEVELOPMENT ENVIRONMENT
A machine that run Java byte-code.
It is called virtual because it is usually implemented in software rather than hardware
JAVA VIRTUAL MACHINE
is similar to machine instructions but is architecture neutral and can run on any platform that has a Java Virtual Machine (JVM)
bytecode
it provides the libraries, the Java Virtual Machine, and other components to run applets and applications written in the Java programming language.
JAVA RUNTIME ENVIRONMENT
5 Java – basic syntax
Case Sensitivity
Class Names
Method Names
Program File Name
public static void main(String[] args)
it deals with what programs look like.
PROGRAMMING STYLE
is the body of explanatory remarks and comments pertaining to a program.
DOCUMENTATION
it should be used throughout code to explain the programmer’s rationale.
COMMENTS
It also can be used to block out certain code sections for testing purposes.
COMMENTS
have an initial indicator and an end indicator.
COMMENTS
are used to separate logic, in which case there may be no text.
COMMENTS
It is used to illustrate the structural relationships between a program’s components or statements
INDENTATION
is a group of statements surrounded by braces.
BLOCK
There are two popular styles OF BLOCK
next-line style and
end-of-line style
Errors that are detected by the compiler
SYNTAX ERRORS
are errors that cause a program to terminate abnormally.
RUNTIME ERRORS
occur when a program does not perform the way it was intended to.
LOGIC ERRORS
COMMON ERRORS
Missing Braces
Missing Semicolons
Missing Quotation Marks
Misspelling Names
are the names that identify the elements such as classes, methods, and variables in a program
IDENTIFIERS
is a sequence of characters that consists of letters, digits, underscores (_), and dollar signs ($).
IDENTIFIERS
provides us with named storage that our programs can manipulate.
Variable
are for representing data of a certain type.
Variable
tells the compiler to allocate appropriate memory space for the variable based on its data type.
variable declaration
represents a computation involving values, variables, and operators that, taking them together, evaluates to a value.
expression
is an identifier that represents a permanent value.
named constant
is a Java keyword for declaring a constant.
final
defines the values that a variable can take.
Data type
eight primitive data types in Java
boolean
char
byte
short
int
long
float
double
is a constant value that appears directly in a program.
Literals
can be assigned to an integer variable as long as it can fit into the variable. By default, an integer literal is a decimal integer number.
Integer literal
are written with a decimal point.
Floating-point literals
to represent special characters
escape sequence begins with the backslash character ()
represents only one character.
char type
describes how a problem is solved by listing the actions that need to be taken and the order of their execution.
ALGORITHM
can help the programmer plan a program before writing it in a programming language.
ALGORITHM
It is treated as a document so that the developer can understand the program easily.
Pseudocode
should be as simple as it can be understood by a layman having no sufficient knowledge of technical terms.
Pseudocode