Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java language /** * Enrolls a student with a specified SID * * Qparam studentNumber a student number * @return true * @throws BadSIDException *

image text in transcribedimage text in transcribed

Java language

/** * Enrolls a student with a specified SID * * Qparam studentNumber a student number * @return true * @throws BadSIDException * if x is not a 9-digit number. */ public static boolean enrolStudent(int studentNumber) \{ ? return false; Complete the method enrolStudent(int studentNumber). Note that the method can throw a BadSIDException which is an exception class that has been included for you in the lab project. All the method should do is return true. However, the method should throw an exception if the number is not a 9-digit number (at York there are other factors that would allow for checking the number validity; we use a simple hypothetical rule here). Run the JUnit tester after you complete each method to check your work

Step by Step Solution

There are 3 Steps involved in it

Step: 1

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

Students also viewed these Databases questions