• Tuesday, April 16, 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 ’ .

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: b. ResultSet then Statement then Connection

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

Answer: b. 4

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

Answer: b. i, iii, ii, v, iv, vii, vi, 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.

Answer: c. Both 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

Answer: c. JDBC Test suite

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

Answer: c. two-tier and three-tier processing models

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

Answer: c. DriverManager.getConnection(url)

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

Answer: c. Socket

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

Answer: a. Java DataBase Connectivity

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

Answer: a. queryForObject()

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’.

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’. Structure of Table ‘PLAYERS’ is given below:

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

' 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, 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.

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.

AnswerGPT Logo

If You Are Facing Any Problem In Payment Then Email On : [email protected]

Pyq [week 1-12] nptel programming in java assignment answers 2023.

java nptel assignment answers 2023 week 11

About Course

[Week 1-11] NPTEL Programming In Java Assignment Answers 2023

Course Content

Week 1 answers 2023, week 1 assignment answers, week 2 answers 2023, week 2 assignment answers, week 3 answers 2023, week 3 assignment answers, week 4 answers 2023, week 4 assignment answer, week 5 answers 2023, week 5 assignment answers, week 6 answers 2023, week 6 assignment answers, week 7 answers 2023, week 7 assignment answers, week 8 answers 2023, week 8 assignment answers, week 9 answers 2023, week 9 assignment answers, week 10 answers 2023, week 10 assignment answers, week 11 answers 2023, week 12 answers 2023, week 12 assignment answers, student ratings & reviews.

Want to receive push notifications for all major on-site activities?

Insert/edit link

Enter the destination URL

Or link to existing content

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 ’ .

Week 11 : Programming Assignment 2

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

Week 11 : Programming Assignment 3

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

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:

Week 11 : Programming Assignment 5

Share this:.

  • Google Plus

No comments

Nptel programming in java jan 2024 week 11.

  Week 11 : Programming Assignment 1 Due on 2024-04-11, 23:59 IST The following code is missing some information needed to run the code. Add...

java nptel assignment answers 2023 week 11

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 .

nptel-solutions

Here are 55 public repositories matching this topic..., kishanrajput23 / nptel-the-joy-of-computing-using-python.

Study materials related to this course.

  • Updated Oct 27, 2023

kishanrajput23 / NPTEL-Programming-In-java

  • Updated Apr 14, 2022

kadeep47 / NPTEL-Getting-Started-With-Competitive-Programming

[Aug - Oct 2023] Solutions for NPTEL Course Getting started with competitive programming weekly assignment.

  • Updated Sep 6, 2023

omunite215 / NPTEL-Programming-in-Java-Ultimate-Guide

I am sharing my journey of studying a course on Programming in Java taught by Prof.Debasis Samanta Sir IIT Kharagpur

  • Updated Dec 4, 2023

Md-Awaf / NPTEL-Course-Getting-started-with-Competitive-Programming

Solutions for NPTEL Course Getting started with competitive programming weekly assignment.

  • Updated Apr 20, 2023

guru-shreyansh / NPTEL-Programming-in-Java

The sole intention behind this repository is to help the beginners in Java with the course contents.

  • Updated Aug 1, 2021

rvutd / NPTEL-Joy-of-Computing-2020

Programming Assignment Solutions

  • Updated May 5, 2020

gunjanmimo / NPTEL-The-Joy-of-Computing-using-Python

  • Updated Jan 26, 2020

AdishiSood / The-Joy-of-Computing-using-Python

  • Updated Apr 28, 2021

avinashyadav16 / The-Joy-of-Computing-Using-Pyhton

12 Weeks long NPTEL Elective MOOC Course's codes, assignments and solutions.

  • Updated Oct 30, 2023
  • Jupyter Notebook

NPTEL-Course / Programming-Data-Structures-And-Algorithms-Using-Python

Nptel Course Solutions : Programming, Data Structures And Algorithms Using Python

  • Updated Nov 30, 2020

