Question: please do it urgently sir a) There are 5 errors in the following code. Find out the lines those should be modified to remove the
//Subtraction,java package subtractionpackage; public class Subtraction \{ int num =5; protected int subtractTwoNumbers(int n1, int n2 ) \{ return n1n2; \} \} //SubstractionChildTest.java package subpackage; class SubtractionChildTest \{ private String str = "CSE310 is fun to learn!!!"; public static void main(String[] s) \{ SubtractionChildTest obj = new SubtractionChildTest(); System.out.printin(obj.subtractTwoNumbers(110, 22)); System.out.printin(obj.num); System.out.printin(str); \} @Override private int subtractTwoNumbers(int n1, int n2 ) \{ return n1n2; \} \} Write similar lines in your answer script
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
