Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 2 out of 9 pages
Exam (elaborations)

Data Structures and Algorithms

Document preview thumbnail
Preview 2 out of 9 pages

Data Structures and Algorithms

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

Document information

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

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Sold
0
Followers
0
Items
222
Last sold
-




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

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions