Q 1: Access class members from the same package Note: ClassA and ClassB in this question are in the same package. public class ClassB { public int x = 1; int y = 2; private int z =3; } public class ClassA { public static void main(String[] args) { ClassB cb = new ClassB(); // System.out.print(cb.x); /* 1 */ // System.out.print(cb.y); /* 2 */ // System.out.print(cb.z); /* 3 */ } } 1.1- Which statement(s) are true? Choose all that аpply. a. If statement 1 is uncommented, the code prints "1" to the output. b. If statement 2 is uncommented, the code prints "2" to the output. c. If statement 3 is uncommented, the code prints "3" to the output. .d. This code does not compile 1.2- Try to do the following: • Declare a character type variable myChar in the class ClassB, the variable myChar shouldn't be accessible through the object cb. • Add a statement to the classA to test whether myChar is accessible.

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter11: More Object-oriented Programming Concepts
Section: Chapter Questions
Problem 15RQ
icon
Related questions
Question
Q 1: Access class members from the same
package
Note: ClassA and ClassB in this question are in the same
package.
public class ClassB {
public int x = 1;
int y = 2;
private int z =3;
}
public class ClassA {
public static void main(String[] args) {
ClassB cb = new ClassB();
// System.out.print(cb.x); /* 1 */
// System.out.print(cb.y); /* 2 */
// System.out.print(cb.z); /* 3 */
}
}
1.1- Which statement(s) are true? Choose all that
apply.
a. If statement 1 is uncommented, the code prints "1" to the
output.
b. If statement 2 is uncommented, the code prints "2" to the
output.
c. If statement 3 is uncommented, the code prints "3" to the
output.
.d. This code does not compile
1.2- Try to do the following:
• Declare a character type variable myChar in the
class ClassB, the variable myChar shouldn't be
accessible through the object cb.
Add a statement to the classA to test whether
myChar is accessible.
Transcribed Image Text:Q 1: Access class members from the same package Note: ClassA and ClassB in this question are in the same package. public class ClassB { public int x = 1; int y = 2; private int z =3; } public class ClassA { public static void main(String[] args) { ClassB cb = new ClassB(); // System.out.print(cb.x); /* 1 */ // System.out.print(cb.y); /* 2 */ // System.out.print(cb.z); /* 3 */ } } 1.1- Which statement(s) are true? Choose all that apply. a. If statement 1 is uncommented, the code prints "1" to the output. b. If statement 2 is uncommented, the code prints "2" to the output. c. If statement 3 is uncommented, the code prints "3" to the output. .d. This code does not compile 1.2- Try to do the following: • Declare a character type variable myChar in the class ClassB, the variable myChar shouldn't be accessible through the object cb. Add a statement to the classA to test whether myChar is accessible.
Expert Solution
steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Reference Types in Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning