OOP

studied byStudied by 20 people
0.0(0)
get a hint
hint

Java Netbeans IDE Function

1 / 142

Tags and Description

143 Terms

1

Java Netbeans IDE Function

Prepares the environment for developing java applications

New cards
2

IDE Full form

Integrated Development Environment

New cards
3

Java Netbeans

Platform to write Java code and applications (Version 7 ngayon)

New cards
4

What does java develop?

Desktop applications, client-server applications, mobile phone applications, games

New cards
5

Java major advantage

Platform independent

New cards
6

Java’s own runtime environment

Java Virtual Machine (JVM)

New cards
7

Current owner of java

Sun Microsystems

New cards
8

What to download?

Java Virtual Machine (JVM) and Java Development Kit (JDK)

New cards
9

Java code to write & extension

Source code wiith .java extension

New cards
10

What compiled the source code?

Another program called Javac that turns it into a Java byte code with .class extension (there should be no present errors)

New cards
11

File that Java Virtual Machine runs

Class file

New cards
12

Java Comments

Grayed out areas with forward slashes (// for single line comments; /* */ for multiline comments and asterisks that the compiler ignores

New cards
13

Javadoc comments

Starts with /** ends with */ to document the code (converted to HTML)

New cards
14

Java is case sensitive

True

New cards
15

Java code instructions end with a

Semicolon (;)

New cards
16

public class MyFirstProgram { }

Class segment notes the starting and ending of a java class segment code

New cards
17

Public static void main(String[] args){ }

Method

New cards
18

Public in “public static void main(String[] args){

the code can be accessed outside the class without creating new objects

New cards
19

Void in “public static void main(String[] args){

This part of the code does not return any value

New cards
20

Main in “public static void main(String[] args){

Denotes starting point of the java program

New cards
21

IntelliSense

NetBeans tries to display a list of available options after “.”

New cards
22

.Jar file (java archive) function

Cleans and builds your project with all necessary files for export if the program needs to be shared; will be put in a dist folder

New cards
23

Data

can be text, numbers, pointers, objects or some specified memory location

New cards
24

How is data accessed

New cards
25

Concatenation

Joining together direct text and a variable

New cards
26

You cannot start with a number for a variable name

True

New cards
27

You cannot have the same variable name with a keyword

True

New cards
28

Variable names can have a space

False

New cards
29

Variable names are not case sensitive

False

New cards
30

Java minimum and maximum value for numbers

+-2147483647 (use double to get a bigger/smaller number)

New cards
31

Operator Precedence

Order in which arithmetic’s operations are executed

New cards
32

Priority in operators

Multiplication & Division > addition and subtraction

New cards
33

Double quotes

String variable

New cards
34

Single quotes

char variable

New cards
35

Import java.util.Scanner; function

Tells java you want to use the scanner class in the util package of java library

New cards
36

Import in Import java.util.Scanner;

Reference it in the code

New cards
37

Scanner in Import java.util.Scanner;

Class that handles inputs

New cards
38

Util in Import java.util.Scanner;

utility package of the java library where scanner is stored

New cards
39

Scanner variable

Scanner user_input = new Scanner (System.in);

New cards
40

New in Scanner user_input = new Scanner (System.in);

Creates the new objects

New cards
41

System.in in Scanner user_input = new Scanner (System.in);

Specifies for system input

New cards
42

User_input in Scanner user_input = new Scanner (System.in);

TThe variable that is called to call the input methods

New cards
43

Next method in Scanner user_input = new Scanner (System.in);

Gets the next string of text or int of number that a user types

New cards
44

Println

Cursor moves to a new line after the output

New cards
45

Print

Cursor stays on the same line

New cards
46

If statement format

if(Condition {//codes to be executed if true}

New cards
47

Comparison Operators

Greater than, < Less than, >= greater or equal to, <= less than or equal to

New cards
48

Logical Operators

&& AND, || OR, == HAS A VALUE OF, ! NOT

New cards
49

If else statement structure

if(condition){code to be executed} else {code to be executed}

New cards
50

Nested IF statement

IF statement inside another IF statement

New cards
51

Boolean values

One with two choices: True or false, yes or no, 1 or 0

New cards
52

Switch statement

Selection statement

New cards
53

Switch statement can be used instead

New cards
54

Switch statement structure

switch(your test variable) { case Testing value: statement to be executed; break; default: statement to output if no matching case found; }

New cards
55

Looping

Repeat execution of statements a number of times

New cards
56

For loop structure

for(initial value; condition; increment/decrement { statements to be repeated if true }

New cards
57

Intial value in for loops

Sets at what number should the repeat process start

New cards
58

Condition in for loops

Repeat should occur only when this condition is true

New cards
59

Increment/decrement

Move the counter forward or backward

New cards
60

Prepares the environment for developing java applications

Java Netbeans IDE Function

New cards
61

Integrated Development Environment

IDE Full form

New cards
62

Platform to write Java code and applications (Version 7 ngayon)

Java Netbeans

New cards
63

Desktop applications, client-server applications, mobile phone applications, games

What does java develop?

New cards
64

Platform independent

Java major advantage

New cards
65

Java Virtual Machine (JVM)

Java’s own runtime environment

New cards
66

Sun Microsystems

Current owner of java

New cards
67

Java Virtual Machine (JVM) and Java Development Kit (JDK)

What to download?

New cards
68

Source code wiith .java extension

Java code to write & extension

New cards
69

Another program called Javac that turns it into a Java byte code with .class extension (there should be no present errors)

What compiled the source code?

New cards
70

Class file

File that Java Virtual Machine runs

New cards
71

Grayed out areas with forward slashes (// for single line comments; /* */ for multiline comments and asterisks that the compiler ignores

Java Comments

New cards
72

Starts with /** ends with */ to document the code (converted to HTML)

Javadoc comments

New cards
73

True

Java is case sensitive

New cards
74

Semicolon (;)

Java code instructions end with a

New cards
75

Class segment notes the starting and ending of a java class segment code

public class MyFirstProgram { }

New cards
76

Method

Public static void main(String[] args){ }

New cards
77

the code can be accessed outside the class without creating new objects

Public in “public static void main(String[] args){

New cards
78

This part of the code does not return any value

Void in “public static void main(String[] args){

New cards
79

Denotes starting point of the java program

Main in “public static void main(String[] args){

New cards
80

NetBeans tries to display a list of available options after “.”

IntelliSense

New cards
81

Cleans and builds your project with all necessary files for export if the program needs to be shared; will be put in a dist folder

.Jar file (java archive) function

New cards
82

can be text, numbers, pointers, objects or some specified memory location

Data

New cards
83

How is data accessed

New cards
84

Joining together direct text and a variable

Concatenation

New cards
85

True

You cannot start with a number for a variable name

New cards
86

True

You cannot have the same variable name with a keyword

New cards
87

False

Variable names can have a space

New cards
88

False

Variable names are not case sensitive

New cards
89

+-2147483647 (use double to get a bigger/smaller number)

Java minimum and maximum value for numbers

New cards
90

Order in which arithmetic’s operations are executed

Operator Precedence

New cards
91

Multiplication & Division > addition and subtraction

Priority in operators

New cards
92

String variable

Double quotes

New cards
93

char variable

Single quotes

New cards
94

Tells java you want to use the scanner class in the util package of java library

Import java.util.Scanner; function

New cards
95

Class that handles inputs

Scanner in Import java.util.Scanner;

New cards
96

utility package of the java library where scanner is stored

Util in Import java.util.Scanner;

New cards
97

Scanner user_input = new Scanner (System.in);

Scanner variable

New cards
98

Creates the new objects

New in Scanner user_input = new Scanner (System.in);

New cards
99

Specifies for system input

System.in in Scanner user_input = new Scanner (System.in);

New cards
100

TThe variable that is called to call the input methods

User_input in Scanner user_input = new Scanner (System.in);

New cards

Explore top notes

note Note
studied byStudied by 6 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 11 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 17 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 24 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 522 people
Updated ... ago
4.0 Stars(5)
note Note
studied byStudied by 5 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 16 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 16079 people
Updated ... ago
4.6 Stars(38)

Explore top flashcards

flashcards Flashcard71 terms
studied byStudied by 5 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard40 terms
studied byStudied by 2 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard50 terms
studied byStudied by 46 people
Updated ... ago
5.0 Stars(3)
flashcards Flashcard119 terms
studied byStudied by 251 people
Updated ... ago
5.0 Stars(3)
flashcards Flashcard46 terms
studied byStudied by 16 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard38 terms
studied byStudied by 9 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard68 terms
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)
flashcards Flashcard60 terms
studied byStudied by 3009 people
Updated ... ago
4.5 Stars(14)