Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

Activity 1 – Day 1

1) What is JAVA?

____________________________________________________________________________

2) Who invented Java language?

__________________________

3) Current version of JAVA SE?

__________________________

4) Name the Java IDE’s?

__________________________

5) What are the main features of Java?

__________________________

__________________________

__________________________

__________________________

__________________________

__________________________

6) Who is the current Service provider of JAVA?


7) Explain JDK, JRE and JVM?

JDK: __________________________
JRE: __________________________
JVM: __________________________

8) What is a variable?

_____________________________________________________________________________

9) What are the 3 types of variables?

1)_____________

2)_____________

3)_____________

10) Fill in the blanks in following process


A) - _______________

B) - _______________

C) - _______________

11) What are the 2 types of data types in Java?

Answer: -
1. …………………………………………………
2. …………………………………………………

12) What are the main types of primitive data types?

1)________________

2)________________

3)________________

4)________________

5)________________

6)________________

7)________________

8)________________

13) What are the 2 types of comments in Java?

Answer: -
1. ________________
2. ________________
14) What is the output of java code snippet below?

System.out.print(“JAVA”);
System.out.println(“Welcome to Evotech”);

A) ____________________________________

15) What is the meaning of Java Keywords? Mention few of them.

____________________________________________________________________

____________________________________________________________________

16). What is the output of Java code snippet below?

int a=5, b=10, c=15;


byte e = 1;
short t = 23;
double x = 23.5d;
float y = 43.5f;
char k = ‘H’;
Boolean p = true;
String name = “Evotech”;

System.out.println(a +" "+b+" "+c);

System.out.println(e);

System.out.println(t);

System.out.println(x);

System.out.println(y);

System.out.println(k);

System.out.println(p);

System.out.println(name);

You might also like