100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.6 TrustPilot
logo-home
Exam (elaborations)

CCSE 1322 Quiz 5 - Recursion with complete verified solutions(graded A+)

Rating
-
Sold
-
Pages
7
Grade
A
Uploaded on
06-11-2024
Written in
2024/2025

CCSE 1322 Quiz 5 - Recursion with complete verified solutions(graded A+)

Institution
CSE 1300
Module
CSE 1300

Content preview

CCSE 1322 Quiz 5 - Recursion
with complete verified
solutions(graded A+)
The following recursive method takes in an array of characters, and
finds the highest letter alphabetically in the array. i.e. if passed the
following characters: x a b p s, it should return x because x is the
last of those alphabetically.
Choose the correct base condition that completes the code correctly
from the choices below.
public static char last_letter_used(char[] charArray, int position) {
//Base condition goes here
else {
if(charArray[position]>last_letter_used(charArray,position+1)) {
return charArray[position];
}
else {
return(last_letter_used(charArray,position+1));
}
}
}
options:
1. if(position==0) {
return charArray[position];
}
2. if(position==charArray.length) {
return charArray[position];
}

, 3. if(position==charArray.length-1) {
return charArray[position];
}
4. if(charArray.length==0) {
return charArray[position];
} - answer 3. if(position==charArray.length-1) {
return charArray[position];
}


Given the following method:
public static int myFunc(int x, int y) {
if(x==0) {
return y;
}
else {
return myFunc(x-1,y+1);
}
}
What is the value of x after the following call:int x = myFunc(2,4);
1. 4
2. 6
3. 8
4. Infinite recursion - answer 2. 6


This method is designed to find the lowest integer in an array.
Which of the following choices is the correct recursive call?
public static int lowest(int[] a,int start) {
if(start>=a.Length-1) {

Written for

Institution
CSE 1300
Module
CSE 1300

Document information

Uploaded on
November 6, 2024
Number of pages
7
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
BRAINBOOSTERS Howard Community College
Follow You need to be logged in order to follow users or courses
Sold
704
Member since
2 year
Number of followers
254
Documents
24289
Last sold
1 day ago

4.5

344 reviews

5
267
4
30
3
22
2
5
1
20

Trending documents

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these revision notes.

Didn't get what you expected? Choose another document

No problem! You can straightaway pick a different document that better suits what you're after.

Pay as you like, start learning straight away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and smashed it. It really can be that simple.”

Alisha Student

Frequently asked questions