Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In this program below, which lines would lead to compile-time errors? Try determine your answers without using Eclipse...then, check your answers in Eclipse. AWN 1
In this program below, which lines would lead to compile-time errors? Try determine your answers without using Eclipse...then, check your answers in Eclipse. AWN 1 public class MyOuterClass { 2 private int outer; 3 private class MyInnerClass { 4 private int inner; private MyInnerClass() { inner = 2; } // constru ctor private void setInner(int s) { inner = s;} } // MyInnerClass 5 9 public MyOuterClass() { } // constructor 10 public void method1() { MyInnerClass innerObject = new MyInnerClass(); // line 11 innerObject.inner = 12; // line 12 innerObject.outer = 13; // line 13 innerObject.setInner(14); // line 14 inner = 15; // line 15 outer = 16; // line 16 phy public static void main(String [] args) { MyInnerClass innerObject = new MyOuterClass(); // line 20 MyOuterClass outerObject = new MyOuterClass(); // line 21 22 outerObject.method1(); // line 22 23 } 24 25 } Choose all of the following lines that would give a compiler error: line 11 line 15 line 22 line 12 line 13 line 20 line 14 line 21
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started