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

Week -2

Workshop

Week 1- Workshop
Lab Questions
Basic Structure of a Java Program:

Week 1- Workshop | 2
Lab Questions
1) Create a new class named “Great”. You need to print “This is my bluej
workshop” inside the main method.

2) Write a program to print the following:


My name is: (In one line)
(Your name) (In 2nd line)
Hint: No need to use concept of variables

3) Now, store the value of (Your name, done in 1) in a variable.

Week 1- Workshop | 3
What is the output of following program?

public class OperatorExample


{
public static void main(String[] args)
{
int a = 10;
int b = 10;
System.out.println(++a );
System.out.println(a++);
}
}

Week 1- Workshop | 4

You might also like