Question
1. The following program will not compile. Rewrite it so that it compiles and correctly prints the numbers 0 through 4 on successive lines, and
1. The following program will not compile. Rewrite it so that it compiles and correctly prints the numbers 0 through 4 on successive lines, and then prints the final value of counter.
public class DemoProgram { public static void main(String[] args) { for (int counter = 0; counter < 5; counter++) { System.out. println(counter); } System.out.print(counter); } }
2. Write a class called DemoClass with an integer field called demoVariable that is not accessible outside the class, and a setter method called setDemoVariable that sets the value of demoVariable and a getter method called getDemoVariable that retrieves the value of demoVariable.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started