tdishant / NPTEL-Joy-of-Computing-Using-Python

Python code from week-3 to week-12 for the NPTEL course The Joy of Computing using Python

  • Updated Oct 26, 2021

TarunSehgal27 / NPTEL-JAVA-2020

this is a repo about the java program headed by Debasis Samantha during 2020

  • Updated Apr 23, 2020

NPTEL-Course / Google-Cloud-Computing-Foundations

Nptel Course Solution : Google Cloud Computing Foundations

  • Updated Nov 19, 2020

Anmol-PROgrammar / SWAYAM-Programming_In_Java-NPTEL

This site contains the weekly( i.e. 1-9) questions and their solution of NPTEL-SWAYAM course "Programming in Java".

  • Updated Aug 19, 2021

gxuxhxm / NPTEL-The-Joy-of-Computing-using-Python

NPTEL-The-Joy-of-Computing-using-Python with NOTES and Weekly quizes Answers

  • Updated Dec 31, 2023

lonebots / python-programming-joc-nptel

Python programming repository for NPTEL joy of computing course

  • Updated Dec 21, 2020

CGreenP / NPTEL-Introduction-to-Programming-in-C-Assignment-4-Question-1

NPTEL Introduction to Programming in C Assignment 4 Question 1

  • Updated Apr 2, 2024

CGreenP / NPTEL-Introduction-to-Programming-in-C-Assignment-4-Question-3

NPTEL Introduction to Programming in C Assignment 4 Question 3

  • Updated Apr 7, 2024

CGreenP / NPTEL-Programming-Assignment-Road-Trips-and-Museums

NPTEL Programming Assignment: Road Trips and Museums.

  • Updated Mar 3, 2024

Improve this page

Add a description, image, and links to the nptel-solutions topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the nptel-solutions topic, visit your repo's landing page and select "manage topics."

swayam-logo

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

NPTEL: Exam Registration date is extended for 12 week courses of Jan 2024!

  • No further extension will be provided.
  • This extension is only applicable for 12-week courses.

NPTEL: Exam Registration is open now for Jan 2024 courses!

Dear Candidate,

Here is a golden opportunity for those who had previously enrolled in this course during the July 2023 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 Jan 2024 and we are giving you another chance to write the exam in April 27, 2024 a nd 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: April 27, 2024

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 Jan 2024 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 2023 to become eligible for the e-certificate, wherever applicable.

If not, please submit assignments again in the Jan 2024 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 2023) 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 Jan 2024 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 March 11, 2024 - 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: March 15, 2024 - 5:00 PM (Friday). 

10. Between March 11, 2024 - 5:00 PM & March 15, 2024 - 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: March 15, 2024 - 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 canceled courses, refund of fees will be initiated only after 2 weeks. 

15. LAST DATE FOR CANCELING EXAMS and getting a refund: March 15, 2024 - 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, 

java nptel assignment answers 2023 week 11

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

Programming In Java : Result Published!!

                                      ***THIS IS APPLICABLE ONLY FOR EXAM REGISTERED CANDIDATES***                             ****Please don't click on below link, if you are not registered/not present for the Exam****                          Dear Candidate, The exam scores and E Certificates have been released for October 2023 Exam(s). Step 1 - Are the results of my courses released? Please check the Results published courses list in the below links.:- Oct 2023 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 2023, irrespective of which Assignment score that will be considered. Thanks and Best wishes. NPTEL Team

Programming In Java : Final Feedback Form !!!

Dear students, 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/1I3r6yKGXi9ueP3lM8iK4XgC2m9g6mVXwE2bAzSk5TuA/edit?usp=drivesdk We thank you for your valuable time and feedback. Thanks & Regards, -NPTEL Team

Programming In 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/16gSE-7rBSBJ-Vt-Smw5aEp5ObuW-wOFfoUhhJzOvZaQ/viewform

October 2023 NPTEL Exams - Hall Tickets Released!

java nptel assignment answers 2023 week 11

Programming In Java – Week 11 and Week 12 Solution Published

Dear Participants, The  Assignment- 11 and 12  of  Week- 11 and 12  Solution for the course  Programming In Java  has been published in the portal. Please go through the solution and in case of any doubt post your queries in the forum. Week 11: Assignment 11 Solution:  https://drive.google.com/file/d/1KRFsf2tS5HfMg4CsEh1UVuRw-pZPa8Ay/view?usp=sharing Week 12: Assignment 12 Solution:  https://drive.google.com/file/d/1gaxidOUEFViDt0TS1URrTeUrzwHEi0hn/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java – Week 07,08,09 and 10 Solution Published

Dear Participants, The  Assignment- 07,08,09 and 10  of  Week-  07,08,09 and 10  Solution for the course  Programming In Java   has been published in the portal. Please go through the solution and in case of any doubt post your queries in the forum.

Week 07: Assignment 07 Solution:  https://drive.google.com/file/d/1MIqZ8eFdt5GZlPZKg31lzVIm3gBGkzhR/view?usp=sharing Week 08: Assignment 08 Solution:  https://drive.google.com/file/d/1m3k0O9F9Pp3UNkJ8aR3vt9Nx7ilbCd7-/view?usp=sharing Week 09: Assignment 09 Solution:  https://drive.google.com/file/d/1JMurU9oAq0Wi87oGE7aSt7cUvOphODBD/view?usp=sharing Week 10: Assignment 10 Solution:  https://drive.google.com/file/d/1ZBnuQZyx-5Qw0b8Hnz0DnKwyK-9Ax81j/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Exam Format - October, 2023 !!

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. Thank you! -NPTEL Team

Programming In Java - Week 12 content is live now!

Dear Students The lecture videos for  Week 12  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=106&lesson=107 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/noc23_cs74/unit?unit=106&assessment=284 The assignment has to be submitted on or before  Wednesday, 18 -10-2023 , 23:59 IST. Programming Assignment 1  for  Week 12  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=285 Programming Assignment 2  for  Week 12  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=286 Programming Assignment 3  for  Week 12  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=287 Programming Assignment 4  for  Week 12  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=288 Programming Assignment 5  for  Week 12  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=289 For all the Programming Assignments due date will be :  Thursday ,  19 -10-2023 , 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

Programming In Java - Week 11 Feedback Form

Programming in java - week 10 feedback form, programming in java - week 11 content is live now.

Dear Students The lecture videos for  Week 11  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=98&lesson=99 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 11  for  Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=98&assessment=278 The assignment has to be submitted on or before  Wednesday, 11 -10-2023 , 23:59 IST. Programming Assignment 1  for  Week 11  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=279 Programming Assignment 2  for  Week 11  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=280 Programming Assignment 3  for  Week 11  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=281 Programming Assignment 4  for  Week 11  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=282 Programming Assignment 5  for  Week 11  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=283 For all the Programming Assignments due date will be :  Thursday ,  12 -10-2023 , 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

Programming In Java - Week 10 content is live now!

Dear Students The lecture videos for  Week 10  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=90&lesson=91 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 10  for  Week 10  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=90&assessment=266 The assignment has to be submitted on or before  Wednesday, 04 -10-2023 , 23:59 IST. Programming Assignment 1  for  Week 10  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=273 Programming Assignment 2  for  Week 10  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=274 Programming Assignment 3  for  Week 10  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=275 Programming Assignment 4  for  Week 10  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=276 Programming Assignment 5  for  Week 10  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=277 For all the Programming Assignments due date will be :  Thursday , 05 -10-2023 , 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

Programming In Java - Week 6 Feedback Form

Programming in java - week 7 feedback form, programming in java - week 9 feedback form, programming in java - week 8 feedback form, programming in java - week 9 content is live now.

