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
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
Module
Graduation in computer science

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

Written for

Institution
Graduation in computer science
Module
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

£9.74
Get access to the full document:

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

Get to know the seller
Seller avatar
phil3

Also available in package deal

Get to know the seller

Seller avatar
phil3 stuvia
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
9 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

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