Home / Questions / (iii) Write the Java statement for creating an object named 'sifra' of the class 'Robot', which takes three double parameters.
Explanatory Question

(iii) Write the Java statement for creating an object named 'sifra' of the class 'Robot', which takes three double parameters.

👁 57 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation


Robot sifra = new Robot(3.5, 2.7, 4.8); // Example values

(Replace 3.5, 2.7, 4.8 with actual values as required.)