10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
Home / Nptel Assignment Answers 2025 / Data Structure And Algorithms Using Java / Data Structure and Algorithms using Java Week 2 Nptel Answers How can we help you?
NPTEL ASSIGNMENT ANSWERS
2025 Data Structure and Algorithms using
Data Structure And
Algorithms Using
7
Java Week 2 Nptel Answers
Java
3 months ago Sonali 6 minutes
All About NPTEL
Data Structure and Algorithms
using Java Week 1 Nptel Answers Are you looking for the Data Structure and Algorithms using Java Week 2 NPTEL Answers ? You’ve
come to the right place! We provide accurate and detailed solutions to help you with your Week 2
Data Structure and Algorithms
using Java Week 2 Nptel Answers assignments in this course.
Data Structure and Algorithms
using Java Week 3 Nptel Answers
Table of Contents
Data Structure and Algorithms 1. Data Structure and Algorithms using Java Week 2 Nptel Answers (July-Dec 2025)
using Java Week 4 Nptel Answers 2. Data Structure and Algorithms using Java Week 2 Nptel Answers (July-Dec 2024)
Data Structure and Algorithms
using Java Week 5 Nptel Answers
Data Structure and Algorithms
using Java Week 8 Nptel Answers
5G Wireless Standard 5
Design Nptel All
Weeks
Accreditation and 1
Outcome Based
Learning
Advanced R 5
Programming for
Data Analytics in
Business
AI in Human 11
Resource Data Structure and Algorithms using Java Week 2 Nptel Answers
Management
AI in Marketing 11
AI Knowledge 10
Data Structure and Algorithms using Java Week 2
Representation And Nptel Answers (July-Dec 2025)
Reasoning
Air Pollution and 11
Control Question 1. Which of the following interfaces are NOT descendants of java.util.Collection ?
a) java.util.SortedMap
An Introduction to 13
Artificial Intelligence b) java.util.Set
c) java.util.SortedSet
An Introduction to 7 d) java.util.Queue
Programming
Through C++
Analog VLSI Design 2
Applied Positive 5
Psychology
Artificial Intelligence 5
Concepts and
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 1/8
10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
Techniques
Artificial Intelligence 5
for Economics Practice Design Questions
Artificial Intelligence Draw Your System Diagrams
5
in Drug Discovery Airbnb System Design Interview? PrepLoop Preps You for the Ultimate
and Development Challenge
Artificial Intelligence 3
Search Methods For
Problem Solving preploop.io OPEN
Automation in 2
Manufacturing
View Answers
Big Data Computing 1
Nptel All Week
Assignment Answers
Question 2. Which of the following statements is not true for Java?
Blockchain and its 15 a) Java supports the basic data structures like arrays and linked lists.
Applications b) Java does not support complex data structures.
Body Language Key 2 c) Java provides built-in support for data structures through the Java Collections Framework.
to Professional d) A collection in Java is any group of objects.
Success
View Answers
Brand Management 5
Brief Introduction to 4
Psychology Question 3. Which of the following are valid ways to declare collection-based data structures
in Java?
Business and 1
a) List<Integer> list = new ArrayList<>();
Sustainable
Development b) Map<string> map = new HashMap<>();
c) Set<String> set = new HashSet<>();
Business Intelligence 11 d) Queue<Integer> queue = new PriorityQueue<>();
& Analytics
View Answers
Business to Business 2
Marketing
C Programming & 4 Question 4. What will be the output of the following code snippet?
Assembly Language
Nptel Answers
import java.util.*;
Cell and Molecular 2
public class TestQ4 {
Biology
public static void main(String[] args) {
Cloud Computing 25 List<Number> list = new ArrayList<>();
list.add(2);
Cloud Computing 8 list.add(2.0);
and Distributed System.out.println(list);
Systems }
}
Compiler Design 11
Computer 5 a) [2, 2.0]
Architecture and b) [20, 2]
Organization Answers c) Compilation Error – can’t mix int and double
Nptel
d) Runtime Error – incompatible types
Computer 9
Architecture Nptel
Computer Graphics 9 Practice Design Questions
Computer Networks 11 Draw Your System Diagrams
And Internet Airbnb System Design Interview? PrepLoop Preps You for the Ultimate
Protocol Challenge
Computer Vision 5
Nptel Assignment
Answers
preploop.io OPEN
Consumer Behaviour 8
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 2/8
10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
Consumer 2 View Answers
Psychology
Corporate Finance 2
Question 5. Which of the following operations are NOT supported by the SortedSet interface?
Corporate Social 2 a) Adding elements
Responsibility b) Sorting elements explicitly
c) Retrieving by index
Customer 1
Relationship d) Removing elements
Management
View Answers
Cyber Security and 22
Privacy
Dairy and Food 2 Question 6. What is the error in the following code?
Process and
Products Technology
import java.util.*;
Data Analytics with 11 class Test {
Python public static void main(String[] args) {
HashSet<String> set = new HashSet<>();
Data Base 17 set.add("apple");
Management set.add("banana");
System set.add("apple");
System.out.println(set);
Data Mining 8
}
}
Data Science for 10
Engineers
a) Compilation Error
Data Structures and 5
Algorithms Design b) Runtime Error – duplicate element
c) No error; duplicate is ignored
Deep Learning 28 d) Output always matches insertion order
Deep Learning for 8
Computer Vision See also Data Structure and Algorithms using Java Week 5 Nptel Answers
Demystifying 4
Networking Nptel View Answers
Assignment Answers
Design and analysis 8
of algorithms Question 7. Which of the following are part of the Map framework in Java?
a) TreeMap
Design and 5
Implementation of b) HashMap
Human-Computer c) LinkedList
Interfaces d) Hashtable
Design Thinking A 4
Primer
Developing Soft 9
Skills and Personality
Digital Circuits 8
Digital Image 5
Processing
Discrete 14
Mathematics
Drone Systems and 5
Control View Answers
E Business Nptel 5
Answers
Question 8. What is the output of the following code?
Educational 2
Leadership
import java.util.*;
Electric Vehicles 5 public class TestQ8 {
public static void main(String[] args) {
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 3/8
10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
SortedMap<Integer, String> map = new TreeMap<>();
Emotional 8
Intelligence map.put(3, "Apple");
map.put(1, "Banana");
English Language for 2 map.put(4, "Cherry");
Competitive Exams map.put(2, "Date");
System.out.println(map);
Entrepreneurship 5 }
}
Entrepreneurship and 2
IP Strategy
a) {3=Apple, 1=Banana, 4=Cherry, 2=Date}
Entrepreneurship 11
b) {1=Banana, 2=Date, 3=Apple, 4=Cherry}
Essentials
c) {Apple=3, Banana=1, Cherry=4, Date=2}
Environmental 2 d) Compilation Error
Science
View Answers
Ethical Hacking 22
Ethics in Engineering 1
Practice Question 9. Which of the following is NOT a legacy class or interface in Java?
a) Hashtable
Financial Accounting 2
b) Enumeration
Food Packaging 5 c) Queue
Technology d) Vector
Forests and Their 8
Management
Foundations of 5
Virtual Reality
Fundamentals of 5
Artificial Intelligence
Hardware Modeling 5
using Verilog
HR Analytics All 5
Weeks Nptel
Assignment Answers
View Answers
Human Physiology 5
Human Resource 2
Development Question 10. What is the output of the following code?
Innovation, Business 1
Models and import java.util.*;
Entrepreneurship public class TestQ10 {
public static void main(String[] args) {
Intellectual Property 11 Vector<String> vec = new Vector<>();
vec.add("A");
Introduction to 11 vec.add("B");
Database Systems vec.remove(1);
vec.add("C");
Introduction to GST 1
System.out.println(vec);
Introduction To 22 }
Industry 4.0 And }
Industrial Internet Of
Things
a) [A, C]
Introduction To 24 b) [B, C]
Internet Of Things c) [A, B, C]
d) [A]
Introduction to Large 5
Language Models
View Answers
(LLM)
Introduction To 39
Machine Learning
Introduction to 17
Data Structure and Algorithms using Java Week 2
Operating Systems Nptel Answers (July-Dec 2024)
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 4/8
10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
Introduction To 9
Programming In C
Leadership and 16
Team Effectiveness
Learning Analytics 4
Tools
Logistics and Supply 5
Chain Management
Machine Learning 4
and Deep Learning -
Fundamentals and
Course Link: Click Here
Applications
Management 3
Information System Q1.Which of the following classes is part of the Java Collections Framework and implements
Nptel All Weeks
Answers the List interface?
a. HashSet
Marketing 1 b. LinkedList
Management-I c. TreeMap
Marketing Research 3 d. PriorityQueue
and Analysis
Answer: b. LinkedList
Mental Health and 2
Wellbeing
Multi-Core 13 Q2. Which of the following is True in the case of Java Collection Framework(JCF)?
Computer a. JCF provides mid-performance software encoding
Architecture b. Extending and/or adapting a collection is easy and not flexible with JCF
Municipal Solid 5 c. The JCF is consist of : Collections and Facilities
Waste Management d. The JCF doesn’t allow different types of collections to work with a high degree of
interoperability.
Natural Language 11
Processing Answer: c. The JCF is consist of : Collections and Facilities
Operating System 3
Fundamentals
For answers or latest updates join our telegram channel: Click here to join
Organizational 3
Behaviour
See also Stress Management Nptel Week 2 Assignment Answers
Patent Drafting for 2
Beginners
These are Data Structure and Algorithms using Java Week 2 Nptel Assignment Answers
Practical Cyber 4
Security for Cyber
Security Practitioners
Q3. Which of the following interfaces is not part of the Java Collections Framework?
Principles of 13
a. Set
Managements
b. Queue
Privacy and Security 4 c. Map
in Online Social d. Stream
Media
Probability And 13
Statistics
Problem Solving 22
Through
Programming In C
Product and Brand 4
Management
Product Design and 3
Development
Programming Data 12
Structure And Answer: d. Stream
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 5/8
10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
Algorithms Using
Python Q4. Which of the following statements is true regarding legacy classes in the Java Collections
Programming In 24 Framework?
Java a. All legacy classes have been deprecated and should no longer be used.
b. Legacy classes are fully compatible with the Java Collections Framework and have not been
Programming in 24
Modern C++ deprecated.
c. Legacy classes are part of the Java Collections Framework and implement all collection
Project Management: 5 interfaces.
Planning, Execution, d. Legacy classes are new additions to the Java Collections Framework introduced in Java 8.
Evaluation and
Control Answer: b. Legacy classes are fully compatible with the Java Collections Framework and have
Psychology of 4 not been deprecated
Learning
Public Speaking 4
Nptel All Weeks For answers or latest updates join our telegram channel: Click here to join
Python for Data 9 These are Data Structure and Algorithms using Java Week 2 Nptel Assignment Answers
Science
Quantum Mechanics 12
1 Q5. Which interface extends SortedSet to handle retrieval of elements based on closest-
match?
Reinforcement 4 a. Set
Learning
b. SortedSet
Responsible and Safe 4 c. NavigableSet
AI Systems All Weeks d. Collection
Robotics 3
Sensors and 4
Actuators
Social Network 4
Analysis All Weeks
Social Networks 17
Soft Skills 9
Soft Skills 19
Development
Software 7 Answer: c. NavigableSet
Engineering
Software Project 4
Management All Q6.Which of the following statements is/are incorrect for Java Collection Framework (JCF)?
Weeks a. Vector is similar to. ArrayList, which represents a dynamic array
b. Stack is a subclass of Vector that implements a standard last-in,first-out stack.
Software Testing 13
c. Unlike HashMap, Hashtable doesn’t store Key/value pairs.
Strategic 5 d. Class Properties are used to maintain a list of values in which both key and value are String.
Management
Answer: c. Unlike HashMap, Hashtable doesn’t store Key/value pairs.
Strategic Sales 3
Management
Stress Management 3 For answers or latest updates join our telegram channel: Click here to join
All Weeks
These are Data Structure and Algorithms using Java Week 2 Nptel Assignment Answers
Sustainable Energy 5
Technology
Sustainable 2 Q7. In the Java Collections Framework (JCF), the Properties class extends __?
Happiness a. HashMap
Technical 2 b. Hashtable
Communication for c. TreeMap
Engineers d. HashSet
The Joy of 25
Computing Using
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 6/8
10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
Python
See also Computer Vision Nptel Week 2 Assignment Answers
Theory of 8
Computation
Answer: b. Hashtable
Understanding 2
Incubation and
Entrepreneurship
Q8. In the Java Collections Framework, TreeMap extends which class and implements which
VLSI Design Flow: 5 interface?
RTL to GDS a. Extends HashMap; implements sortedMap
Wastewater 5 b. Extends AbstractMap; implements NavigableMap
Treatment and c. Extends Hashtable; implements TreeSet
Recycling d. Extends LinkedHashMap; implements List
Wild Life Ecology 3 Answer: b. Extends AbstractMap; implements NavigableMap
For answers or latest updates join our telegram channel: Click here to join
Popular
Time Management and ways of Thinking
These are Data Structure and Algorithms using Java Week 2 Nptel Assignment Answers
Time Management
Fundamentals Final Exam
Q9. In the Queue interface of the Java Collections Framework, what do the peek() and poll()
methods respectively do?
Entrepreneurship
a. Both methods retrieve and remove the head of the queue.
Entrenerprenaurship b. Both methods retrieve but do not remove the head of the queue.
Foundations Linkedin c. peek() retrieves and removes the head of the queue, while poll() retrieves but does not remove
Learning the head of the queue.
d. peek() retrieves but does not remove the head of the queue, while poll() retrieves and removes
Academic Paper Writing and IPR, Design the head of the queue.
Thinking and Creativity for Innovation, Team
Skills
Thinking Creatively Quiz Answer: d. peek() retrieves but does not remove the head of the queue, while poll() retrieves
and removes the head of the queue.
Team Skills
Teamwork Foundations Q10.Which of these interface handle sequences?
a. Set
Team Skills b. Array
Effective Listening c. List
d. Collection
Design Thinking and Creativity for
Innovation
Answer: c. List
Agile Foundations
For answers or latest updates join our telegram channel: Click here to join
Design Thinking and Creativity for
Innovation
These are Data Structure and Algorithms using Java Week 2 Nptel Assignment Answers
Design Thinking Data
Intelligence Want all Weeks of Data Structure and Algorithms using Java Nptel Assignment Answers : Click
here
Academic Paper Writing and IPR
For answers to additional Nptel courses, please refer to this link: NPTEL Assignment Answers
Business Writing
Principles
Cloud Computing
Similar:
Cloud Computing | Week
1
Time Management and ways of Thinking
Finding Your Time Data Structure and Data Structure and Data Structure and
Management Style All About NPTEL Algorithms using Java Algorithms using Java Algorithms using Java
Week 5… Week 3… Week 4…
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 7/8
10/19/25, 4:17 AM Data Structure And Algorithms Using Java Week 2 Nptel Ans
Data Structure and Data Structure and
Algorithms using Java Algorithms using Java
Week 1…
1 Week 8…
8
#Nptel Week 2 Assignment Answers and Solutions
© 2025 Progiez - Making Your Programming Easy
https://progiez.com/data-structure-and-algorithms-using-java-week-2-nptel 8/8