Dear Students The lecture videos for  Week 9  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=82&lesson=83 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 9  for  Week 9  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=82&assessment=267 The assignment has to be submitted on or before  Wednesday, 27 -09-2023 , 23:59 IST. Programming Assignment 1  for  Week 9  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=268 Programming Assignment 2  for  Week 9  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=269 Programming Assignment 3  for  Week 9  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=270 Programming Assignment 4  for  Week 9  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=271 Programming Assignment 5  for  Week 9  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=272 For all the Programming Assignments due date will be :  Thursday ,  28 -09-2023 , 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

Programming In Java – Week 06 Solution Published

Dear Participants, The  Assignment- 06  of  Week- 06  Solution for the course  Programming In Java   has been published in the portal. Please go through the solution and in case of any doubt post your queries in the forum. Assignment 06 Solution :  https://drive.google.com/file/d/1aNx325gn6txensqJPN-6NIklPNT8Jtwq/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 8 content is live now!

Dear Students The lecture videos for  Week 8  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=74&lesson=75 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 8  for  Week 8  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=74&assessment=260 The assignment has to be submitted on or before  Wednesday, 20 -09-2023 , 23:59 IST. Programming Assignment 1  for  Week 8  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=261 Programming Assignment 2  for  Week 8  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=262 Programming Assignment 3  for  Week 8  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=263 Programming Assignment 4  for  Week 8  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=264 Programming Assignment 5  for  Week 8  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=265 For all the Programming Assignments due date will be :  Thursday , 21 -09-2023 , 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

Programming In Java – Week 05 Solution Published

Dear Participants, The  Assignment- 05  of  Week- 05  Solution for the course  Programming In Java   has been published in the portal. Please go through the solution and in case of any doubt post your queries in the forum. Assignment 05 Solution :  https://drive.google.com/file/d/1GMum06vmPm7pR8uCfu0Io1nSiS9Bw8wq/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 7 content is live now!

Programming in java – week 04 solution published.

Dear Participants, The  Assignment- 04  of  Week- 04  Solution for the course  Programming In Java   has been published in the portal. Please go through the solution and in case of any doubt post your queries in the forum. Assignment 04 Solution :  https://drive.google.com/file/d/1UFuvFarPg_HeaMzkNocl7XimyJ66gK1q/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 6 content is live now!!

Dear Students The lecture videos for  Week 6  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=58&lesson=59 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 6  for  Week 6  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=58&assessment=248 The assignment has to be submitted on or before  Wednesday, 06 -09-2023 , 23:59 IST. Programming Assignment 1  for  Week 6  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=249 Programming Assignment 2  for  Week 6  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=250 Programming Assignment 3  for  Week 6  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=251 Programming Assignment 4  for  Week 6  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=252 Programming Assignment 5  for  Week 6  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=253 For all the Programming Assignments due date will be :  Thursday , 07 -09-2023 , 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

Programming In Java - Week 4 Feedback Form

Programming in java – week 03 solution published.

Dear Participants, The  Assignment- 03  of  Week- 03  Solution for the course  Programming In Java   has been published in the portal. Please go through the solution and in case of any doubt post your queries in the forum. Assignment 03 Solution :  https://drive.google.com/file/d/18yOZ8IWpn1mBAJ8x_OyuZ0ZrYhw_AIXP/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 5 content is live now!!

Dear Students The lecture videos for  Week 5  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=50&lesson=51 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 5  for  Week 5  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=50&assessment=241 The assignment has to be submitted on or before  Wednesday, 30 -08-2023 , 23:59 IST. Programming Assignment 1  for  Week 5  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=242 Programming Assignment 2  for  Week 5  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=243 Programming Assignment 3  for  Week 5  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=244 Programming Assignment 4  for  Week 5  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=245 Programming Assignment 5  for  Week 5  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=246 For all the Programming Assignments due date will be :  Thursday ,  31 -08-2023 , 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

Programming In Java - Week 5 Feedback Form

Programming in java – week 01 and week 02 solution published.

Dear Participants, The  Assignment- 01 and 02  of  Week- 01 and 02  Solution for the course  Programming In Java   has been published in the portal. Please go through the solution and in case of any doubt post your queries in the forum. Week 01: Assignment 01 Solution:  https://drive.google.com/file/d/1BjocDWgfp7NvqjF7FDpqxiNWRi7VLq14/view?usp=sharing Week 02: Assignment 02 Solution:  https://drive.google.com/file/d/1IIM8-ewjhO2VWx0cYFCDidbXcT4sg-tb/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Exam Registration for NPTEL courses extended !!

Dear Learner,

Registration for the certification exam has been extended.

CLICK HERE to register for the exam.

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

Last date for exam registration is extended : August 28, 2023, 5:00 PM (Monday).

Click here to view Timeline and Guideline : Guideline

Note: Kindly ignore if registered already.

Happy Learning!

Thanks and Regards,

NPTEL TEAM.

Programming In Java - Week 4 content is live now!!

Programming in java - week 2 feedback form, programming in java - week 3 feedback form, programming in java - week 3 content is live now.

Dear Students The lecture videos for  Week 3  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=34&lesson=35 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 3  for  Week 3  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=34&assessment=234 The assignment has to be submitted on or before  Wednesday, 16 -08-2023 , 23:59 IST. Programming Assignment 1  for  Week 3  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=229 Programming Assignment 2  for  Week 3  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=230 Programming Assignment 3  for  Week 3  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=231 Programming Assignment 4  for  Week 3  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=232 Programming Assignment 5  for  Week 3  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=233 For all the Programming Assignments due date will be :  Thursday ,  17 -08-2023 , 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

Programming In Java - Week 1 Feedback Form

Programming in java - week 2 content is live now.

Dear Students The lecture videos for  Week 2  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=26&lesson=27 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 2  for  Week 2  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=26&assessment=223 The assignment has to be submitted on or before  Wednesday, 09 -08-2023 , 23:59 IST. Programming Assignment 1  for  Week 2  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=224 Programming Assignment 2  for  Week 2  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=225 Programming Assignment 3  for  Week 2  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=226 Programming Assignment 4  for  Week 2  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=227 Programming Assignment 5  for  Week 2  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=228 For all the Programming Assignments due date will be :  Thursday ,  10 -08-2023 , 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

Programming In Java - Download video links are available now!!

The download video link for the course Programming In Java  is available now in the course outline. Please check the download video link: https://nptel.ac.in/courses/106105191

-NPTEL Team

Programming In Java - Week 1 content is live now!!

Dear Students The lecture videos for Week 1 have been uploaded for the course Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=18&lesson=19 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 1 for Week 1 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/unit?unit=18&assessment=217 The assignment has to be submitted on or before  Wednesday, 09 -08-2023 , 23:59 IST. Programming Assignment 1 for Week 1 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=218 Programming Assignment 2 for Week 1 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=219 Programming Assignment 3 for Week 1 is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=220 Programming Assignment 4  for  Week 1  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=221 Programming Assignment 5  for  Week 1  is also released and can be accessed from the following link:  https://onlinecourses.nptel.ac.in/noc23_cs74/progassignment?name=222 For all the Programming Assignments due date will be : Thursday ,  10 -08-2023 , 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

Stay Ahead of the Curve: Follow NPTEL for a Bright Future!!

Dear Learners Don't let knowledge pass you by! Stay in the loop with all the latest updates from NPTEL!  Follow us on social media to never miss a beat in your educational journey. Be the first to know about new courses, insightful articles, and exciting announcements.  Join our growing community. Tap those links below and let the learning adventure begin! Twitter: https://twitter.com/nptelindia?t=Yv1BextATpcwg7K2kOxbhg&s=08 Facebook:  https://www.facebook.com/NPTELNoc/ Instagram:  https://www.instagram.com/nptel_india/ LinkedIn: https://www.linkedin.com/mwlite/company/nptel YouTube: https://www.youtube.com/user/nptelhrd Happy learning!  Team NPTEL

Programming In Java - Assignment-0-RELEASED

We welcome you all to this course. The assignment 0 for the course Programming In 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. All the best !!    

