Computers and Technology

Consider the following class definition. public class rectangle{private double length; private double width; public rectangle(){length = 0; width = 0; }public rectangle(double l, double w){length = l; width = w; }public void set(double l, double w){length = l; width = w; }public void print(){system. out. println(length + " " + width); }public double area(){return length * width; }public void perimeter(){return 2 length + 2 width; }}suppose that you have the following declaration. rectangle bigrect = new rectangle();
which of the following sets of statements are valid in java?
(i) bigrect. set(10, 5);
(ii) bigrect. length = 10; bigrect. width = 5;

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 03:20, owoeli
Which of these is a benefit of social networking? oa. hiding your true identity from friendsob. avoiding talking to people in personoc. spending time with friends instead of studyingod. connecting with new people
Answers: 2
image
Computers and Technology, 22.06.2019 21:30, elsauceomotho
Im doing this last minute and literally none of my neighbors or people that my dad works with use excel so if anyone could me make up an example
Answers: 1
image
Computers and Technology, 23.06.2019 01:50, jumoke26
Create a class named majors that includes an enumeration for the six majors offered by a college as follows: acc, chem, cis, eng, his, phys. display the enumeration values for the user, then prompt the user to enter a major. display the college division in which the major falls. acc and cis are in the business division, chem and phys are in the science division, and eng and his are in the humanities division. save the file as majors. java.
Answers: 2
image
Computers and Technology, 23.06.2019 04:10, cvbnkifdfg
2pointswho was mikhail gorbachev? oa. a russian leader who opposed a coupob. a polish leader who founded the labor union "solidarityoc. a soviet leader who called for a closer relationship with the unitedstates, economic reform, and a more open societyd. a soviet leader who called for more oppression in the soviet union
Answers: 3
Do you know the correct answer?
Consider the following class definition. public class rectangle{private double length; private doubl...

Questions in other subjects: