Handout 2 Introduction To Java Programming Language
Handout 2 Introduction To Java Programming Language
programming language
Characteristic of Java programming langauge
Comparison operators:
Eqality operators
== = Equality,
inequality, !=
Relational operators
>, ,>=, <, <=,
Java keywords
abstract assert boolean break byte
case catch char catch continue
default do double else Enum
extends final Finally float For
If implements import Instanceof int
interface long native new package
private protected public return package
static strictfp super switch synchronized
If(condition) {
System.Out.Prinltn(“kweli”);
}
If else statement
• If else is double selection statement
• When condition is true the statements after if are
executed, when false statement after else are executed
If(condition) {
system.out.prinltn(“kweli”);
}
else {
system.out.prinltn(“uwongo”);
}
If you copy single and double quoted from word
processors and other application copied double quotes
may not be ASCII double quote so may get errors. If this
happens delete the double quotes and type in the IDE.
If (condition)- else if(condition)- else statement
if(condition) {
System.Out.Prinltn(“first”);
{
else if(condition) {
System.Out.Prinltn(“second”);
}
else if(condition) {
System.Out.Prinltn(“third”);
}
else {
System.Out.Prinltn(“fourth”);
}
If you copy single and double quoted from word processors and other
application copied double quotes may not be ASCII double quote so
may get errors. If this happens delete the double quotes and type in
the IDE.
printf formatings
• printf displays formatted data
Printf formatting – insert table
%d – refers to decimal integer (int, long, short
byte) data type
%f - refers to floating data type [float, double}
%s – refers to string data type
%c – refers to character data type
for loop statement
for( declare and initialize loopctr variable;
loopcondition;
Increment loop control variable) {
Statements to be executed
}
if(num1<=num2) {
System.out.printf("%d <= %d%n", num1,num2); }
if(num1>=num2) {
System.out.printf("%d >= %d%n", num1,num2); }
Release product release terminology
Alpha software is earliest released of software
that is under active development. Its
incomplete, unstable and has errors. Its
released for small number of developers for
testing
Beta software is released to a large number of
developer more stable features nearly
complete and most bugs fixed. Beta is still more
stable but still subject to change.
Acceptance testing is final test where users test
software to determine its acceptable
Release product release terminology …
Release candidate – feature complete, mostly
bug free for testing by community which
provides a more diverse testing environment.
Final release – all bugs in release candidate
fixed
Continuous beta – these software like Google
search or Gmail don’t have version numbers. Its
installed on the cloud not installed in user
computers and is always evolving so users have
latest version.
Google Android
• Android is based on Linux Kernel and
Java
• Android was developed by Android Inc
and acquired by Google in 2005.
• In 2007 open handset alliance was
formed to maintain and evolve
android, driving innovation I mobile
technology innovation, improve user
experience while reducing costs
Individual Exercise 1
Write a java programs that asks user to
enter three numbers, multiplies them and
displays product.