--NPTEL Team

Useful Resources for this Course

java nptel assignment answers 2023 week 11

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

Dear Learner, 

Here is the much-awaited announcement on registering for the July 2023 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: October 29, 2023

4. 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 .

5. 50% fee waiver for the following categories: 

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

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

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

9. HALL TICKET: 

10. 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. 

11. Data changes: 

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

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: - 

6. What is your role ? 

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

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

13. Click here to view Timeline and Guideline : Guideline

Programming In Java:Welcome to NPTEL Online Course - July 2023!!

  • 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 29, 2023 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

java nptel assignment answers 2023 week 11

In association with

java nptel assignment answers 2023 week 11

COMMENTS

  1. 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 ...

  2. NPTEL Programming In Java Week 11 Assignment 11 Answers ...

    Programming In Java Week 11 Assignment 11 Answers Solution Quiz | 2023-JulyJoin NPTEL - Programming in Java :https://telegram.me/ProgrammingInJavaNPTELJoin o...

  3. NPTEL Programming In Java WEEK11 Quiz Assignment Solutions

    🔊 NPTEL Programming In Java WEEK11 Quiz Assignment Solutions | Swayam July 2023 | IIT Kharagpur | GATE NPTEL⛳ABOUT THE COURSE :With the growth of Informatio...

  4. 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'.

  5. Programming in Java

    #week11 #programminginjava #javaprogramming #programminginc #programminginjava #nptel2023 #nptel #nptelsolution

  6. 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 ...

  7. 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.*;

  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 Programming In Java WEEK 11 Quiz Assignment Solutions

    🔊 Programming In Java NPTEL Elective Course 2023🔗Programming Assignment Link : https://bit.ly/3GtA2QCNPTEL Programming In Java WEEK 11 Quiz Assignment Solu...

  10. PDF NPTEL IITm

    July-Dec 2023 semester. General. Events. ... 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)

  11. PYQ [Week 1-12] NPTEL Programming In Java Assignment Answers 2023

    [Week 1-11] NPTEL Programming In Java Assignment Answers 2023 Category. Programming; Machine Learning; Business; Management; Marketing; Others; PYQ 2023; Category ... [Week 1-11] NPTEL Programming In Java Assignment Answers 2023. Course Content ... Week 11 Answers 2023 Week 12 Answers 2023 Student Ratings & Reviews ...

  12. 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.

  13. 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'.

  14. NPTEL Programming In Java WEEK11 Programming Assignment ...

    🔊 Programming In Java NPTEL Elective Course 2023 | GATE NPTEL | https://techiestalk.in/NPTEL Programming In Java WEEK11 Programming Assignment Solutions | S...

  15. Programming-in-Java-NPTEL/README.md at master

    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 ...

  16. NPTEL Programming In Java Week 11 Assignment 11 AnswersNPTEL

    These are NPTEL Programming In Java Week 11 Assignment 11 Answers 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.

  17. Programming In Java

    Programming In Java | Week 11 Answers 2023 | NPTEL | SWAYAMYour Queries : nptel programming in java assignment answers 2023programming in java week- 11 assig...

  18. nptel-solutions · GitHub Topics · GitHub

    Add this topic to your repo. To associate your repository with the nptel-solutions topic, visit your repo's landing page and select "manage topics." GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.

  19. Programming In Java

    October 2023 NPTEL Exams - Hall Tickets Released! ... Week 11: Assignment 11 Solution: ... Programming In Java - Week 11 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 ...

  20. Nptel Programming in Java Week 11 Assignment 11 Answers and ...

    Session: Jan-Apr 2024Our official Website: https://progiez.comNow get Nptel Programming in Java week 11 Assignment 11 Answers and Solutions here. All weeks s...

  21. NPTEL Data Structure And Algorithms Using Java Week 11 Quiz Assignment

    Welcome to the NPTEL Data Structure And Algorithms Using Java Week 11 Quiz Assignment Solution video for September 2023! In this video, we will be providing ...