Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What does this print in java? public class Main { private double myGPA; private int myCredits; public void increaseCredits(int amount) myCredits myCredits + amount; }

What does this print in java?


 

public class Main { private double myGPA; private int myCredits; public void increaseCredits(int amount) myCredits myCredits + amount; } public void setCredits(int credits) { myCredits credits; [P] public int getCredits() { return myCredits; } public static void main(String[] args) { Main S new Main(); s.setCredits (6); s.increaseCredits (12); System.out.println(s.getCredits()); }

Step by Step Solution

3.40 Rating (144 Votes )

There are 3 Steps involved in it

Step: 1

public class Main instance variables of the Main class private double myGPA priva... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Java An Introduction To Problem Solving And Programming

Authors: Walter Savitch

8th Edition

0134462033, 978-0134462035

More Books

Students also viewed these Programming questions