Question: ?Suppose you have this code, if we run it, will it work properly or is there an error in it ?If not; find the error



?Suppose you have this code, if we run it, will it work properly or is there an error in it ?If not; find the error with explanation public class Rectangle { float length; float width: public void setLength (float length) { this.length = length: 3 public void setWidth (float width) this.width = width: ? public float GetRectArea) return length width: 3 public class MyTEST public static void main(String[] args) { Rectangle myRecta myRect.width = 40; myRect heigh = 50 System.out.println (MyRects area is myRect.GetRectArea()); o E ?Suppose you have this code, if we run it, will it work properly or is there an error in it ?If not; find the error with explanation Note: these code should be print even number between 2 and 100 counter = 2; do { System.out.println( counter ); counter += 2; } While ( counter
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
