• Thursday, May 30, 2024

NPTEL Programming in Java Week 10 Assignment Solution

NPTEL Programming in Java Week 10 Assignment Solution

NPTEL Programming in Java Week 10 All Programming Assignment Solutions | 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”

Question : 1 The following code needs some package to work properly. Write appropriate code to  import the required package(s) in order to make the program compile and execute successfully.

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

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 ‘ PLAYERS ’ in SQL database using the following information.

Question : 5 Complete the code segment  to rename an already created table named ‘ PLAYERS ’ into ‘ SPORTS ’.

One thought on “ NPTEL Programming in Java Week 10 Assignment Solution ”

  • Pingback: NPTEL Programming in Java Week 9 Assignment Solution - Techies Talk

Leave a Reply 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.

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

Programming Assignments of Algorithmic Toolbox course by University of California San Diego & HSE University on Coursera

Abd-ELrahmanHamza/Algorithmic-Toolbox

Folders and files, repository files navigation, algorithmic toolbox.

This repo contains my solutions of Algorithmic Toolbox course.

The course covers basic algorithmic techniques which are sorting and searching, divide and conquer, greedy algorithms, dynamic programming.

Table of contents

  • Programming Assignment 1: Programming Challenges
  • (OPTIONAL) Solving The Maximum Pairwise Product Programming Challenge in C++
  • Maximum Pairwise Product Programming Challenge
  • Using PyCharm to solve programming challenges (optional experimental feature)
  • Acknowledgements (Optional)
  • Week one assignment

Assignment solution

  • Sum of Two Digits
  • Maximum Pairwise Product
  • Why Study Algorithms?
  • Fibonacci Numbers
  • Greatest Common Divisor
  • Big-O Notation
  • Course Overview
  • Programming Assignment 2
  • Week two assignment
  • Fibonacci Number
  • Last Digit of a Large Fibonacci Number
  • Least Common Multiple
  • Fibonacci Number Again
  • Last Digit of the Sum of Fibonacci Numbers
  • Last Digit of the Sum of Fibonacci Numbers Again
  • Last Digit of the Sum of Squares of Fibonacci Numbers
  • Introduction
  • Grouping Children
  • Fractional Knapsack
  • Programming Assignment 3
  • Week three assignment
  • Money Change
  • Maximum Value of the Loot
  • Car Fueling
  • Maximum Advertisement Revenue
  • Collecting Signatures
  • Maximum Number of Prizes
  • Maximum Salary
  • Polynomial Multiplication
  • Master Theorem
  • Sorting Problem
  • Programming Assignment 4
  • Week four assignment
  • Binary Search
  • Majority Element
  • Improving Quick Sort
  • Number of Inversions
  • Organizing a Lottery
  • Closest Points
  • Merge Sort implementation
  • Quick Sort implementation
  • Puzzle 21 questions game
  • Change Problem
  • String Comparison
  • Additional Slides
  • Programming Assignment 5
  • Week five assignment
  • Money Change Again
  • Primitive Calculator
  • Edit Distance
  • Longest Common Subsequence of Two Sequences
  • Longest Common Subsequence of Three Sequences
  • Placing Parentheses
  • Programming Assignment
  • Week six assignment
  • Maximum Amount of Gold
  • Partitioning Souvenirs
  • Maximum Value of an Arithmetic Expression

Programming in Java | Week 10

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 10 Assignment 10 Answers

Q1. Which class provides methods to work with URLs? a. URLConnection b. HttpURL c. NetURLg d. URL

Answer: d. URL

Q2. What does the following code do? a. Creates a JFrame with a JButton labeled “Programming in Java” b. Compiles with errors c. Displays a message dialog d. Creates a JPanel with a JButton labeled “Programming in Java”

Answer: a. Creates a JFrame with a JButton labeled “Programming in Java”

Q3. What happens when the button in this Java code snippet is clicked? a. The program exits b. A message dialog with the text “Welcome to the course” is displayed c. The button label changes to “Welcome to the course” d. Nothing happens

Answer: b. A message dialog with the text “Welcome to the course” is displayed

Q4. What GUI component is used to input the password in this Java code snippet? a. JTextField b. JButton c. JtextArea d. JPasswordField

Answer: d. JPasswordField

Q5. What does this Java code snippet create? a. A frame with a list of colors displayed as buttons b. A frame with a combo box containing options “Red”, “Green”, and “Blue” c. A frame with radio buttons for selecting colors d. A frame with checkboxes for selecting colors

Answer: b. A frame with a combo box containing options “Red”, “Green”, and “Blue”

Q6. What does this Java code snippet do? a. Just prints the IP address of the local machine b. Prints the IP address and host name of the local machine c. Prints the IP address and host name of “nptel.ac.in” d. Just prints the IP address of “nptel.ac.in”

Answer: c. Prints the IP address and host name of “nptel.ac.in”

Q7. What does this Java code snippet do? a. Connects to a MySQL database, retrieves data from the “employees” table, and prints it b. Inserts data into the “employees” table of a MySQL database c. Deletes data from the “employees” table of a MySQL database d. Updates data in the “employees” table of a MySQL database

Answer: a. Connects to a MySQL database, retrieves data from the “employees” table, and prints it

Q8. What does this Java code snippet do? a. Retrieves data from the “employees” table b. Inserts a new employee record into the “employees” table c. Updates employee records in the “employees” table d. Deletes employee records from the “employees” table

Answer: b. Inserts a new employee record into the “employees” table

Q9. What additional code is needed at #1 to complete this Java program to send a message? a. socket.recieve(packet); b. Socket.Send(packet); c. Socket.send(packet); d. socket.send(packet);

Answer: d. socket.send(packet);

Q10. What is missing in this Java program? a. Retrieving the number of employees b. Deleting employee records c. Updating employee records d. Importing necessary JDBC libraries

Answer: d. Importing necessary JDBC libraries

Programming Assignment

Question 1 Program to sort the elements of an array in ascending order. Follow the naming convention as given in the main method of the suffix code.

Question 2 Print a given matrix in spiral form. Follow the naming convention as given in the main method of the suffix code.

Question 3 Code to create two threads, one printing even numbers and the other printing odd numbers.

Question 4 Program to compute the sum of all prime numbers in a given range. The range value will be positive.Follow the naming convention as given in the main method of the suffix code.

Question 5 Write a program that converts temperatures between Celsius and Fahrenheit. Implement two methods, celsiusToFahrenheit and fahrenheitToCelsius, to perform the conversions.

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 The following code needs some package to work properly. Write appropriate code to import the required package(s) in order to make the program compile and execute successfully.

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: 1. Name the connection object as ‘conn’ only. 2. 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 ‘PLAYERS’ in SQL database using the following information.

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

More Nptel Courses: Click here

Session: JAN-APR 2023

Course Name: Programming in Java

Q1. Which of the following statement(s) is(are) true? a. TCPis not reliable. b. UDP is most reliable. c. TCPis fast and UDP is slow. d. In HTTPS, all communication between two computers are encrypted.

Answer: d. In HTTPS, all communication between two computers are encrypted.

Q2. Which of the following statement(s) is/are true? a. DatagramSocket implements Object. b. DatagramSocket implements Closeable. c. DatagramSocket extends Object. d. DatagramSocket extends Closeable. e. DatagramSocket extends Object implements Closeable

Answer: e. DatagramSocket extends Object implements Closeable

Q3. Which of the following is/are interface(s) present in java.net package? a. InterfaceAddress b. FileNameMap c. DatagramPacket d. DatagramSocket

Answer: b. FileNameMap

Q4. Which of the following statement(s) is/are true? a. Addresses belongs to a Low-Level API. b. Sockets belong to High-Level API. c. URIs and URLs are Low-Level API. d. Interfaces are High-Level API.

Answer: a. Addresses belongs to a Low-Level API.

Q5. In context of the following URL, identify the correct option. https://nptel.ac.in a. There is no protocol provided in the above link. b. The website provides a secure connection. c. The given link is incomplete and hence cannot open a website. d. The ac.in refers to the website path.

Answer: b. The website provides a secure connection.

Q6. Which of the following is/are application layer protocol(s)? a. TCP b. UDP c. ARP d. SMTP

Answer: d. SMTP

Q7. What is true about IP:PORT in the following options? a. Port number 21 is the default FTP port. b. Only port number is required for FTP connections and no IP is required. c. 127.0.0.1 and localhost are same. d. There is no concept of PORT in IPv6.

Answer: a, c

Q8. Which of the following is/are valid Data Definition Language (DDL) command(s)? a. SELECT b. INSERT c. UPDATE d. ALTER TABLE

Answer: d. ALTER TABLE

Q9. In JDBC, all raw data types (including binary documents or images) should be read and uploaded to the database as an array of a. byte b. vector c. char d. file

Answer: a. byte

Q10. The package, which is required to be imported for the JDBC programming? a. java.net b. java.lang c. java.io d. java.sql

Answer: d. java.sql

Programming Assignment of Programming in Java

The following code needs some package to work properly. Write appropriate code to import the required package(s) in order to make the program compile and execute successfully .

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: 1. Name the connection object as ‘conn’ only. 2. Use timeout value as 1.

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 ‘ PLAYERS ’ in SQL database using the following information.

Complete the code segment to rename an already created table named ‘PLAYERS’ into ‘SPORTS’.

More Weeks of Programming In Java: Click Here

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

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

week 10 programming assignment 1

NPTEL Programming in Java Jan 2024 Week 6 to 12

week 10 programming assignment 1

   Please scroll down for latest Programs.  👇 

Week 6 : Programming Assignment 1

Week 6 : programming assignment 2, week 6 : programming assignment 3, week 6 : programming assignment 4, week 6 : programming assignment 5, week 7 : programming assignment 1.

  • a parameterized constructor to initialize the private fields
  • the getter/setter methods for each field

Week 7 : Programming Assignment 2

  • a parameterized constructor to initialize the private field
  • public void deposit(...) // to deposit money
  • public void withdraw(...) // to withdraw money, should print "Insufficient funds!" if not enough money to withdraw
  • public double getBalance() // to return the current balance

Week 7 : Programming Assignment 3

  • a parameterized constructor to initialize the Circle class
  • @Override the area function to compute the area of a circle ( Use Math.PI  for value of pi, not 22/7)
  • @Override the displayInfo() function to print exactly in the format provided by the test cases.

Week 7 : Programming Assignment 4

  • Create a class "Circle" that implements the "Shape" interface and provides its own implementation for calculateArea().
  • Create another class "Rectangle" that implements the "Shape" interface and provides its own implementation for calculateArea().
  • @Override the area function to compute the area of a rectangle

Week 7 : Programming Assignment 5

  • Create a class "FlyingFish" that implements both interfaces and provides its own implementation for fly() and swim()
  • It should have a private variable name, use a constructor to set the value and the functions fly() and swim() to print exactly as given in the test case.

Week 8 : Programming Assignment 1

  • name (String)
  • sound (String)
  • public void makeSound()  - This method should display the name of the animal and the sound it makes.

Week 8 : Programming Assignment 2

Week 8 : programming assignment 3, week 8 : programming assignment 4, week 8 : programming assignment 5, 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

Programming In Java - Unproctored Exam Test - Session 1

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline  Programming Exam 2022 (First Session) (10am - 12pm) You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=216 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=217 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=218 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=219 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=220 Best of Luck! -NPTEL Team

Programming In Java - Unproctored Exam Test - Session 2

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline  Programming Exam 2022 (2nd Session) (8pm - 10pm) You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=221 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=222 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=223 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=224 https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=225 Best of Luck! -NPTEL Team

Reminder 5: Programming In Java : Online Programming test (July 2022)

Dear Learners, The criteria for certification of this course " Programming In Java " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (Unproctored) - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc22_cs102/ 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Online Programming Test (October 22)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:  October 22, 2022 (Saturday)  (Duration of the session will be 2 hrs) First Session:  10.00AM - 12.00PM   Second Session: 8.00PM - 10.00PM You can take either one of the sessions. If you attend both sessions, we will take best score out of them. Note: 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 that were conducted in Jan 2022 to become eligible for the e-certificate, wherever applicable. If not, please submit assignments again in the July 2022 course and also participate in the non-proctored programming exams to become eligible for the e-certificate in July 2022. We will not be having new assignments or unproctored exams in this course. You can also submit assignments again and participate in the non-proctored programming exams if you want to take fresh assignments or need to improve your previous scores. Note: - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA Candidates have to come to the exam center and take the theory test on  October 30, 2022 It is mandatory to take the Proctored in-person final exam to obtain a certificate. To pass the course and get a certificate: Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -NPTEL Team.

Reminder 4: Programming In Java : Online Programming test (July 2022)

Reminder 3: programming in java : online programming test (july 2022), reminder 2: programming in java : online programming test (july 2022), reminder 1: programming in java : online programming test (july 2022).

Dear Learners, The criteria for certification of this course " Programming In Java " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (Unproctored) - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc22_cs102/ 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Online Programming Test (October 22)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:  October 22, 2022 (Saturday)  (Duration of the session will be 2 hrs) First Session:  10.00AM - 12.00PM   Second Session: 8.00PM - 10.00PM You can take either one of the sessions. If you attend both sessions, we will take best score out of them. Note: 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 that were conducted in Jan 2022 to become eligible for the e-certificate, wherever applicable. If not, please submit assignments again in the July 2022 course and also participate in the non-proctored programming exams to become eligible for the e-certificate in July 2022. We will not be having new assignments or unproctored exams in this course. You can also submit assignments again and participate in the non-proctored programming exams if you want to take fresh assignments or need to improve your previous scores. LINK to enroll in the current course:  https://onlinecourses.nptel.ac.in/noc22_cs102/preview Note: - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA Candidates have to come to the exam center and take the theory test on  October 30, 2022 It is mandatory to take the Proctored in-person final exam to obtain a certificate. To pass the course and get a certificate: Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -NPTEL Team.

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

