Question: Question 2 . ( 2 0 pts . ) Consider the following set of pre and postconditions for a method: / / Precondition: letter is

Question 2.(20 pts.) Consider the following set of pre and postconditions for a method:
// Precondition: "letter" is a character from the set
// of characters defined by the following ranges:
//'A'...'Z','a'...'z','0'...'9'
//
// Postcondition: The value returned by the function
// is true if "letter" is a letter of the English alphabet;
// otherwise the value returned by the function is false.
boolean is_alpha(char letter){
...// Implementation of is_alpha()
}
What is the result of the following call:
is_alpha('!');
Select the best option:
(a) true
(b) false
(c) null
(d) The result is undetermined
(e) An exception is thrown
(f) Code that calls is_alpha() would not compile.
(g) None of the above

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!