100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
CSC 1351 Answer-Integrated Exam 2024/2025 $14.49   Add to cart

Exam (elaborations)

CSC 1351 Answer-Integrated Exam 2024/2025

 3 views  0 purchase

Three examples of ADTs Answer: Arrays, Array lists, Strings Nodes consist of two items, what are they? Answer: data, next In order to delete a node you must have what? Answer: current position and previous position What is included in a linked list node? I) a ref...

[Show more]

Preview 3 out of 18  pages

  • August 30, 2024
  • 18
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
All documents for this subject (6)
avatar-seller
Schoolflix
CSC 1351 Answer-Integrated Exam
2024/2025

Three examples of ADTs Answer: Arrays, Array lists, Strings



Nodes consist of two items, what are they? Answer: data, next



In order to delete a node you must have what? Answer: current position and previous position



What is included in a linked list node?



I) a reference to the next node

II) an array reference

III) a data element Answer: I and III



insert the missing code in the following code fragment. The fragment is intended to add a new node to
the head of a linked list:



public class LinkedList

{

....

public void addFirst(Object element)

{

Node newNode = new Node();

newNode.data = element;

,---------

---------

}

....

}



A. first = newNode;

newNode.next = first;



B. newNode.next = first;

first = newNode;



C. first = newNode.next;

newNode.next = first;



D. first = newNode.next;

newNode = first; Answer: B. newNode.next = first;

first = newNode;



Insert the missing code in the following code fragment. This fragment is intended to

remove a node from the head of a linked list:

public class LinkedList

{

...

public Object removeFirst()

, {

if (first == null)

{

throw new

NoSuchElementException();

}

Object element = first.data;

________________

________________

}

...

}

A. first = first.next;

return element;



B. first.next = first;

return element;



C. first = element.next;

return element;



D. first = element.next;

return null; Answer: A. first = first.next;

return element;

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller Schoolflix. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $14.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

78998 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$14.49
  • (0)
  Add to cart