Quizermania Logo

Programming in Java | NPTEL 2022 | Week 11 quiz solutions

This set of MCQ(multiple choice questions) focuses on the  Programming in Java NPTEL 2022 Week 11 Quiz Solutions .

Course layout (Answers Link)

Answers COMING SOON! Kindly Wait!

Week 1 : Overview of Object-Oriented Programming and Java Programming Assignment Week 2: Java Programming Elements Programming Assignment Week 3: Input-Output Handling in Java Programming Assignment Week 4: Encapsulation Programming Assignment Week 5: Inheritance Programming Assignment Week 6: Exception Handling Programming Assignment Week 7: Multithreaded Programming Programming Assignment Week 8: Java Applets and Servlets Programming Assignment Week 9: Java Swing and Abstract Windowing Toolkit Programming Assignment Week 10: Networking with Java Programming Assignment Week 11: Java Object Database Connectivity Week 12: Interface and Packages for Software Development

NOTE:  You can check your answer immediately by clicking show answer button. Programming in Java NPTEL 2022 Week 11 Quiz Solutions” contains 10 questions.

Now, start attempting the quiz.

Programming in Java NPTEL 2022 Week 11 Quiz Solutions

Q1. MySQL is a ___________.

a) Java Database Connectivity Driver b) Relational Database Management System c) Java Runtime Environment d) Java Development Kit

Answer: b) Relational Database Management System

Q2. The _________________ object allows you to execute parametrized queries.

a) ResultSet b) PreparedStatement c) ParameterizedStatement d) Condition

Answer: b) PreparedStatement

Q3. Which of the following best describes about JDBC?

a) JDBC works like a bridge connecting a Java application to a RDBMS, execute SQL commands and return results to the application. b) JDBC is a software component, which is both network and database independent. c) JDBC should be installed in the same machine from where the Java application will run. d) JDBC should be installed in the same server that of the database.

Q4. Which of the following is not a JDBC drivers?

a) Native – API driver b) Thin driver c) Network protocol driver d) Local Protocol driver

Answer: d) Local Protocol driver

Q5. The package, which is required to be imported for the JDBC programming?

a) java.net b) java.sql c) java.lang d) java.io

Answer: b) java.sql

Q6. How do you know in your Java program that a SQL warning is generated as a result of executing a SQL statement in the database?

a) You must catch the checked SQLException which is thrown by the method which executes the statement b) You must catch the unchecked SQLWarningExecption which is thrown by the method which executes the statement c) You must invoke the getWarnings() method on the Statement object (or a sub interface thereof). d) You must query the ResultSet object about possible warnings generated by the database.

Q7. Which one of the following contains both date and time information?

a) java.sql.TimeStamp b) java.sql.Time c) java.io.Time d) java.io.TimeStamp

Answer: a) java.sql.TimeStamp

Q8. Which of the following statement(s) is/are true?

a) 3306 is the default MySQL port. b) Database name is ‘nptel’ c) The database server is hosted on IP 127.0.0.1 d) Password for user ‘java’ is ‘joy’.

Answer: a), b), c)

Q9. Which of the following method is used to perform DML statements in JDBC?

a) executeResult() b) executeQuery() c) executeUpdate() d) execute()

Answer: c) executeUpdate()

Q10. The ___________ method sets the query parameters of the PreparedStatement Object.

a) putString() b) insertString() c) setString() d) setToString()

Answer: c) setString()

Previous Course – Week 11 Quiz Solutions

Q1. Which of the following is not a JDBC drivers?

Q2. Which of the following is a JDBC class component?

a) Connection b) ResultSet c) Statement d) Driver

Answer: b) ResultSet

Q3. As with Statement objects, to execute a PreparedStatement object, it need to be call an execute statement. Which of the following statement(s) is/are true regarding this?

a) executeQuery: if the query returns only one ResultSet (such as a SELECT SQL statement). b) executeUpdate: if the query does not return a ResultSet (such as an UPDATE SQL statement). c) execute: if the query might return more than one ResultSet object d) executeupdateQuery: if the query does return a ResultSet (such as an UPDATE SQL statement).

Q4. Which of the following statement(s) is/are true, when the return value for executeUpdate is 0?

a) The statement executed was an update statement that affected zero rows. b) The statement executed was a DDL statement c) The statement executed was an update statement that affected one row. d) The statement executed was a DCL statement

Answer: a), b)

Q5. Which of the following statement is used for executing a database stored procedure?

a) Statement b) PreparedStatement c) CallableStatement d) None of these

Answer: c) CallableStatement

Programming in Java NPTEL 2022 Week 11 quiz Solutions

Q6. One a JDBC driver has been registered, which of the following method is used to make a database connection?

a) getConnection(String url, String userID, String password) b) setConnection(String url, String userID, String password) c) Connect(String url, String userID, String password) d) Any one of the above.

Answer: a) getConnection(String url, String userID, String password)

Q7. The SQL command “USE test” implies, which of the following?

a) List all the databases those are there in the database server b) List all the tables those are there under the database c) Create a table called test d) Set test as the current working database, so that any SQL command bind to the test database onhy

Answer: d) Set test as the current working database, so that any SQL command bind to the test database only

Programming in Java NPTEL 2022 Week 11 Quiz solutions

nptel java week 11 assignment answers 2022

Q9. How do you know in your Java program that a SQL warning is generated as a result of executing a SQL statement in the database?

a) You must catch the checked SQLExecution which is thrown by the method which executes the statement. b) You must catch the unchecked SQLWarningExecption which is thrown by the method which executes the statement. c) You must invoke the getWarnings() method on the Statement object (or a sub interface thereof) d) You must query the ResultSet object about possible warnings generated by the database.

Answer: c) You must invoke the getWarnings() method on the Statement object (or a sub interface thereof)

Q10. Which one of the following SQL type represent getfloat()?

a) FLOAT b) REAL c) INTEGER d) DOUBLE

Answer: b) REAL

>> Prev- Programming in Java Week 10 Assignment Solutions

>> Next- Programming in Java Week 12 Assignment Solutions

For discussion about any question, join the below comment section. And get the solution of your query. Also, try to share your thoughts about the topics covered in this particular quiz.

Related Posts

Html mcq : html basics (multiple choice question), html mcq : html web browsers (multiple choice question).

Preprocessor Directives

C programming MCQ : Preprocessor Directives(MULTIPLE CHOICE QUESTION)

C++ mcq : c++ basics(multiple choice question), leave a comment cancel reply.

Your email address will not be published. Required fields are marked *

Save my name, email, and website in this browser for the next time I comment.

  • 1st Central Law Reviews: Expert Legal Analysis & Insights

NPTEL Online Course Assignment Solution 2021 | Swayam NPTEL Assignment Answers 2021

  • _Announcement
  • _Unproctored Exam
  • __Online Programming
  • _Contact Page

Programming In Java Week 11: Programming Assignments Jan-Jun 2022

  NPTEL PROGRAMMING ASSIGNMENTS

Programming In Java

Week 11 : Programming Assignment 1

Column

UID

First_Name

Last_Name

Age

Row 1

1

Ram

Gopal

26

Row 2

2

John

Mayer

22

import java.sql.*; import java.lang.*; public class InsertData {     public static void main(String args[]) {         try {               Connection conn = null;               Statement stmt = null;               String DB_URL = "jdbc:sqlite:/tempfs/db";               System.setProperty("org.sqlite.tmpdir", "/tempfs");                            // Open a connection               conn = DriverManager.getConnection(DB_URL);               stmt = conn.createStatement();

-- Solution --  

  String que = " insert into PLAYERS (UID, first_name, last_name, age)" + " values (?, ?, ?, ?)"; PreparedStatement preparedStmt = conn.prepareStatement(que); preparedStmt.setInt (1, 1); preparedStmt.setString (2, "Ram"); preparedStmt.setString (3, "Gopal"); preparedStmt.setInt(4, 26); preparedStmt.execute(); preparedStmt.setInt (1, 2); preparedStmt.setString (2, "John"); preparedStmt.setString (3, "Mayer"); preparedStmt.setInt(4, 22); preparedStmt.execute();

Week 11 : Programming Assignment 2

Write the required code in order to  update the following data in the table ‘ PLAYERS ’ .

Column

UID

First_Name

Last_Name

Age

From

1

Ram

Gopal

26

To

1

Rama

Gopala

24

import java.sql.*; import java.lang.*; public class UpdateData {     public static void main(String args[]) {         try {               Connection conn = null;               Statement stmt = null;               String DB_URL = "jdbc:sqlite:/tempfs/db";               System.setProperty("org.sqlite.tmpdir", "/tempfs");               String query="";                            // Open a connection               conn = DriverManager.getConnection(DB_URL);               stmt = conn.createStatement();

  String sq1 = "UPDATE PLAYERS " + "SET Age = 24 WHERE UID == 1"; stmt.executeUpdate(sq1); String sq2 = "UPDATE PLAYERS " + "SET Last_Name = 'Gopala' WHERE UID == 1"; stmt.executeUpdate(sq2); String sq3 = "UPDATE PLAYERS " + "SET First_Name = 'Rama' WHERE UID == 1"; stmt.executeUpdate(sq3);

Week 11 : Programming Assignment 3

Write the appropriate code in order to  delete the following data in the table ‘ PLAYERS ’ .

Column

UID

First_Name

Last_Name

Age

Delete

1

Rama

Gopala

24

import java.sql.*; import java.lang.*; public class DeleteData {     public static void main(String args[]) {         try {               Connection conn = null;               Statement stmt = null;               String DB_URL = "jdbc:sqlite:/tempfs/db";               System.setProperty("org.sqlite.tmpdir", "/tempfs");               String query="";                            // Open a connection               conn = DriverManager.getConnection(DB_URL);               stmt = conn.createStatement();

  // Execute the command in order to delete a row from the table String sq1 = "DELETE FROM PLAYERS " +"WHERE UID == 1"; stmt.executeUpdate(sq1);

Week 11 : Programming Assignment 4

Complete the following program to  calculate the average age of the players in the table ‘ PLAYERS ’ . Structure of Table 'PLAYERS' is given below:

Column

UID

First_Name

Last_Name

Age

Type

Integer

Varchar(45)

Varchar(45)

Integer

import java.sql.*; import java.lang.*; public class CalAverage {     public static void main(String args[]) {         try {               Connection conn = null;               Statement stmt = null;               String DB_URL = "jdbc:sqlite:/tempfs/db";               System.setProperty("org.sqlite.tmpdir", "/tempfs");               String query="";               // Open a connection               conn = DriverManager.getConnection(DB_URL);               stmt = conn.createStatement();

  preparedStmt.setInt (1, 1); preparedStmt.setString (2, "Rama"); preparedStmt.setString (3, "Gopala"); preparedStmt.setInt(4, 24); preparedStmt.execute(); preparedStmt.setInt (1, 2); preparedStmt.setString (2, "John"); preparedStmt.setString (3, "Mayer"); preparedStmt.setInt(4, 22); preparedStmt.execute(); preparedStmt.setInt (1, 3); preparedStmt.setString (2, "Leo"); preparedStmt.setString (3, "Martin"); preparedStmt.setInt(4, 27); preparedStmt.execute(); ResultSet rss = stmt.executeQuery("SELECT * FROM players;"); int count=0,totall=0; while(rss.next()){ count++; totall = totall + Integer.parseInt(rss.getString(4)); } System.out.println("Average age of players is " +(totall/count)); conn.close();

Week 11 : Programming Assignment 5

import java.sql.*; import java.lang.*; public class DropTable {     public static void main(String args[]) {         try {               Connection conn = null;               Statement stmt = null;               String DB_URL = "jdbc:sqlite:/tempfs/db";               System.setProperty("org.sqlite.tmpdir", "/tempfs");               String query="";                            // Open a connection               conn = DriverManager.getConnection(DB_URL);               stmt = conn.createStatement();

  // Write the SQL command to drop a table String sql = "Drop table PLAYERS"; stmt.executeUpdate(sql);

Contact Form

Programming in Java | Week 11

Session: JAN-APR 2024

Course name: Programming In Java

Course Link: Click Here

For answers or latest updates join our telegram channel: Click here to join

These are NPTEL Programming In Java Week 11 Assignment 11 Answers

Q1. What is the correct order to close database resources? a. Connection then Statement then ResultSet b. ResultSet then Statement then Connection c. Statement then Connection then ResultSet d. Statement then ResultSet then Connection

Answer: Please login to see answer .

Q2. How many types of JDBC drivers there? a. 3 b. 4 c. 8 d. 10

Q3. What is the correct sequence to create a database connection? i. Import JDBC packages. ii. Open a connection to the database. iii. Load and register the JDBC driver. iv. Execute the statement object and return a query resultset. v. Create a statement object to perform a query. vi. Close the resultset and statement objects. vii. Process the resultset. viii. Close the connection. a. i, ii, iii, v, iv, vii, viii, vi b. i, iii, ii, v, iv, vii, vi, viii c. ii, i, iii, iv, viii, vii, v, vi d. i, iii, ii, iv, v, vi, vii, viii

Q4. Which of the following is correct about connection pooling? a. Application server like WebLogic, WebSphere, jBoss and Tomcat provides the facilities to configure connection pooling. b. components like Apache Commons DBCP Component can be used to configure connection pooling. c. Both of the above. d. None of the above.

Q5. Which of the following is used to test the operation? a. JDBC API b. JDBC Driver manager c. JDBC Test suite d. JDBC-ODBC Bridge Drivers

Q6. The JDBC architecture consists of ________ _ to access a database. a. three-tier processing models b. two-tier processing models c. two-tier and three-tier processing models d. None of the above

Q7. Which of these obtains a Connection? a. Connection.getConnection(url) b. Driver.getConnection(url) c. DriverManager.getConnection(url) d. new Connection(url)

Q8. Which class provides methods to create a client-side socket in Java? a. ServerSocket b. NetSocket c. Socket d. ClientSocket

Q9. What does JDBC stand for? a. Java DataBase Connectivity b. Java DataBase Connection c. Java DataBase Control d. Java DataBase Connector

Q10. Which method can be used to query for a single object using JdbcTemplate? a. queryForObject() b. queryForList() c. query() d. singleQuery()

Programming Assignment

Question 1 The following code is missing some information needed to run the code. Add whatever is missing and make the code runnable.

Question 2 Write the JDBC codes needed to create a Connection interface using the DriverManager class and the variable DB_URL. Check whether the connection is successful using ‘isAlive(timeout)’ method to generate the output, which is either ‘true’ or ‘false’. Note the following points carefully: § Name the connection object as conn only. § Use timeout value as 1.

Question 3 Due to some mistakes in the below code, the code is not compiled/executable. Modify and debug the JDBC code to make it execute successfully.

Question 4 Complete the code segment to create a new table named ‘STUDENTS’ in SQL database using the following information.

Question 5 Complete the code segment to rename an already created table named ‘STUDENTS’ into ‘GRADUATES’.

More Weeks of Programming In Java: Click here

More Nptel Courses: https://progiez.com/nptel-assignment-answers

Session: JULY-DEC 2023

Course Name: Programming In Java

Question 1 Complete the code segment to insert the following data using prepared statement in the existing table ‘PLAYERS’.

UIDFirst_NameLast_NameAge
1RamGopal26
2JohnMayer22

Question 2 Write the required code in order to update the following data in the table ‘PLAYERS’.

UIDFirst_NameLast_NameAge
1RamGopal26
1RamaGopala24

Question 3 Write the appropriate code in order to delete the following data in the table ‘PLAYERS’.

UIDFirst_NameLast_NameAge
1RamaGopala24

Question 4 Complete the following program to calculate the average age of the players in the table ‘PLAYERS’. Structure of Table ‘PLAYERS’ is given below:

UIDFirst_NameLast_NameAge
IntegerVarchar (45)Varchar (45)Integer

Question 5 Complete the code segment to drop the table named ‘PLAYERS’.

More Nptel Courses: Click here

Session: JAN-APR 2023

Course Name: Programming in Java

Q1. Which of the following interfaces is used to manage transactions in JDBC? a. Connection b. Statement c. Transaction d. ResultSet

Answer: a. Connection

Q2. Which of the following interfaces is used to execute parameterized SQL statements in JDBC? a. ResultSet b. PreparedStatement c. Statement d. Connection

Answer: b. PreparedStatement

Q3. Which of the following statements is true? a. The executeQuery( ) method of java.sql.Statement interface is used to execute a DELETE statement. b. The executeQuery( ) method of java.sql.Statement interface is used to execute a SELECT statement. c. The executeQuery( ) method of java.sql.Statement interface is used to execute a INSERT statement. d. The executeQuery( ) method of java.sql.Statement interface is used to execute a UPDATE statement.

Answer: b. The executeQuery( ) method of java.sql.Statement interface is used to execute a SELECT statement.

Q4. Which of the following statements is true? a. The executeUpdate( ) method of java.sql.Statement interface is used to execute a DELETE statement. b. The executeUpdate( ) method of java.sql. Statement interface is used to execute a SELECT statement. c. The executeUpdate( ) method of java.sql.Statement interface is used to execute a INSERT statement. d. The executeUpdate( ) method of java.sql.Statement interface is used to execute a UPDATE statement.

Answer: a, c, d

Q5. Which of the following statements is true about JDBC? a. JDBC is a programming language. b. JDBC is a type of database. c. JDBC is an API for accessing relational databases from Java programs. d. JDBC is used to create graphical user interfaces.

Answer: c. JDBC is an API for accessing relational databases from Java programs.

Q6. Which of the following statements is true about the PreparedStatement interface in JDBC? a. PreparedStatement objects are precompiled before they are executed. b. PreparedStatement objects can only be used for SELECT statements. c. PreparedStatement objects cannot accept parameters at runtime. d. PreparedStatement objects can be reused for multiple SQL statements.

Answer: a, d

Q7. Which of the following statements is true about batch updates in JDBC? a. Batch updates can only be used for INSERT statements. b. Batch updates allow multiple SQL statements to be executed in a single transaction. c. Batch updates are executed immediately as soon as they are added to the batch. d. Batch updates can be rolled back.

Answer: b, d

Q8. Consider the following code. What is the output of the above code? a. Compilation error b. Runtime error c. 1, “one” is replaced by 2.”two™ in the table. d. “one” and “two” both are inserted in different columns of same row.

Answer: d. “one” and “two” both are inserted in different columns of same row.

Q9. Which type of JDBC driver translates JDBC calls into native database API calls? a. Type 1 driver b. Type 2 driver c. Type 3 driver d. Type 4 driver

Answer: b. Type 2 driver

Q10. Which of the following method is static and synchronized in JDBC API? a. getConnection( ) b. prepareCall() c. executeUpdate( ) d. executeQuery()

Answer: a. getConnection( )

Programming Assignment of Programming in Java

Complete the code segment to insert the following data using prepared statement in the existing table ‘ PLAYERS ’ .

Write the required code in order to update the following data in the table ‘ PLAYERS ’.

Write the appropriate code in order to delete the following data in the table ‘ PLAYERS ’.

Complete the following program to calculate the average age of the players in the table ‘ PLAYERS ’ .

Complete the code segment to drop the table named ‘ PLAYERS ’ .

More Weeks of Programming In Java: Click Here

More Nptel courses: https://progiez.com/nptel-assignment-answers/

These are NPTEL Programming In Java Week 11 Assignment 11 Answers

The content uploaded on this website is for reference purposes only. Please do it yourself first.

' src=

  • All Courses
  • Privacy Policy

' src=

Swayam Solver

Learn Programming & Prepare for NPTEL Exams... Swayam Solver is your one-stop destination for NPTEL exam preparation.

NPTEL Programming in Java Jan 2024 Week 11

Week 11 : programming assignment 1.

Public Test CasesInputExpected OutputActual OutputStatus

Week 11 : Programming Assignment 2

Write the JDBC codes needed to create a Connection interface using the   DriverManager   class and the variable   DB_URL .  Check whether the connection is successful using   ' isAlive(timeout) '   method to generate the output, which is either 'true' or 'false'.

  Note the following points carefully:

§   Name the connection object as   conn   only.

§   Use timeout value as 1.

Week 11 : Programming Assignment 3

Due to some mistakes in the below code, the code is not compiled/executable.

Modify and debug the JDBC code to make it execute successfully.

Week 11 : Programming Assignment 4

Complete the code segment  to create a new table named ‘ STUDENTS’  in SQL database using the following information.

UID

Name

Roll

Age

Integer

Varchar (45)

Varchar (12)

Integer

Week 11 : Programming Assignment 5

Complete the code segment  to rename an already created table named ‘ STUDENTS’   into ‘ GRADUATES ’.

No comments:

Post a comment.

Keep your comments reader friendly. Be civil and respectful. No self-promotion or spam. Stick to the topic. Questions welcome.

swayam-logo

  • Review Assignment
  • Announcements
  • About the Course
  • Explore Courses

NPTEL: Exam Registration is open now for July 2023 courses!

Dear Candidate,

Here is a golden opportunity for those who had previously enrolled in this course during the July 2022 semester, but could not participate in the exams or were absent/did not pass the exam for this course. This course is being reoffered in July 2023 and we are giving you another chance to write the exam in October 2023 and obtain a certificate based on NPTEL norms. Do not let go of this unique opportunity to earn a certificate from the IITs/IISc.

IMPORTANT instructions for learners - Please read this carefully  

1. The exam date for this course: Oct 29, 2023

2. CLICK HERE to register for the exam.

Please fill the exam form using the same Enrolled email id & make fee payment via the form, as before.

3. Choose from the Cities where exam will be conducted: Exam Cities

4. You DO NOT have to re-enroll in the courses. 

5. You DO NOT have to resubmit Assignments OR participate in the non-proctored programming exams(if applicable) in the previous semester

6. If you do enroll in the July 2023 course, we will take the best average assignment scores/non-proctored programming exam(if applicable) score across the two semesters.

Please check once if you have >= 40/100  in average assignment score and also participated and satisfied the criteria in the non-proctored programming exams(if applicable) that were conducted in July 2022 to become eligible for the e-certificate, wherever applicable.

If not, please submit assignments again in the July 2023 course and also participate in the non-proctored programming exams(if applicable) to become eligible for the e-certificate.

We will not be having new assignments or unproctored exams(if applicable) in the previous semester's ( July 2022 ) course. 

RECOMMENDATION: If you want to take new assignments and an unproctored exam(if applicable) or brush up on your lessons for the exam, please enroll in the July 2023 course.

Click here to enroll in the current course, links are provided corresponding to the course name.

7. Exam fees: 

If you register for the exam and pay before Aug 14, 2023, 5:00 PM, Exam fees will be Rs. 1000/- per exam .

8. 50% fee waiver for the following categories: 

Students belonging to the SC/ST category: please select Yes for the SC/ST option and upload the correct Community certificate.

Students belonging to the PwD category with more than 40% disability: please select Yes for the option and upload the relevant Disability certificate. 

9. Last date for exam registration: Aug 18, 2023, 5:00 PM (Friday). 

10. Between Aug 14, 2023, 5:00 PM & Aug 18, 2023, 5:00 PM late fee will be applicable.

11. Mode of payment: Online payment - debit card/credit card/net banking/UPI. 

12. HALL TICKET: 

The hall ticket will be available for download tentatively by 2 weeks prior to the exam date. We will confirm the same through an announcement once it is published. 

13. FOR CANDIDATES WHO WOULD LIKE TO WRITE MORE THAN 1 COURSE EXAM:- you can add or delete courses and pay separately – till the date when the exam form closes. Same day of exam – you can write exams for 2 courses in the 2 sessions. Same exam center will be allocated for both the sessions. 

14. Data changes: 

Last date for data changes: Aug 18, 2023, 5:00 PM :  

We will charge an additional fee of Rs. 200 to make any changes related to name, DOB, photo, signature, SC/ST and PWD certificates after the last date of data changes.

The following 6 fields can be changed (until the form closes) ONLY when there are NO courses in the course cart. And you will be able to edit those fields only if you: - 

REMOVE unpaid courses from the cart And/or - CANCEL paid courses 

1. Do you come under the SC/ST category? * 

2. SC/ST Proof 

3. Are you a person with disabilities? * 

4. Are you a person with disabilities above 40%? 

5. Disabilities Proof 

6. What is your role? 

Note: Once you remove or cancel a course, you will be able to edit these fields immediately. 

But, for cancelled courses, refund of fees will be initiated only after 2 weeks. 

15. LAST DATE FOR CANCELLING EXAMS and getting a refund: Aug 18, 2023, 5:00 PM  

16. Click here to view Timeline and Guideline : Guideline

Domain Certification

Domain Certification helps learners to gain expertise in a specific Area/Domain. This can be helpful for learners who wish to work in a particular area as part of their job or research or for those appearing for some competitive exam or becoming job ready or specialising in an area of study.  

Every domain will comprise Core courses and Elective courses. Once a learner completes the requisite courses per the mentioned criteria, you will receive a Domain Certificate showcasing your scores and the domain of expertise. Kindly refer to the following link for the list of courses available under each domain: https://nptel.ac.in/domains

Outside India Candidates

Candidates who are residing outside India may also fill the exam form and pay the fees. Mode of exam and other details will be communicated to you separately.

Thanks & Regards, 

Thank you for learning with NPTEL!!

Dear Learner, Thank you for taking the course with NPTEL!! Hope you enjoyed the journey with us. The results for this course have been published and we are closing this course now.  You will still have access to the contents and assignments of this course, if you click on the course name from the " Mycourses " tab on swayam.gov.in. For any further queries please write to [email protected] . - Team NPTEL

Data Structure And Algorithms Using Java : Result Published!!

Dear Candidate, The exam scores and E Certificates have been released for October 2022 Exam(s). Step 1 - Are the results of my courses released? Please check the Results published courses list in the below links.:- October 2022 Exam - Click here Step 2 - How to check Results? Please login to internalapp.nptel.ac.in/ . and check your exam results. Use the same login credentials as used to register to the exam. What's next? Please read the pass criteria carefully and check against what you have gotten. If you still have any issues, please report the same here. internalapp.nptel.ac.in/ . We will reply within a week. Last date to report queries: 3 days within publishing of scores. Note : Hard copies of certificates will not be dispatched. The duration shown in the certificate will be based on the timeline of offering of the course in 2022, irrespective of which Assignment score that will be considered. Thanks and Best wishes. NPTEL Team

Data Structure And Algorithms Using Java : Final Feedback Form!!

Dear student, We are glad that you have attended the NPTEL online certification course. We hope you found the NPTEL Online course useful and have started using NPTEL extensively. In this regard, we would like to have feedback from you regarding our course and whether there are any improvements, you would like to suggest.   We are enclosing an online feedback form and would request you to spare some of your valuable time to input your observations. Your esteemed input will help us in serving you better. The link to give your feedback is: https://docs.google.com/forms/d/11aGLBPNctbq2PTavnbc0GeiPHd7iUQGx4GNIgIFtz1Q/viewform We thank you for your valuable time and feedback. Thanks & Regards, -NPTEL Team

October 2022 NPTEL Exams - Hall Tickets Released!

***THIS IS APPLICABLE ONLY FOR EXAM REGISTERED CANDIDATES*** Dear Candidate, Your Hall Ticket / admit card for the NPTEL Exam(s) in October, 2022 has been released. Please login to https://internalapp.nptel.ac.in/ using your exam registered email id and download your hall ticket. Note:  Requests for changes in exam city, exam center, exam date, session, or course will NOT be entertained. Please write to [email protected] for any further queries. All the best for your exams! Warm Regards NPTEL Team

Data Structure And Algorithms Using Java - Assignment-12 Solution Released

Dear Participants,

The Assignment-12 of Week- 12 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/12Q7cOENDmsXf15t6bLQV03u9e3FN8-pS/view

Happy Learning!

Thanks & Regards,

Data Structure And Algorithms Using Java : Problem solving Session Reminder!!

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: October 18, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Exam Format - Oct 30, 2022

Dear Candidate, ****This is applicable only for the exam registered candidates**** Type of exam will be available in the list: Click Here You will have to appear at the allotted exam center and produce your Hall ticket and Government Photo Identification Card (Example: Driving License, Passport, PAN card, Voter ID, Aadhaar-ID with your Name, date of birth, photograph and signature) for verification and take the exam in person.  You can find the final allotted exam center details in the hall ticket. The hall ticket is yet to be released.  We will notify the same through email and SMS. Type of exam: Computer based exam (Please check in the above list corresponding to your course name) The questions will be on the computer and the answers will have to be entered on the computer; type of questions may include multiple choice questions, fill in the blanks, essay-type answers, etc. Type of exam: Paper and pen Exam  (Please check in the above list corresponding to your course name) The questions will be on the computer. You will have to write your answers on sheets of paper and submit the answer sheets. Papers will be sent to the faculty for evaluation. On-Screen Calculator Demo Link: Kindly use the below link to get an idea of how the On-screen calculator will work during the exam. https://tcsion.com/ OnlineAssessment/ ScientificCalculator/ Calculator.html NOTE: Physical calculators are not allowed inside the exam hall. -NPTEL Team

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: October 14, 2022 - Friday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Assignment-11 Solution Released

The Assignment-11 of Week- 11 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/1vgZfMnZwOxN1ysOGHix2OQUBeRwQdwlr/view

Survey on Problem Solving sessions - Data Structure And Algorithms Using Java ( noc22-cs92 )

Dear Learners, We would like to know if the expectations with which you attended this problem solving session are being met and hence please do take 2 minutes to fill out our feedback form. It would help us tremendously in gauging the learner experience. Here is the link to the form: https://docs.google.com/forms/d/1ClIQodxI67RakgLg6eqV53W2UCpekigLONHH1Qm1JBU/viewform You can find the recordings of the previous session in the lesson "Problem Solving Session" - NPTEL Team

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: October 11, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 12 Feedback Form

Dear Learners,

Thank you for enrolling in this NPTEL course and we hope you have gone through the contents for this week and also attempted the assignment.

We value your feedback and wish to know how you found the videos and the questions asked - whether they were easy, difficult, as per your expectations, etc

We shall use this to make the course better and we can also know from the feedback which concepts need more explanation, etc.

Please do spare some time to give your feedback - comprises just 5 questions - should not take more than a minute, but makes a lot of difference for us as we know what the Learners feel.

Here is the link to the form: https://docs.google.com/forms/d/e/1FAIpQLSe5a1m9OjJg9Z0QFHt_wheQi8ke8QGVja3kyQA-eGyIBApjWQ/viewform

Data Structure And Algorithms Using Java - Week 12 content is live now!!

Dear Students

The lecture videos for Week 12 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=105&lesson=106

The other lectures of this week are accessible from the navigation bar to the left. Please remember to login into the website to view contents (if you aren't logged in already).

Assignment 12 for Week 12 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=105&assessment=152

The assignment has to be submitted on or before Wednesday, 19-10-2022 , 23:59 IST.

As we have done so far, please use the discussion forums if you have any questions on this module.

Note : Please check the due date of the assignments in the announcement and assignment page if you see any mismatch write to us immediately.

Thanks and Regards,

--NPTEL Team

Data Structure And Algorithms Using Java - Assignment-10 Solution Released

The Assignment-10   of Week-10 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/1s1lGrCBEF6ryDL_2gVR1l-8_Gm4HFc64/view

Data Structure And Algorithms Using Java - Week 11 content is live now!!

The lecture videos for Week 11 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=97&lesson=98

Assignment 11 for Week 11 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=97&assessment=154

The assignment has to be submitted on or before Wednesday, 12-10-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Week 11 Feedback Form

Data structure and algorithms using java - assignment-9 solution released.

The Assignment-9 of Week- 9 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/1GfxfA2-8Lk5P3Iiig8XXuuonDa3lwc58/view

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: September 27, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 10 Feedback Form

Data structure and algorithms using java - week 10 content is live now.

The lecture videos for Week 10 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=89&lesson=90

Assignment 10 for Week 10 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=89&assessment=151

The assignment has to be submitted on or before Wednesday, 05-10-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Assignment-8 Solution Released

The Assignment-8 of Week-8 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/17DFkCAQMIDRHTK3CTkIXxyuXxFg-o-GC/view

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: September 20, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 9 content is live now!!

The lecture videos for Week 9 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=81&lesson=82

Assignment 9 for Week 9 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=81&assessment=149

The assignment has to be submitted on or before Wednesday, 28-09-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Week 9 Feedback Form

Data structure and algorithms using java - assignment-7 solution released.

The Assignment-7 of Week- 7 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/1YM-II_-mgPhO5CGSN9g4vzXQLUzBIPoI/view

Survey on Problem Solving sessions - Data Structure And Algorithms Using Java( noc22-cs92 )

Dear Learners, We would like to know if the expectations with which you attended this problem solving session are being met and hence please do take 2 minutes to fill out our feedback form. It would help us tremendously in gauging the learner experience. Here is the link to the form: https://docs.google.com/forms/d/1ClIQodxI67RakgLg6eqV53W2UCpekigLONHH1Qm1JBU/viewform - NPTEL Team

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: September 13, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 8 Feedback Form

Data structure and algorithms using java - week 8 content is live now.

The lecture videos for Week 8 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=73&lesson=74

Assignment 8 for Week 8 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=73&assessment=147

The assignment has to be submitted on or before Wednesday, 21-09-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Assignment-6 Solution Released

The Assignment-06 of Week-06 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/1-iI064trYuesx1srvyKpiFNLqSC2bVoM/view

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: September 06, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 7 Feedback Form

Data structure and algorithms using java - week 7 content is live now.

The lecture videos for Week 7 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=65&lesson=66

Assignment 7 for Week 7 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=65&assessment=144

The assignment has to be submitted on or before Wednesday, 14-09-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Assignment-5 Solution Released

The Assignment-5 of Week- 5 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/1dd103FAhoociQvbXk_YerH3g6IlvC9L5/view

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: August 30, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 6 content is live now!!

The lecture videos for Week 6 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=57&lesson=58

Assignment 6 for Week 6 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=57&assessment=143

The assignment has to be submitted on or before Wednesday, 07-09-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Week 6 Feedback Form

Data structure and algorithms using java - assignment-4 solution released.

The Assignment-4 of Week- 4 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link :  https://drive.google.com/file/d/19w3j1ae-KBHGhYP5t_UPdrr3WkMK9o87/view

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: August 23, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java : Assignment 2 Question no 2 & 4

Dear Learners, 

There is a in Assignment 2 question no 2 & 4. The question will not be considered for final evaluation. The  re-evaluation will be done shortly. The score will get updated and displayed in the Progress tab after re-evaluation.

Sorry for the inconvenience caused. 

Course Admin

Data Structure And Algorithms Using Java - Week 5 content is live now!!

The lecture videos for Week 5 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=49&lesson=50

Assignment 5 for Week 5 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=49&assessment=140

The assignment has to be submitted on or before Wednesday, 31-08-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Week 5 Feedback Form

Data structure and algorithms using java - assignment-3 solution released.

The Assignment-3 of Week- 3 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link :  https://drive.google.com/file/d/1LqCorFM_t1rJ8Y77-7dFKyndUqGpowgt/view

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: August 16, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 4 content is live now!!

The lecture videos for Week 4 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=41&lesson=42

Assignment 4 for Week 4 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=41&assessment=137

The assignment has to be submitted on or before Wednesday, 24-08-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Week 4 Feedback Form

Data structure and algorithms using java - assignment-1 and assignment-2 solution released.

Dear Participants, The Assignment-1 of Week-1 Solution and Assignment-2 of Week 2 Solution for the course " Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum. Assignment 1 Solution Link : https://drive.google.com/file/d/1WfGqjknc0E14invBLF9UM4n_Uj8b2rB2/view Assignment 2 Solution Link : https://drive.google.com/file/d/17n3m-zXCqbNe3OkZAK5dBENFEkpb9A95/view Happy Learning! Thanks & Regards, NPTEL Team

Data Structure And Algorithms Using Java : Problem Solving Session Week 1 Live!!

Dear Learner, We have uploaded the Recorded videos of the Problem Solving Session of Week 1 . Videos are uploaded inside the Separate Unit called " Problem Solving Session " along with the slides used wherever applicable. Login to the course on swayam.gov.in to check the same. -NPTEL Team

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: August 9, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java: Reminder Announcements for Submission of Assignment 1 & 2

A gentle reminder for submission of Assignment 1 & 2 for Week 1 & 2. The Assignments can be accessed through the following link:

Assignment 1: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=17&assessment=131

Assignment 2: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=25&assessment=132  

The assignments should be submitted on or before Wednesday, 10-08-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Week 3 Feedback Form

Data structure and algorithms using java - week 3 content is live now.

The lecture videos for Week 3 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=33&lesson=34

Assignment 3 for Week 3 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=33&assessment=136

The assignment has to be submitted on or before Wednesday,17-08-2022 , 23:59 IST.

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: August 2, 2022 - Tuesday Time: 06.00 PM - 07.00 PM Link to join:  https://meet.google.com/wcm-rgqi-nee Happy Learning. -NPTEL Team

Data Structure And Algorithms Using Java - Week 2 content is live now!!

The lecture videos for Week 2 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=25&lesson=26

Assignment 2 for Week 2 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=25&assessment=132

The assignment has to be submitted on or before Wednesday, 10-08-2022 , 23:59 IST.

Data Structure And Algorithms Using Java - Week 2 Feedback Form

Data structure and algorithms using java - week 1 feedback form, data structure and algorithms using java : problem solving session.

Dear learner, Every week there will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that  will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Start Date:   August 2, 2022 When: EveryTuesday Time: 06.00 PM - 07.00 PM Link to join:   https://meet.google.com/wcm-rgqi-nee Thank you. -NPTEL team

Data Structure And Algorithms Using Java - Assignment-0 Solution Released

The Assignment-0 of Week- 0 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Link:  https://drive.google.com/file/d/1TJ1c3ZBQUGWIdONa5oCT6Us8IwhWvmiU/view

Data Structure And Algorithms Using Java - Download video links are available now!!

The download video link for the course Data Structure And Algorithms Using Java  is available now in the course outline. Please check the download video link: https://archive.nptel.ac.in/courses/106/105/106105225/

-NPTEL Team

Data Structure And Algorithms Using Java - Week 1 content is live now!!

The lecture videos for Week 1 have been uploaded for the course Data Structure And Algorithms Using Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=17&lesson=18

Assignment 1 for Week 1 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc22_cs92/unit?unit=17&assessment=131

NPTEL: Exam Registration is open now for July 2022 courses!

Dear Learner, 

Here is the much-awaited announcement on registering for the July 2022 NPTEL course certification exam. 

1. The registration for the certification exam is open only to those learners who have enrolled in the course. 

2. If you want to register for the exam for this course, login here using the same email id which you had used to enroll to the course in Swayam portal. Please note that Assignments submitted through the exam registered email id ALONE will be taken into consideration towards final consolidated score & certification. 

3 . Date of exam: Oct 30, 2022

CLICK HERE to register for the exam. 

Choose from the Cities where exam will be conducted: Exam Cities

4. Exam fees: 

If you register for the exam and pay before Sep 12, 2022, 10:00 AM, Exam fees will be Rs. 1000/- per exam . 

If you register for exam before Sep 12, 2022, 10:00 AM and have not paid or if you register between Sep 12, 2022, 10:00 AM & Sep 16, 2022, 10:00 AM, Exam fees will be Rs. 1500/- per exam 

5. 50% fee waiver for the following categories: 

6. Last date for exam registration: Sep 16, 2022, 10:00 AM (Friday). 

7. Mode of payment: Online payment - debit card/credit card/net banking/UPI. 

8. HALL TICKET: 

The hall ticket will be available for download tentatively by 2 weeks prior to the exam date . We will confirm the same through an announcement once it is published. 

9. FOR CANDIDATES WHO WOULD LIKE TO WRITE MORE THAN 1 COURSE EXAM:- you can add or delete courses and pay separately – till the date when the exam form closes. Same day of exam – you can write exams for 2 courses in the 2 sessions. Same exam center will be allocated for both the sessions. 

10. Data changes: 

Last date for data changes: Sep 16, 2022, 10:00 AM :  

All the fields in the Exam form except for the following ones can be changed until the form closes. 

The following 6 fields can be changed ONLY when there are NO courses in the course cart. And you will be able to edit the following fields only if you: - 

6. What is your role ? 

11. LAST DATE FOR CANCELLING EXAMS and getting a refund: Sep 16, 2022, 10:00 AM  

12. Click here to view Timeline and Guideline : Guideline

Every domain will comprise Core courses and Elective courses. Once a learner completes the requisite courses per the mentioned criteria, you will receive a Domain Certificate showcasing your scores and the domain of expertise. Kindly refer to the following link for the list of courses available under each domain:  https://nptel.ac.in/domains

Data Structure And Algorithms Using Java - Assignment-0-RELEASED

We welcome you all to this course. The assignment 0 for the course Data Structure And Algorithms Using Java has been released. This assignment is based on a prerequisite of the course. Kindly note that marks obtained in this assignment will not be considered for the final assessment. You can find the assignment under Week 0 unit on the left-hand side of your screen You can submit the assignment multiple times before the due date. All the best !!    

Data Structure And Algorithms Using Java: Welcome to NPTEL Online Course - July 2022!!

  • Every week, about 2.5 to 4 hours of videos containing content by the Course instructor will be released along with an assignment based on this. Please watch the lectures, follow the course regularly and submit all assessments and assignments before the due date. Your regular participation is vital for learning and doing well in the course. This will be done week on week through the duration of the course.
  • Please do the assignments yourself and even if you take help, kindly try to learn from it. These assignments will help you prepare for the final exams. Plagiarism and violating the Honor Code will be taken very seriously if detected during the submission of assignments.
  • The announcement group - will only have messages from course instructors and teaching assistants - regarding the lessons, assignments, exam registration, hall tickets, etc.
  • The discussion forum (Ask a question tab on the portal) - is for everyone to ask questions and interact. Anyone who knows the answers can reply to anyone's post and the course instructor/TA will also respond to your queries.
  • Please make maximum use of this feature as this will help you learn much better.
  • If you have any questions regarding the exam, registration, hall tickets, results, queries related to the technical content in the lectures, any doubts in the assignments, etc can be posted in the forum section
  • The course is free to enroll and learn from. But if you want a certificate, you have to register and write the proctored exam conducted by us in person at any of the designated exam centres.
  • The exam is optional for a fee of Rs 1000/- (Rupees one thousand only).
  • Date and Time of Exams: October 30, 2022 Morning session 9am to 12 noon; Afternoon Session 2 pm to 5 pm.
  • Registration URL: Announcements will be made when the registration form is open for registrations.
  • The online registration form has to be filled and the certification exam fee needs to be paid. More details will be made available when the exam registration form is published. If there are any changes, it will be mentioned then.
  • Please check the form for more details on the cities where the exams will be held, the conditions you agree to when you fill the form etc.
  • Once again, thanks for your interest in our online courses and certification. Happy learning.

A project of

nptel java week 11 assignment answers 2022

In association with

nptel java week 11 assignment answers 2022

  • Thursday, June 27, 2024

NPTEL Programming in Java Week 11 Assignment Solution 2023

NPTEL Programming in Java Week 11 Assignment Solution

NPTEL Programming in Java Week 11 All Programming Assignment Solutions – January 2023 | Swayam. With the growth of Information and Communication Technology, there is a need to develop large and complex software.

Further, those software should be platform independent, Internet enabled, easy to modify, secure, and robust. To meet this requirement object-oriented paradigm has been developed and based on this paradigm the Java programming language emerges as the best programming environment.

Now, Java programming language is being used for mobile programming, Internet programming, and many other applications compatible to distributed systems.

This course aims to cover the essential topics of Java programming so that the participants can improve their skills to cope with the current demand of IT industries and solve many problems in their own filed of studies.

COURSE LAYOUT

  • Week 1 : Overview of Object-Oriented Programming and Java
  • Week 2 : Java Programming Elements
  • Week 3 : Input-Output Handling in Java
  • Week 4 : Encapsulation
  • Week 5 : Inheritance
  • Week 6 : Exception Handling
  • Week 7 : Multithreaded Programming
  • Week 8 : Java Applets and Servlets
  • Week 9 : Java Swing and Abstract Windowing Toolkit (AWT)
  • Week 10 : Networking with Java
  • Week 11: Java Object Database Connectivity (ODBC)
  • Week 12: Interface and Packages for Software Development

Course Name : “Programming in Java July 2023”

Question : 1  Complete the code segment  to insert the following data using prepared statement in the existing table ‘ PLAYERS ’ .

Question : 2  Write the required code in order to  update the following data in the table ‘ PLAYERS ’

Question : 3  Write the appropriate code in order to  delete the following data in the table ‘ PLAYERS ’ .

Question : 4  Complete the following program to  calculate the average age of the players in the table ‘ PLAYERS ’ .

Question : 5  Complete the code segment to  drop the table named ‘ PLAYERS ’ .

Navigation Menu

Search code, repositories, users, issues, pull requests..., provide feedback.

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly.

To see all available qualifiers, see our documentation .

  • Notifications You must be signed in to change notification settings

This repository in NPTEL course Programming in Java Question and Quiz answer.

sumitnce1/Programming-in-Java-NPTEL

Folders and files.

NameName
129 Commits

Repository files navigation

Programming-in-java-nptel, programming_in_java_nptel.

Java Week 1:Q1 To find the perimeter and area of a circle given a value of radius.

Java Week 1:Q2 To find the largest among three numbers x, y, and z.

Java Week 1:Q3 Consider First n even numbers starting from zero(0) and calculate sum of all the numbers divisible by 3 from 0 to n. Print the sum.

Java Week 1:Q4 To check whether the number is an Armstrong number or not.

Java Week 1:Q5 To help Ram , find the highest mark and average mark secured by him in "s" number of subjects.

Java Week 2:Q1 To call the method print() in class Student following the concept of inner class.

Java Week 2:Q2 To call the method print() of class Student first and then call print() method of class School.

Java Week 2:Q3 To call print() method of class Question by creating a method named ‘studentMethod()’.

Java Week 2:Q4 To call default constructor first and then any other constructor in the class Answer.

Java Week 2:Q5 To debug the program which is intended to print 'NPTEL JAVA'.

Java Week 3:Q1 To the generation of Fibonacci numbers.

Java Week 3:Q2 Define a class Point with two fields x and y each of type double. Also , define a method distance(Point p1, Point p2) to calculate the distance between points p1 and p2 and return the value in double. Complete the code segment given below. Use Math.sqrt( ) to calculate the square root.

Java Week 3:Q3 A class Shape is defined with two overloading constructors in it. Another class Test1 is partially defined which inherits the class Shape. The class Test1 should include two overloading constructors as appropriate for some object instantiation shown in main( ) method. You should define the constructors using the super class constructors. Also, override the method calculate( ) in Test1 to calculate the volume of a Shape.

Java Week 3:Q4 This program to exercise the call of static and non-static methods. A partial code is given defining two methods, namely sum( ) and multiply ( ). You have to call these methods to find the sum and product of two numbers.

Java Week 3:Q5 To swap two numbers using call by object reference.

Java Week 4:Q1

Java Week 4:Q2

Java Week 4:Q3

Java Week 4:Q4

Java Week 4:Q5

Java Week 5:Q1

Java Week 5:Q2

Java Week 5:Q3

Java Week 5:Q4

Java Week 5:Q5

Java Week 6:Q1

Java Week 6:Q2

Java Week 6:Q3

Java Week 6:Q4

Java Week 6:Q5

Java Week 7:Q1

Java Week 7:Q2

Java Week 7:Q3

Java Week 7:Q4

Java Week 7:Q5

Java Week 8:Q1

Java Week 8:Q2

Java Week 8:Q3

Java Week 8:Q4

Java Week 8:Q5

Java Week 9:Q1

Java Week 9:Q2

Java Week 9:Q3

Java Week 9:Q4

Java Week 9:Q5

Java Week 10:Q1

Java Week 10:Q2

Java Week 10:Q3

Java Week 10:Q4

Java Week 10:Q5

Java Week 11:Q1

Java Week 11:Q2

Java Week 11:Q3

Java Week 11:Q4

Java Week 11:Q5

Java Week 12:Q1

Java Week 12:Q2

Java Week 12:Q3

Java Week 12:Q4

Java Week 12:Q5

BEST OF LUCK!

  • Java 100.0%

Spread the word.

Share the link on social media.

Confirm Password *

Username or email *

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Sorry, you do not have permission to ask a question, You must login to ask a question.

SIKSHAPATH Logo

SIKSHAPATH Latest Articles

Nptel programming in java week 2 assignment answers 2023.

NPTEL Programming in Java Week 2 Assignment Answers 2023

Excited for NPTEL’s Java programming week 2 quiz assignment answers?

Look no further! I’ve got you covered with probable answers for all 10 questions. Use these as a helpful guide in completing your assignment with confidence before the deadline.

Table of Contents

NPTEL Programming in Java Week 2 Assignment Answers

Q1. Following is a program given for this question.

What will be the output of the above program?

Answer: a. 22221010

1000+ subscribers getting help from instant notifications, Join us on telegram.

Q2. When an array is passed to a method, what value does the method receive?

Answer : a. Reference of the array.

Q3. Following is a program given for this question.

Answer: c. 30

Q4. How many bits are needed for float and double in Java, respectively?

Answer: a. 32 and 64

Q5. Which of the following is a valid automatic type conversion in Java?

Answer: d. int to long

Q6. Consider the following program and identify the output.

Answer: d. Compilation error

Q7. Which of the following is a valid declaration of an object of class say, Student?

Answer: b. Student obj = new Student();

Q8. What is the output of the following program?

Answer: c. 012

Q9. Consider the following piece of code.

Which of the following option is the output of the above program?

Answer: d. nptel

Q10. What is the output of the following program?

Programming Answers to Java Assignment

Q1. Complete the code segment to call the method  print()  of class School first  and then call print()  method of class Student .

(in one click)

Disclaimer: These answers are intended only as reference material. No guarantee of accuracy is made. It is strongly recommended to complete the assignment independently.

Also Available:

NPTEL Programming in Java Week 1 Assignment Answers

NPTEL Programming In Java Week 3 Assignment Answers

Related Posts

NPTEL Cloud Computing Assignment 3 Answers 2023

NPTEL Cloud Computing Assignment 3 Answers 2023

NPTEL Problem Solving Through Programming In C Week 1 & 2 Assignment Answers 2023

NPTEL Problem Solving Through Programming In C Week 1 & ...

NPTEL Programming In Java Week 6 Assignment Answers 2023

NPTEL Programming In Java Week 6 Assignment Answers 2023

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

IMAGES

  1. NPTEL Programming In Java WEEK 11 Programming Assignment Solutions

    nptel java week 11 assignment answers 2022

  2. Programming in Java

    nptel java week 11 assignment answers 2022

  3. Programming in java || week 11 assignment 11 answers || Nptel

    nptel java week 11 assignment answers 2022

  4. NPTEL Data Structure And Algorithms Using Java WEEK 11 Quiz Assignment

    nptel java week 11 assignment answers 2022

  5. programming in JAVA

    nptel java week 11 assignment answers 2022

  6. NPTEL Programming In Java Week-11 Quiz Assignment Answers||NPTEL||#Learnwithsupriya

    nptel java week 11 assignment answers 2022

VIDEO

  1. NPTEL Programming in Java

  2. NPTEL

  3. 2. Week

  4. Programming in Java 2019

  5. Introduction to Internet of Things|| WEEK-11 Quiz assignment Answers 2023||NPTEL||IoT||#SKumarEdu

  6. NPTEL Programming In Java Week 12 Assignment Answers Solution Quiz

COMMENTS

  1. NPTEL Programming In Java WEEK 11 Quiz Assignment Solutions

    🔊 Programming In Java NPTEL Elective Course 2022NPTEL Programming In Java WEEK 11 Quiz Assignment Solutions | Swayam July 2022 | IIT Kharagpur⛳ABOUT THE COU...

  2. NPTEL

    Hello everyone,In this video, I have provided you with the 100 percent correct solutions of week 11 of the course "Programming in Java". _____...

  3. bkkothari2255/Programming_In_Java_NPTEL

    Java Week 6:Q2 In the following program, a thread class ThreadRun is created using the Runnable interface which prints "Thread using Runnable interface". Complete the main class to create a thread object of the class ThreadRun and run the thread, Java Week 6:Q3 A part of the Java program is given, which can be completed in many ways, for example using the concept of thread, etc. Follow the ...

  4. NPTEL Programming in Java Week 11 Assignment Solution

    Week 4 : Encapsulation. Week 5 : Inheritance. Week 6 : Exception Handling. Week 7 : Multithreaded Programming. Week 8 : Java Applets and Servlets. Week 9 : Java Swing and Abstract Windowing Toolkit (AWT) Week 10 : Networking with Java. Week 11: Java Object Database Connectivity (ODBC) Week 12: Interface and Packages for Software Development.

  5. Programming in Java NPTEL Week 11 Assignment Answers 2022

    Dear Students, in this 1 minute 46 second video I have solved all 10 mcqs question to the NPTEL Programming in Java Week 11 Assignment 2022.You can take insp...

  6. Programming-in-Java-NPTEL/week 11/Exercise 11.4.java at master ...

    This repository in NPTEL course Programming in Java Question and Quiz answer. - Programming-in-Java-NPTEL/week 11/Exercise 11.4.java at master · sumitnce1/Programming-in-Java-NPTEL

  7. Programming in Java

    a) List all the databases those are there in the database server. b) List all the tables those are there under the database. c) Create a table called test. d) Set test as the current working database, so that any SQL command bind to the test database onhy. Show Answer. Programming in Java NPTEL 2022 Week 11 Quiz solutions. Q8.

  8. Programming In Java

    Programming In Java - Assignment- 7,8,9,10 & 11 Solution Released Dear Participants, The Assignment-7,8,9,10 & 11 of Week- 7,8,9,10 & 11 Solution for the course "Programming In Java" has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

  9. nptel-solutions · GitHub Topics · GitHub

    nptel 2021 programming-in-java nptel-solutions nptel-assignments programming-in-java-nptel-solutions nptel-java-solutions Updated Aug 1, 2021 ... NPTEL-The-Joy-of-Computing-using-Python with NOTES and Weekly quizes Answers. ... Python code from week-3 to week-12 for the NPTEL course The Joy of Computing using Python.

  10. PDF NPTEL IITm

    For any queries regarding the NPTEL website, availability of courses or issues in accessing courses, please contact . NPTEL Administrator, IC & SR, 3rd floor IIT Madras, Chennai - 600036 Tel : (044) 2257 5905, (044) 2257 5908, 9363218521 (Mon-Fri 9am-6pm) Email : [email protected]

  11. Programming In Java

    25 Jul 2022: End Date : 14 Oct 2022: Enrollment Ends : 08 Aug 2022: Exam Date : ... Week 11: Java Object Database Connectivity (ODBC) Week 12: Interface and Packages for Software Development. ... ( All assignments in a particular week will be counted towards final scoring - quizzes and programming assignments). ...

  12. NPTEL Programming in Java Week11 Assignment Solution July 2023

    Faheem Ahmad. NPTEL Programming in Java Week11 All Programming Assignment Solutions - July - Oct 2023 | Swayam. With the growth of Information and Communication Technology, there is a need to develop large and complex software. Further, those software should be platform independent, Internet enabled, easy to modify, secure, and robust.

  13. Programming In Java Week 11: Programming Assignments Jan-Jun 2022

    Nptel Assignment Solutions, Swayam NPTEL Assignment Answers 2021, Nptel Assignment Answer Key 2021, NPTEL Online Course Assignment Solution 2021 ... Programming In Java Week 11: Programming Assignments Jan-Jun 2022 NPTEL PROGRAMMING ASSIGNMENTS Programming In Java Week 11 : Programming Assignment 1 Due Date of Submission 2022-04-14, 23:59 IST ...

  14. NPTEL Data Structure And Algorithms Using Java WEEK 11 Quiz Assignment

    🔊 Data Structure And Algorithms Using Java Elective Course 2022NPTEL Data Structure And Algorithms Using Java WEEK 11 Quiz Assignment Solutions | Swayam Jul...

  15. NPTEL Programming In Java Week 11 Assignment 11 Answers

    These are NPTEL Programming In Java Week 11 Assignment 11 Answers. Question 2. Write the JDBC codes needed to create a Connection interface using the DriverManager class and the variable DB_URL. Check whether the connection is successful using 'isAlive (timeout)' method to generate the output, which is either 'true' or 'false'.

  16. Swayam Solver: NPTEL Programming in Java Jan 2024 Week 11

    Due on 2024-04-11, 23:59 IST. Due to some mistakes in the below code, the code is not compiled/executable. Modify and debug the JDBC code to make it execute successfully. Your last recorded submission was on 2024-03-30, 17:29 IST. Select the Language for this assignment. File name for this program : import java.sql.*;

  17. Data Structure And Algorithms Using Java

    The Assignment-11 of Week- 11 Solution for the course "Data Structure And Algorithms Using Java " has been released in the portal. Please go through the solution and in case of any doubt post your queries in the forum. ... Data Structure And Algorithms Using Java - Week 11 Feedback Form ... Here is the much-awaited announcement on registering ...

  18. NPTEL Programming in Java Week 11 Assignment Solution 2023

    April 8, 2023. Faheem Ahmad. NPTEL Programming in Java Week 11 All Programming Assignment Solutions - January 2023 | Swayam. With the growth of Information and Communication Technology, there is a need to develop large and complex software. Further, those software should be platform independent, Internet enabled, easy to modify, secure, and ...

  19. NPTEL: Programming In Java Week 11 Programming Assignment Answers

    NPTEL Programming In Java WEEK 11 Programming Assignment Solutions | Swayam July 2022 | IIT KharagpurSolution Link:-https://docs.google.com/document/d/16saGI...

  20. PDF Assignment 11

    76&lesson=77)Information about the course and accessing the. unit=76&lesson=78) Assignment 11The due date for submitting this assignme. t has passed. Due on 2020-04-. 5, 23:59 IST. As per our records you have not submitted th. t. 1)1 pointa.Annou. unit=76&lesson=79) ve a doubt orq.

  21. NPTEL Java Programming Week 11 : Programming Assignment 1-5 OCt-2023

    Week 11 : Programming Assignment 1. Complete the code segment to insert the following data using prepared statement in the existing table 'PLAYERS'. Your last recorded submission was on 2023-10-07, 15:18 IST. Select the Language for this assignment.

  22. sumitnce1/Programming-in-Java-NPTEL

    Java Week 2:Q3 To call print() method of class Question by creating a method named 'studentMethod()'. Java Week 2:Q4 To call default constructor first and then any other constructor in the class Answer. Java Week 2:Q5 To debug the program which is intended to print 'NPTEL JAVA'.

  23. NPTEL Programming in Java Week 2 Assignment Answers 2023

    Programming Answers to Java Assignment. Q1. Complete the code segment to call the method print () of class School first and then call print () method of class Student. School school = new School(); Student student = new Student();