0% found this document useful (0 votes)
44 views

Java Programming

This document provides information about Java programming for a student named Jessie Trinidad Solido. It defines Java as a general-purpose, class-based programming language that is designed to run on any system with a Java Virtual Machine. It notes some of Java's key features, history, and popularity. It also briefly describes common Java data types like byte, int, float, and double. Finally, it defines a programming loop as a sequence of instructions that is repeatedly executed until a certain condition is reached.

Uploaded by

jun solido
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views

Java Programming

This document provides information about Java programming for a student named Jessie Trinidad Solido. It defines Java as a general-purpose, class-based programming language that is designed to run on any system with a Java Virtual Machine. It notes some of Java's key features, history, and popularity. It also briefly describes common Java data types like byte, int, float, and double. Finally, it defines a programming loop as a sequence of instructions that is repeatedly executed until a certain condition is reached.

Uploaded by

jun solido
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

NAME: JESSIE TRINIDAD SOLIDO

AGE: 22

YEAR & SECTION: XI SERVER

SUBJECT: JAVA PROGRAMING

SUBJECT TEACHER: NERESA LEDESMA LUDIVESE

TIME SCHEDULE: TTH 8-9 PM


WHAT IS JAVA PROGRAMING?

Java is a general-purpose programming language that is class-based, object-oriented although not


a pure object-oriented language, as it contains primitive types unreliable source? and designed to
have as few implementation dependencies as possible. It is intended to let application developers
write once, run anywhere (WORA) meaning that compiled Java code can run on all platforms
that support Java without the need for recompilation. Java applications are typically compiled to
byte code that can run on any Java virtual machine (JVM) regardless of the underlying computer
architecture. The syntax of Java is similar to C and C++, but it has fewer low-level facilities than
either of them. As of 2019, Java was one of the most popular programming languages in use
according to Git Hub particularly for client-server web applications, with a reported 9 million
developers.

Java was originally developed by James Gosling at Sun Microsystems (which has since been
acquired by Oracle) and released in 1995 as a core component of Sun Microsystems' Java
platform. The original and reference implementation Java compilers, virtual machines, and class
libraries were originally released by Sun under proprietary licenses. As of May 2007, in
compliance with the specifications of the Java Community Process, Sun had relicensed most of
its Java technologies under the GNU General Public License. Meanwhile, others have developed
alternative implementations of these Sun technologies, such as the GNU Compiler for Java
(bytecode compiler), GNU Classpath (standard libraries), and IcedTea-Web (browser plugin for
applets).
Data Type

Byte: Stores whole numbers from -128 to 127

Int: Stores whole numbers from -2,147,483,648 to 2,147,483,647

Float: Stores fractional numbers. Sufficient for storing 6 to 7 decimal digits

Double: Stores fractional numbers. Sufficient for storing 15 decimal digits

boolea: Stores true or false values

char: Stores a single character/letter or ASCII values


DESCRIBE WHAT IS LOOPING.

In computer programming, a loop is a sequence of instruction s that is continually repeated until


a certain condition is reached. Typically, a certain process is done, such as getting an item of data
and changing it, and then some condition is checked such as whether a counter has reached a
prescribed number. If it hasn't, the next instruction in the sequence is an instruction to return to
the first instruction in the sequence and repeat the sequence. If the condition has been reached,
the next instruction "falls through" to the next sequential instruction or branches outside the loop.
A loop is a fundamental programming idea that is commonly used in writing programs.

You might also like