cos 202

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Java was development by Sun Microsystems and released in 1995.

2
New cards

Currently java is owned by Oracle

More than 3 billion devices run java

Java script is high-level, robust, object-oriented and secure programing langusage.

3
New cards

Some java key words

1 class

2 if

3 int

4 for

5 final

6 string

7 catch

8 extent

9 implement

4
New cards

Java comments;

1 single comments

It starts with two forward slashes (//).

NB: Any text between// and the end of the line is ignored by java (will not be executed)

E.g //this is a comment

System.out.printin("Hello World");

5
New cards

2. Multi-line comments:

It starts with /* and ends with */.

NB; Any text between /* and */ will be ignored by java.

E.g /* The code bellow will print the words Hello World to the screen, and it is amazing */

System.out.printin("hello world");

6
New cards

Java variables;

variables are containers that stores data values.

7
New cards

The 3 Types of variables;

1 local variable

2 instance variable

3 static variable

8
New cards
9
New cards
10
New cards
11
New cards