Answered step by step
Verified Expert Solution
Question
1 Approved Answer
o b) Given a class BClass with a constructor which accepts one argument (of int type) representing certain identity code, write Java code fragment as
o b) Given a class BClass with a constructor which accepts one argument (of int type) representing certain identity code, write Java code fragment as required below: Write one statement to only declare a variable bArr of type BClass array. o Then, write multiple statements to create an array of Bclass having the size of your student ID number and assign this array to the variable above. Each element in this array refers to a unique instance having its index number in the array as its identity code o c) Write a public static method getFirstD() with the following: The method accepts 2 arguments: the first argument is an array of int, and the second is a value of int. The method returns a value of int type. o The method finds and returns the last element in the array which is divisible by the second argument, e.g. 8 is divisible by 4, but 9 is not divisible by 4. The method returns your student ID number, if no divisible number is found in the array. Use a while loop to access the array elements. * NO more than 6 statement lines are allowed in the method body. o
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