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

Data Structures and Algorithms

Rating
-
Sold
-
Pages
9
Grade
A+
Uploaded on
13-06-2025
Written in
2024/2025

Data Structures and Algorithms

Institution
Graduation In Computer Science
Course
Graduation in computer science









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Graduation in computer science
Course
Graduation in computer science

Document information

Uploaded on
June 13, 2025
Number of pages
9
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

CS 2336 Exam 2

Analyze the following code:
public class Test {
public static void main(String[] args) {
new B();
}
}
class A {
int i = 7;
public A() {
System.out.println("i from A is " + i);
}
public void setI(int i) {
this.i = 2 * i;
}
}
class B extends A {
public B() {
setI(20);
// System.out.println("i from B is " + i);
}
@Override
public void setI(int i) {
this.i = 3 * i;
}
} - Correct Answers-The constructor of class A is called and it displays "i from A is 60".

Suppose list is a LinkedList that contains 1 million int values. Analyze the following code:
A:
for (int i = 0; i < list.size(); i++){
sum+= list.get(i);
}

B:
for (int i : list){
sum += i;
} - Correct Answers-Code fragment B runs faster than code fragment A.

, Fill in the most appropriate code in the blanks in the MyInt class?

public class MyInt implements _______ {
int id;

public MyInt(int id) {
this.id = id;
}

public String toString() {
return String.valueOf(id);
}
public int compareTo(_______ arg0) {
if (id > arg0.id)return 1;
else if (id < arg0.id)
return -1;
else
return 0;
}
} - Correct Answers-Comparable / MyInt

The iterator() method returns an instance of the ________ interface. - Correct Answers-Iterator

public class Test1 {
public static void main(String[] args) {
System.out.println(f1(3));
System.out.println(f2(3, 0));
}
public static int f1(int n) {
if (n == 0) return 0;
else { return n + f1(n - 1);
}
}
public static int f2(int n, int result) {
if (n == 0) return result;
else return f2(n - 1, n + result);
}
} - Correct Answers-f2 is tail recursion, but f1 is not
$11.99
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
phil3

Also available in package deal

Thumbnail
Package deal
DATA STRUCTURES AND ALGORITHMS 2025
-
7 2025
$ 83.93 More info

Get to know the seller

Seller avatar
phil3 stuvia
View profile
Follow You need to be logged in order to follow users or courses
Sold
0
Member since
6 months
Number of followers
0
Documents
222
Last sold
-
A+ QuickPass exam packs.

Get real nursing exam questions with certified answers. Perfect for quick revision and exam prep. Clear, accurate and easy to use. Package deals also available with 50 % offer. Study smart, pass fast!

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

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 tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right 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 aced it. It really can be that simple.”

Alisha Student

Frequently asked questions