Dear Candidate, Here is a golden opportunity for those who had previously enrolled in this course during the Jan 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 2022 and we are giving you another chance to write the exam in October  2022 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:    October 30 2022 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 in the previous semester 6. If you do enroll to July 2022 course, we will take the best average assignment scores/non-proctored programming exam score across the two semesters NOTE: 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 that were conducted in Jan 2022 to become eligible for the e-certificate, wherever applicable. If not, please submit assignments again in the July 2022 course & and also participate in the non-proctored programming exams to become eligible for the e-certificate. We will not be having new assignments or unproctored exams in the previous semester's(Jan 2022) course.  You can also submit assignments again and participate in the non-proctored programming exams if you want to take fresh assignments or need to improve your previous scores. RECOMMENDATION: If you want to take new assignments and an unproctored exam or brush up on your lessons for the exam, please enroll in the July 2022 course. LINK to enroll in the current course:   https://onlinecourses.nptel.ac.in/noc22_cs102/preview 7. 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   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: Sep 16, 2022, 10:00 AM (Friday).   10. Mode of payment: Online payment - debit card/credit card/net banking/UPI. 11. 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.  12. 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.  13. 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: -  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.  14. LAST DATE FOR CANCELLING EXAMS and getting a refund: Sep 16, 2022, 10:00 AM   15. 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,  NPTEL TEAM

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!

Dear Candidate, The exam scores and E Certificates have been released for April 2022 Exam(s). Step 1 - Are the results of my courses released? Please check the Results published courses list in the below links.:- April 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

Programming In 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/1SurfaxWXMxW5rqqBouZ0hf4k1pAfxrNNOnj3bY6tEm0/viewform We thank you for your valuable time and feedback. Thanks & Regards, -NPTEL Team

NPTEL April Exams

Dear Leaner,

_NPTEL Team

Best of Luck for your Exam !!

week 10 programming assignment 1

Hall Tickets for April Exams are released !

  • If there are any mistakes in the hall ticket such as another person's photo/sign/name, please fill the following Google form & mark the corrections.
  • GForm Link -  https://forms.gle/aqeMCN15MpnTQPpV9 (Deadline - April 22, 2022 at 11.00 AM)
  • These corrections will be reflected in your e-certificate only.
  • No changes will be made in the hall ticket.
  • We will check and verify the same and send an email confirmation.
  • You will still be allowed to write the exam. We will NOT make any changes in the hall ticket issued to you. Please come to the exam centre with the printout of the same hall ticket, along with a valid govt. approved photo id card.
  •  If the photo/sign/name is yours, we WILL NOT upload any updated photo/sign, etc.
  •  Requests for changes in exam city, exam center, session, or course will NOT be entertained.

Programming In Java - Assignment- 12 Solution Released

Dear Participants, The  Assignment- 12  of  Week- 12  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. Link:  https://drive.google.com/file/d/1pYxYT1sZMUy8jvvjriGs_TNbmjoKvbl6/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Assignment- 11 Solution Released

Dear Participants, The  Assignment- 11  of  Week- 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. Link:  https://drive.google.com/file/d/1dITVo714iX5Q3am_pkx-xWhPtnHTAfX4/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming in Java - Unproctored Exam Test - Session 1

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline  Programming Exam April 2022 (First Session): (10.00AM - 12:00PM).  You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=217 https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=218 https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=219 https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=222 https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=223 Best of Luck - NPTEL  team

Programming in Java - Unproctored Exam Test - Session 2

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline Programming Exam April 2022 (Second Session): (8.00PM - 10:00PM). You can access the questions in the below link:  https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=224   https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=225 https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=227   https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=229 https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=230  Best of Luck -NPTEL team

Reminder 5 : Programming in Java : Online Programming test

Dear Candidate The criteria for certification of this course " Programming in Java " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (unproctored).  - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc22_cs47/course 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Programming Test - (April 16)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:  April  16,2022  (Saturday ) First Session: 10.00AM - 12.00PM  (Duration of the session will be 2 hrs) Second Session: 8.00PM - 10.00PM  (Duration of the session will be  2 hrs ) Note - You can take any one or both sessions too; the best score will be considered towards the final certification score. - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA     Candidates have to come to the exam center and take the theory test on  April 24, 2022.     It is mandatory to take the Proctored in-person final exam to obtain a certificate.     To pass the course and get a certificate:   Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR   Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -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/1yG6Rf7aGvrwCL9Y7GhiI40q-bkva6L93vkkRaiL0aiE/viewform

Programming In Java - Week 11 Feedback Form

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/noc22_cs47/unit?unit=94&lesson=95

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_cs47/unit?unit=94&assessment=215

Programming Assignment 1  for  Week 12 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=202 Programming Assignment 2  for  Week 12 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=197 Programming Assignment 3  for  Week 12 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=198 Programming Assignment 4  for  Week 12 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=199 Programming Assignment 5  for  Week 12 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=200

The Assignment has to be submitted on or before Wednesday, 20-04-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 21 -04-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

Reminder 3 : Programming in Java : Online Programming test

Dear Candidate The criteria for certification of this course " Programming in Java " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (unproctored).  - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc2 2-cs47/ 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Programming Test - (April 16)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:  April  16,2022  (Saturday ) First Session: 10.00AM - 12.00PM  (Duration of the session will be 2 hrs) Second Session: 8.00PM - 10.00PM  (Duration of the session will be  2 hrs ) Note - You can take any one or both sessions too; the best score will be considered towards the final certification score. - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA     Candidates have to come to the exam center and take the theory test on  April 24, 2022.     It is mandatory to take the Proctored in-person final exam to obtain a certificate.     To pass the course and get a certificate:   Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR   Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -NPTEL Team.

Reminder 2 : Programming in Java : Online Programming test

Programming in java - assignment- 9 solution released.

Dear Participants, The  Assignment- 9  of  Week- 9  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. Link:  https://drive.google.com/file/d/1SOs61LXM1htopoWozjMKtIEzWrjBjBlI/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 10 Feedback Form

Programming in java - week 11 content is live now.

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/noc22_cs47/unit?unit=87&lesson=88

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

Programming Assignment 1  for  Week 11 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=150 Programming Assignment 2  for  Week 11 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=151 Programming Assignment 3  for  Week 11 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=152 Programming Assignment 4  for  Week 11 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=153 Programming Assignment 5  for  Week 11 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=154

The Assignment has to be submitted on or before Wednesday, 13-04-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 14 -04-2022, 23:59 IST.

Exam Format - April 24, 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

Reminder 1 : Programming in Java : Online Programming test

Programming in java - week 10 content is live now.

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/noc22_cs47/unit?unit=80&lesson=81

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

Programming Assignment 1  for  Week 10 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=205 Programming Assignment 2  for  Week 10 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=206 Programming Assignment 3  for  Week 10 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=207 Programming Assignment 4  for  Week 10 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=208 Programming Assignment 5  for  Week 10 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=209

The Assignment has to be submitted on or before Wednesday, 06-04-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 07 -04-2022, 23:59 IST.

Programming In Java - Assignment- 8 Solution Released

Dear Participants, The  Assignment- 8  of  Week- 8  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. Link:  https://drive.google.com/file/d/1_S_tdA1U-Ej9MhaVrrG6wT4s3WoAYzA3/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

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

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/noc22_cs47/unit?unit=73&lesson=74

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

Programming Assignment 1  for  Week 9 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=191 Programming Assignment 2  for  Week 9 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=192 Programming Assignment 3  for  Week 9 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=193 Programming Assignment 4  for  Week 9 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=194 Programming Assignment 5  for  Week 9 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=195

The Assignment has to be submitted on or before Wednesday, 30-03-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 31 -03-2022, 23:59 IST.

Programming In Java - Week 9 Feedback Form

Programming in java - week 8 feedback form, programming in java - assignment- 7 solution released.

Dear Participants, The  Assignment- 7  of  Week- 7  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. Link:  https://drive.google.com/file/d/1JjoXDAdyjhKmI4wUpbLWFQmYAlC-1baJ/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Assignment- 6 Solution Released

Dear Participants, The  Assignment- 6  of  Week- 6  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. Link:  https://drive.google.com/file/d/10m1VDM-mtUK5cQj2Yr1OuY6oAjDtcj1V/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 7 Feedback Form

Programming in java - week 8 content is live now.

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/noc22_cs47/unit?unit=66&lesson=67

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

Programming Assignment 1  for  Week 8 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=145 Programming Assignment 2  for  Week 8 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=146 Programming Assignment 3  for  Week 8 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=147 Programming Assignment 4  for  Week 8 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=148 Programming Assignment 5  for  Week 8 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=149

The Assignment has to be submitted on or before Wednesday, 23-03-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 24 -03-2022, 23:59 IST.

Programming In Java - Week 6 Feedback Form

Programming in java - week 7 content is live now.

The lecture videos for Week 7 have been uploaded for the course Programming in Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/unit?unit=59&lesson=60

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

Programming Assignment 1  for  Week 7 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=182 Programming Assignment 2  for  Week 7 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=183 Programming Assignment 3  for  Week 7 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=184 Programming Assignment 4  for  Week 7 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=185 Programming Assignment 5  for  Week 7 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=186

The Assignment has to be submitted on or before Wednesday, 16-03-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 17 -03-2022, 23:59 IST.

Programming In Java - Assignment- 5 Solution Released

Dear Participants, The  Assignment- 5  of  Week- 5  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. Link:  https://drive.google.com/file/d/14t1aB_dzSNGMnjMF6QegcAEk1AJJdGG2/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming in Java study-materials

The link for study materials of the entire course as in the lecture video is not working. You are advised to follow the below link for accessing the materials  ( Object Oriented Programming with Java ) Programming in Java study-materials:   https://cse.iitkgp.ac.in/~dsamanta/java/index.htm

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

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/noc22_cs47/unit?unit=52&lesson=53

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

Programming Assignment 1  for  Week 6 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=174 Programming Assignment 2  for  Week 6 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=175 Programming Assignment 3  for  Week 6 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=177 Programming Assignment 4  for  Week 6 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=176 Programming Assignment 5  for  Week 6 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=179

The Assignment has to be submitted on or before Wednesday, 09-03-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 10 -03-2022, 23:59 IST.

Programming In Java - Week 5 Feedback Form

Programming in java - download video links are available now.

Dear Learners, 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 - Assignment- 4 Solution Released

Dear Participants, The  Assignment- 4  of  Week- 4  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. Link:  https://drive.google.com/file/d/1mAJHE4uof3WQE-cDsg6ewt6Wlpc3CQYb/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 4 Feedback Form

Programming in java - week 5 content is live now.

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/noc22_cs47/unit?unit=45&lesson=46

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

Programming Assignment 1  for  Week 5 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=140 Programming Assignment 2  for  Week 5 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=141 Programming Assignment 3  for  Week 5 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=142 Programming Assignment 4  for  Week 5 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=143 Programming Assignment 5  for  Week 5 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=144

The Assignment has to be submitted on or before Wednesday, 02-03-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 03 -03-2022, 23:59 IST.

Programming In Java - Assignment- 3 Solution Released

Dear Participants, The Assignment- 3 of Week- 3 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. Link:  https://drive.google.com/file/d/10ZbtZy77pDRi0WCcalfgQNr5PKh84CkU/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming in Java : Online Programming test

Programming in java - week 4 content is live now.

The lecture videos for Week 4 have been uploaded for the course Programming in Java . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/unit?unit=38&lesson=39

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

Programming Assignment 1  for  Week 4 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=164 Programming Assignment 2  for  Week 4 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=165 Programming Assignment 3  for  Week 4 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=166 Programming Assignment 4  for  Week 4 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=167 Programming Assignment 5  for  Week 4 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=168

The Assignment has to be submitted on or before Wednesday, 23-02-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 24 -02-2022, 23:59 IST.

Programming In Java - Assignment- 1 & 2 Solution Released

Dear Participants, The Assignment-1 & 2 of Week- 1 & 2 Solution for the course  Programming In Java   have been released in the portal. Please go through these solutions and in case of any doubt post your queries in the forum. Link for solution of Assignment 1:  https://drive.google.com/file/d/1BaySF2TOWU8jnAM6Kc6Dzg3c1ECP8tgt/viewusp=sharing Link for solution of Assignment 2 : https://drive.google.com/file/d/1OBe9rnhThNEfK-LTiHssEOf4DG233v6-/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Programming In Java - Week 3 Feedback Form

Assignments for week 1 & 2 due on feb 9 2022 .

Dear Learner, Assignments for Week 1 & 2 are open for submission .The last date for submission is Feb 9 2022 IST 23:59 . If you have not submitted the assignments ,kindly submit the same before the due date. -NPTEL Team.

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

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/noc22_cs47/unit?unit=31&lesson=32

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

Programming Assignment 1  for  Week 3 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=157 Programming Assignment 2  for  Week 3 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=158 Programming Assignment 3  for  Week 3 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=159 Programming Assignment 4  for  Week 3 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=161 Programming Assignment 5  for  Week 3 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=162

The Assignment has to be submitted on or before Wednesday, 16-02-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 17-02-2022, 23:59 IST.

Programming In Java - Week 2 Feedback Form

Programming in java - week 2 content is live now.

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/noc22_cs47/unit?unit=24&lesson=25

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

Programming Assignment 1  for  Week 2 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=135 Programming Assignment 2  for  Week 2 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=136 Programming Assignment 3  for  Week 2 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=137 Programming Assignment 4  for  Week 2 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=138 Programming Assignment 5  for  Week 2 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=139

The Assignment has to be submitted on or before Wednesday, 09-02-2022, 23:59 IST and all the Programming Assignments have to be submitted on or before Thursday, 10-02-2022, 23:59 IST.

Programming In Java - Week 1 Feedback Form

Programming in java - assignment- 0 solution released.

Dear Participants, The Assignment- 0 of Week- 0 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. Link:  https://drive.google.com/file/d/1MoagO_BHacKCmRFbbpGJiF11hChMKOGg/view?usp=sharing Happy Learning! Thanks & Regards, NPTEL Team

Attention: Regarding the Social media Groups

Dear Learners, The discussion forum, which is embedded on the course portal,  is the only authentic medium to communicate regarding this course . This Forum is monitored by the Faculty coordinator and team and on which we will respond. NPTEL is NOT responsible for any whatsapp group or any other group created in any social media platform.  Request the learners to refrain from sharing phone numbers and other details which may be misused as this is a public group and this information is available to all members in this group. This kind of activity is strictly prohibited and NPTEL will not be responsible for misuse of any such information. All the best, Happy Learning! -NPTEL Team

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

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/noc22_cs47/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_cs47/unit?unit=17&assessment=128 Programming Assignment 1  for  Week 1 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=129 Programming Assignment 2  for  Week 1 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=130 Programming Assignment 3  for  Week 1 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=131 Programming Assignment 4  for  Week 1 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=132 Programming Assignment 5  for  Week 1 is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs47/progassignment?name=133

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

Dear Learner, 

Here is the much-awaited announcement on registering for the Jan 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: April 24, 2022

Certification exam registration URL is: https://examform.nptel.ac.in/  

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

4. Exam fees: 

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

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

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

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

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

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: March 18, 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: - 

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. 

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

12. 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/noc/Domain/discipline.html

Thanks & Regards, 

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

Programming In Java: Welcome to NPTEL Online Course - Jan 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: April 24, 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

week 10 programming assignment 1

In association with

week 10 programming assignment 1

IMAGES

  1. nptel Programming In Java week 10 programming assignment solution.100%

    week 10 programming assignment 1

  2. Solved Programming Assignment 1 CSC 170

    week 10 programming assignment 1

  3. Programming Assignment 1, Due October 10

    week 10 programming assignment 1

  4. NPTEL PROGRAMMING IN JAVA WEEK 10 PROGRAMMING ASSIGNMENT ANSWERS

    week 10 programming assignment 1

  5. PPT

    week 10 programming assignment 1

  6. Programming Assignment 1.pdf

    week 10 programming assignment 1

VIDEO

  1. NPTEL Programming In Java WEEK 1 Quiz Assignment Solutions💡

  2. NPTEL Programming In Java WEEK10 Programming Assignment Solutions

  3. CS201 Assignment 1 || Spring 2024

  4. Java Programming 1

  5. NPTEL Programming In Java Week 11 Programming Assignment 1 Answers l April 2024

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

