You are on page 1of 4

Arvin L.

Hipolito Computer Programming II


BSCS-2

1. What is java programming?

The Java programming language was developed by Sun Microsystems in the early


1990s. Although it is primarily used for Internet-based applications, Java is a simple,
efficient, general-purpose language. Java was originally designed for embedded
network applications running on multiple platforms. It is a portable, object-oriented,
interpreted language.
Java is extremely portable. The same Java application will run identically on any
computer, regardless of hardware features or operating system, as long as it has a Java
interpreter. Besides portability, another of Java's key advantages is its set of security
features which protect a PC running a Java program not only from problems caused by
erroneous code but also from malicious programs (such as viruses).
Java can be considered both a compiled and an interpreted language because its
source code is first compiled into a binary byte-code. This byte-code runs on the Java
Virtual Machine (JVM), which is usually a software-based interpreter. The use of
compiled byte-code allows the interpreter (the virtual machine) to be small and efficient
(and nearly as fast as the CPU running native, compiled code). In addition, this byte-
code gives Java its portability: it will run on any JVM that is correctly implemented,
regardless of computer hardware or software configuration.

Compared to C++ (another object-oriented language), Java code runs a little slower
(because of the JVM) but it is more portable and has much better security features. The
virtual machine provides isolation between an untrusted Java program and the PC
running the software. Java's syntax is similar to C++ but the languages are quite
different. For example, Java does not permit programmers to implement operator
overloading while C++ does. In addition, Java is a dynamic language where you can
safely modify a program while it is running, whereas C++ does not allow it. This is
especially important for network applications that cannot afford any downtime. Also, all
basic Java data types are predefined and not platform-dependent, whereas some data
types can change with the platform used in C or C++ (such as the int type).

Java programs are more highly structured than C++ equivalents. All functions (or
Java methods) and executable statements in Java must reside within a class while C++
allows function definitions and lines of code to exist outside of classes (as in C-style
programs). Global data and methods cannot reside outside of a class in Java, whereas
C++ allows this. These restrictions, though cumbersome at times, help maintain the
integrity and security of Java programs and forces them to be totally object-oriented.
Arvin L. Hipolito Computer Programming II
BSCS-2

2. Discuss the parts of Java Programming.

 public class Hello


This creates a class called Hello.
All class names must start with a capital letter.
The public word means that it is accessible from any other classes.

 /* Comments */
The compiler ignores comment block. Comment can be used anywhere in the
program to add info about the program or code block, which will be helpful for
developers to understand the existing code in the future easily.
Braces Two curly brackets {...} are used to group all the commands, so it is known
that the commands belong to that class or method.

 public static void main


When the main method is declared public, it means that it can also be used by
code outside of its class, due to which the main method is declared public.
The word static used when we want to access a method without creating its object, as
we call the main method, before creating any class objects.
The word void indicates that a method does not return a value. main() is declared as
void because it does not return a value.
main is a method; this is a starting point of a Java program.
You will notice that the main method code has been moved to some spaces left. It is
called indentation which used to make a program easier to read and understand.

 String[] args
It is an array where each element of it is a string, which has been named as
"args". If your Java program is run through the console, you can pass the input
parameter, and main() method takes it as input.

 System.out.println();
This statement is used to print text on the screen as output, where the system is
a predefined class, and out is an object of the PrintWriter class defined in the system.
The method println prints the text on the screen with a new line. You can also use print()
method instead of println() method. All Java statement ends with a semicolon.

3. What are the basic structures of java programming?

 Documentation Section

You can write a comment in this section. Comments are beneficial for the
programmer because they help them understand the code. These are optional, but we
Arvin L. Hipolito Computer Programming II
BSCS-2

suggest you use them because they are useful to understand the operation of the
program, so you must write comments within the program.

 Package statement

You can create a package with any name. A package is a group of classes that
are defined by a name. That is, if you want to declare many classes within one element,
then you can declare it within a package. It is an optional part of the program, i.e., if you
do not want to declare any package, then there will be no problem with it, and you will
not get any errors. Here, the package is a keyword that tells the compiler that package
has been created.

It is declared as:

package package_name;

 Import statements

This line indicates that if you want to use a class of another package, then you
can do this by importing it directly into your program.

import calc.add;

 Interface statement

Interfaces are like a class that includes a group of method declarations. It's an
optional section and can be used when programmers want to implement multiple
inheritances within a program.

 Class Definition

A Java program may contain several class definitions. Classes are the main and
essential elements of any Java program.

 Main Method Class

Every Java stand-alone program requires the main method as the starting point
of the program. This is an essential part of a Java program. There may be many classes
in a Java program, and only one class defines the main method. Methods contain data
type declaration and executable statements.
Arvin L. Hipolito Computer Programming II
BSCS-2

4. Find a sample program in java that will print the word Hello.

5. Java "Hello, World!" Program


6. // Your First Program
7.
8. class HelloWorld {
9. public static void main(String[] args) {
10. System.out.println("Hello, World!");
11. }
12.}

References:

https://www.sciencedirect.com/topics/computer-science/java-programming-language

https://www.w3schools.in/java-tutorial/program-structure/

https://www.programiz.com/java-programming/hello-world

You might also like