COMMENTS

  1. Swayam Solver: NPTEL Programming in Java Jan 2024 Week 9 to 10

    Week 10 : Programming Assignment 1. Due on 2024-04-04, 23:59 IST. Program to sort the elements of an array in ascending order. Follow the naming convention as given in the main method of the suffix code. Your last recorded submission was on 2024-03-25, 08:55 IST. Select the Language for this assignment.

  2. NPTEL Programming in Java Week 10 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.

  3. PDF Week-10 Program-01

    03/07/2020 Problem solving through Programming In C - Course https://onlinecourses.nptel.ac.in/noc20_cs06/progassignment?name=162 3/3 Week 12 DOWNLOAD

  4. Week 10 Programming Assignment Solutions

    Week 10 Programming Assignment Solutions | The Joy of Computing using PythonThe Joy of Computing using Python | Week 10 Programming Assignment Solutions | NP...

  5. NPTEL The Joy of Computing using Python Jan-2024 Week 9 to 10

    Due on 2024-04-11, 23:59 IST. A n×n square matrix of positive integers is called a magic square if the following sums are equal: (1) row-sum: sum of numbers in every row; there are n such values, one for each row. (2) column-sum: sum of numbers in every column; there are n such values, one for each column. (3) diagonal-sum: sum of numbers in ...

  6. Programming In Java

    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.

  7. Swayam || The Joy of Computing Using Python Week-10 Programming

    In this video, I'm solving the Week-10 programming assignment using Swayam, The Joy of Computing Using Python. If you're looking to gain a better understandi...

  8. NPTEL Programming In Java WEEK10 Programming Assignment ...

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

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

  10. PDF Week 10 Programming Assignment 1

    Week 10 Programming Assignment 1 You are required to maintain number of patients infected by corona per country. You are given data which needs to be updated as and when new data is received. The input line has two parts 1) string: Country, EXIT is specify end of input. 3) int: count At the end print count per country (sorted by country name).

  11. Nptel Week10 Assignment Solutions

    Nptel Week10 Assignment Solutions - Free download as Word Doc (.doc / .docx), PDF File (.pdf), Text File (.txt) or read online for free. The document discusses 5 programming assignments for Week 10. It includes code snippets for connecting to a database, checking if a connection is closed, importing SQL and Java classes, creating a table, and renaming a table.

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

    This repository in NPTEL course Programming in Java Question and Quiz answer. - Programming-in-Java-NPTEL/README.md at master · sumitnce1/Programming-in-Java-NPTEL

  13. Week 10 Assignment 01

    1/ CS 172/01: Introduction to Java Programming - Fall 2021. Week #10 Assignment. Due date: Sunday, Nov. 7 at 11:59 p. Note: You are encouraged to discuss homework problems with other students (and with the instructor), but you must write your final answer by yourself. Solutions prepared "in committee" or by copying someone else's work are not acceptable.

  14. NPTEL The Joy of Computing using Python Jan-2024

    1. Programming Assignment | Week 5. Due on 2024-02-29, 23:59 IST. 1. Write a function insert that accepts a sorted list L of integers and an integer x as input. The function should return a sorted list with the element x inserted at the right place in the input list. The original list should not be disturbed in the process.

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

  16. GitHub

    Programming Assignment 1: Programming Challenges (OPTIONAL) Solving The Maximum Pairwise Product Programming Challenge in C++; Maximum Pairwise Product Programming Challenge; Using PyCharm to solve programming challenges (optional experimental feature) Acknowledgements (Optional)

  17. NPTEL Programming In Java Week 10 Assignment 10 Answers

    c. Updates employee records in the "employees" table. d. Deletes employee records from the "employees" table. Answer: b. Inserts a new employee record into the "employees" table. For answers or latest updates join our telegram channel: Click here to join. These are NPTEL Programming In Java Week 10 Assignment 10 Answers. Q9.

  18. PDF Assignment 1

    02/07/2020 Programming in Java - - Unit 3 - Week 1 : https://onlinecourses.nptel.ac.in/noc20_cs08/unit?unit=2&assessment=93 2/5 Week 2 : Week 3 : Week 4 :

  19. Swayam Solver: NPTEL Programming in Java Jan 2024 Week 6 to 12

    Week 6 : Programming Assignment 1. Due on 2024-03-14, 23:59 IST. Complete the code fragment to read two integer inputs from keyboard and find the quotient and remainder. Your last recorded submission was on 2024-03-01, 22:30 IST. Select the Language for this assignment.

  20. NPTEL Problem Solving through Programming in C ASSIGNMENT 10 ...

    NPTEL | Problem Solving Through Programming In C | Week 10 : Assignment 10 | Answers with Proof | Jan 2024 Quiz SolutionsJoin Telegram Group of this course, ...

  21. PDF Week 10 Programming Assignment 2

    Week 10 Programming Assignment 2 Write a program that reads an integer n, and then n pairs of names, and finally two additional names S, B. Each name is a sequence of non whitespace characters delimited by whitespace. In each pair the first name is the name of an employee and the second name is

  22. PDF Week 10 Programming Assignment 3

    Week 10 Programming Assignment 3 Define a class to store an extensible array. It should be possible to index into the array, and it should be possible to extend the array using a push_back operation. A skeleton definition of the class is given below. You are to fill in the

  23. Programming In Java

    There will be sections under the course outline "Online Programming Test (October 22)" that will have the online programming exam link. 4. You can click on this link and attempt the programming exam. Date: October 22, 2022 (Saturday) (Duration of the session will be 2 hrs) First Session: 10.00AM - 12.00PM.