• Tuesday, July 30, 2024

NPTEL Programming in Java Week 5 Assignment Solution 2023

NPTEL-Programming-In-Java-Week-5-Programming-Assignment-Solutions

NPTEL Programming in Java Week 5 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 2023”

Question : 1  Complete the code segment to catch the ArithmeticException  in the following, if any. On the occurrence of such an exception, your program should print “ Exception caught: Division by zero. ” If there is no such exception, it will print the result of division operation on two integer values.

Question : 2 In the following program, an array of integer data to be initialized. During the initialization, if a user enters a value other than integer value, then it will throw InputMismatchException exception. On the occurrence of such an exception, your program should print “ You entered bad data .” If there is no such exception it will print the total sum of the array.

Question : 3  In the following program, there may be multiple exceptions. You have to complete the code using only one try-catch block to handle all the possible exceptions.

For example, if user’s input is 1, then it will throw and catch “ java.lang.NullPointerException “.

Question : 4 An interface Number is defined in the following program. You have to declare a class A, which will implement the interface Number. Note that the method findSqr(n) will return the square of the number n.

Question : 5 This program is to find the GCD (greatest common divisor) of two integers writing a recursive function  findGCD(n1,n2) . Your function should return -1 , if the argument(s) is(are) other than positive number(s).

Quizermania Logo

Programming in Java | NPTEL 2023 | Week 5 quiz solutions

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

Course layout (Answers Link)

Answers COMING SOON! Kindly Wait!

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

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

Now, start attempting the quiz.

Programming in Java NPTEL Week 5 Quiz Solutions

Q1. If the program is executed, then what will be the output?

a) 20 b) 21 c) 19 d) 22

Answer: b) 21

Programming in Java NPTEL Week 5 quiz Solutions

Q2. Which of the following statement(s) is/are false? 1. A class can extend more than one class. 2. An interface can extend many interfaces. 3. An interface can implement many interfaces. 4. A class can extend one class and implement many interfaces.

a) 1 b) 2 c) 3 d) 4

Answer: a), c)

Q3. What is the output of the following code?

a) 1 b) 2 c) 0 d) Compiler error

Answer: c) 0

Q4. Which of the following statement(s) is/are false?

a) Interface can provide the implementation of an abstract class. b) The variables defined inside an interface are static and final by default. c) An interface is used to achieve full abstraction. d) Inside an interface, a constructor can be called using the super keyword with hierarchy.

Answer: a), d)

Q5. What is the output of the following code?

a) java b) java course c) nptel course d) Compiler error

Answer: d) Compiler error

Q6. Which of the following keywords is/are a part of exception handling?

a) finally b) throws c) throw d) thrown

Answer: a), b), c)

Q7. Fill in the blank in the above program to print the output “Java”.

a) public void b) void c) private void d) static void

Answer: a) public void

Q8. Exception class exist in which of the following package?

a) java.void b) java.io c) java.lang d) java.awt

Answer: c) java.lang

Q9. Fill in the blank with appropriate syntax for creating an object “c” to run the above program successfully.

a) X c = new X(1); b) X c = new X(); c) X.Question c = new X.Question(0); d) X.Question c = new X.Question(1);

Answer: c), d)

Q10. If the program is executed, then how many times “Java” will print?

a) 0 b) 1 c) 2 d) 3

Answer: c) 2

Programming in Java NPTEL Week 5 Quiz Solutions (2022)

Q1. If the program is executed, then what will be the output from the execution?

a) 100 102 b) 20 22 c) 102 100 d) 22 20

Q2. If the program is executed, then what will be the output from the execution?

a) 170 b) 130 c) 0 d) 260

Answer: a) 170

a) Output: This is Explanation’s Print method This is Answer’s Print method b) Error: ‘super.super’ is not allowed. c) Error: Compilation unsuccessful, as there is only one super class of Answer. d) Output: This is Answer’s Print method This is Explanation’s Print method

Answer: b) Error: ‘super.super’ is not allowed.

Q4. Which of the following is/are interface(s)?

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

Answer: b), c), d)

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

a) You can write a new instance method in the subclass that has the same signature as the one in the superclass, thus overriding it. b) You can write a new static method in the subclass that has the same signature as the one in the superclass, thud hiding it. c) A subclass inherits all of the public and protected members of its parent, no matter what package the subclass is in. d) You cannot declare new methods in the subclass that are not in the superclass.

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

a) Static methods in interfaces are never inherited. b) You will get a compile-time error if you attempt to change an instance method in the superclass to a static method in the subclass. c) You can prevent a class from being sub classed by using the final keyword in the class’s declaration. d) An abstract class can only be subclassed; it cannot be instantiated

Answer: a), b), c), d)

Q7. Which of the following statement(s) is/are correct?

a) There is no main() method so the program is not compile successfully. b) The value of i will be printed as 22, as it is static and final by default c) The value of i will printed as 2, as it is initialized in class B. d) Compile time error.

Answer: d) Compile time error.

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

a) A class can extend more than one class. b) An interface can extend many interfaces. c) An interface can implement many interfaces. d) A class can extend one class and implement many interfaces.

Answer: b), d)

Q9. All classes in Java are inherited from which class?

a) java.lang.class b) java.class.inherited c) java.class.object d) jaja.lang.Object

Answer: d) jaja.lang.Object

Q10. If the program is executed, then what will be the output from the execution?

a) Output: 1020 b) Output: 30 c) Output: 2010 d) Error: C1 is abstract; cannot be instantiated.

Answer: d) Error: C1 is abstract; cannot be instantiated.

Previous Course – Programming in Java NPTEL Week 5 Quiz Solutions

Q1. Which of the following is not true about throw

a) Throw is used inside a function b) Throw can be used to declare multiple exception c) Throw is followed by an instance d) Throw is a keyword

Answer: b) Throw can be used to declare multiple exception

Q2. Which of the following is not true about custom exception in java?

a. class Exception extends Exp {                      public Exception () {super ();}                      public Exception (String s) {super(s);}    } b. class Exception extends Exp{                      Exception(String s){                                   super(s);                      }      } c. public class Exception extends Exp {                     public Exception(String s) {                                   super(s);                     }     } d. class Exception extends Exp {                     public Exception () {super ();}

Q3. Which of the following is not a property of tagged interface?

a) Serializable b) Cloneable c) Remote d) Cascading

Answer: d) Cascading

Q4. Which of the following is not an exception in Java?

a) SQLException b) ArrayIndexOutOfBoundException c) OutOfMemoryError d) StackOverflow

Answer: d) StackOverflow

Q5. Which of the following is type of Java Exception?

a) unchecked b) checked c) a & b d) error

Answer: c) a & b

Q6. Which of the following keywords is not a part of exception handling?

a) try b) throws c) throw d) thrown

Answer: d) thrown

Q7. Which of the option is correct regarding multiple catch blocks?

a) The subclass exception cannot be caught at first b) The superclass exception cannot be caught at first c) The subclass exception must be caught at last d) The superclass exception must be caught at first

Answer: b) The superclass exception cannot be caught at first

Programming in Java NPTEL Week 5 Quiz solutions

Q8. When an array element is accessed beyond the array size, then which exception occurs

a) ArrayElementOutOfBound b) ArrayIndexOutOfBound c) ArraySizeOutOfBound d) None of the above

Answer: d) None of the above

Q9. What is the output of this program?

a) 0 b) A c) 0 d) 0B

Answer: d) 0B

Q10. When does an exception occur?

a) During the time of compilation of a Java program b) During the time of execution of a Java program c) Anytime, that is, during compilation and execution of a program d) At the end of execution of a Java program, if there is an exception

Answer: b) During the time of execution of a Java program

>> Next- Programming in Java Week 4 Assignment Solutions

>> Next- Programming in Java Week 6 Assignment Solutions

Nptel – Deep Learning assignment solutions

Social Networks nptel assignment answers

NPTEL answers: Programming in Modern C++

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

Related Posts

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

Preprocessor Directives

C programming MCQ : Preprocessor Directives(MULTIPLE CHOICE QUESTION)

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

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

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

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

Category: NPTEL

Soft skills | week 1, programming, data structures and algorithms using python | week 1, deep learning – iit ropar | week 1, soft skill development | week 1, python for data science | week 1, programming in java | week 1, problem solving through programming in c | week 1, introduction to machine learning | week 1, machine learning and deep learning – fundamentals and applications | week 1, introduction to operating systems | week 1.

' 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 Programming Assignment July-2024 Swayam

NPTEL   »   Programming in Java

   Please scroll down for latest Programs.  👇 

Week 01 : Programming Assignment 1

Write a Java program to print the area and perimeter of a rectangle.

Public Test CasesInputExpected OutputActual OutputStatus
Private Test cases used for EvaluationStatus
Test Case 1

Week 01 : Programming Assignment 2

Write a Java program and compute the sum of an integer's digits.

Week 01 : Programming Assignment 3

Write a Java program to display n terms of natural numbers and their sum.

(Remember to match the output given exactly, including the spaces and new lines)

(passed with presentation error means you will get full marks)

Week 01 : Programming Assignment 4

Write a Java program to make such a pattern like a right angle triangle with the number increased by 1.

(Ignore presentation errors for this and all future programming assignments) (passed with presentation error means  you will get full marks )

Week 01 : Programming Assignment 5

Write a Java program to convert an integer number to a binary number.

Week 02 : Programming Assignment 1

Complete the code segment to call the method  display() of class Former first and then call display() method of class Latter.

Week 02 : Programming Assignment 2

Create a  class Student  with  private  attributes for  name  and  age .

Use a constructor to initialize these attributes and provide public getter methods to access them.

In the main method, an instance of Student is created and the student's details are printed.

Guideline to Solve:

§   Define the  Student class  with  private  attributes.

§   Use a constructor to initialize the attributes.

§   Implement getter methods for the attributes.

Follow the naming convetion used in the Fixed code.

Week 02 : Programming Assignment 3

Create a class  Rectangle  with attributes  length  and  width .

Provide two constructors: one with no parameters ( default to 1 ) and

another with parameters to initialize the attributes.

Use the  this  keyword to avoid name space collision.

Create a getArea() function that returns the area of the rectangle.

§   Define the  Rectangle  class with attributes and constructors.

§   Define a default Rectangle constructor that inializes length and width to 1.

§   Use the  this  keyword in the parameterized constructor.

§   Define a getArea() funtion that returns the area of there rectangle

Week 02 : Programming Assignment 4

Create a class  Circle  that encapsulates the properties of a circle.

The class should have a private field for the radius, a constructor to initialize the radius, and methods to calculate the area and circumference of the circle.

NOTE: use Math.PI for PI calculations (DO NOT USE 22/7)

§   Define the  Circle  class with attributes and constructors.

§   Define a getArea() funtion that returns the area of there Circle (use Math.PI)

§   Define a getCircumference() funtion that returns the circumference of there Circle (use Math.PI)

Week 02 : Programming Assignment 5

Complete the code by creating the constructor and the getter functions for a class Dog as defined below.

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.

VTU Updates

Programming in Java NPTEL Assignment Answers of Week 5 (2023)

In this post we solve Programming in Java NPTEL Assignment Answers of Week 5 (2023)

1. Consider the following program.

If the program is executed, then what will be the output.

Which of the following statement(s) is/are true for the above code?

a] java 10 b] java 20 c] 10 java d] 20 java

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

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

c] Interface has only static and final vaniables.

What is the output of the above code?

a] Object b] Throwable c] Exception d] ArthmeticException

10. If the program is executed, then what will be the output?

Week 5 : Programming Assignments

1] Complete the code segment to catch the ArithmeticException in the following, if any. On the occurrence of such an exception, your program should print “Exception caught: Division by zero.” If there is no such exception, it will print the result of division operation on two integer values.

2] In the following program, an array of integer data to be initialized. During the initialization, if a user enters a value other than integer value, then it will throw InputMismatchException exception. On the occurrence of such an exception, your program should print “You entered bad data.” If there is no such exception it will print the total sum of the array.

3] In the following program, there may be multiple exceptions. You have to complete the code using only one try-catch block to handle all the possible exceptions.

Related Posts

Operating system fundamentals nptel assignment answers of week 8 (2023), operating system fundamentals nptel assignment answers of week 9 (2023), operating system fundamentals nptel assignment answers of week 7 (2023), leave a reply cancel reply.

swayam-logo

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

Reminder- NPTEL: Exam Registration is open now for July 2024 courses!

Dear Candidate,

Here is a golden opportunity for those who had previously enrolled in this course during the Jan 2024 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 2024 and we are giving you another chance to write the exam in October 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: October 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 July 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 Jan 2024 to become eligible for the e-certificate, wherever applicable.

If not, please submit assignments again in the July 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 (Jan 2024) course. 

RECOMMENDATION: If you want to take new assignments and an unproctored exam(if applicable) or brush up on your lessons for the exam, please enroll in the July 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 August 12, 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: August 16, 2024 - 5:00 PM (Friday). 

10. Between August 12, 2024 - 5:00 PM & August 16, 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: August 16, 2024 - 5:00 PM :  

We will charge an additional fee of Rs. 200 each 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: August 16, 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, 

nptel programming in java assignment solutions week 5

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

Programming in java : result published.

  • Log in to your account and navigate to the "Download E-certificate" section.
  • Next to "Download E-certificate," you'll find another tab labeled "Share your experience." Click on it.
  • Answer the provided questions about your experience.
  • Optionally, you can add your picture or skip this step.
  • An AI-assisted post will be generated for you. You can share this post on your social media platforms.

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

April 2024 NPTEL Exams - Hall Tickets Released!

nptel programming in java assignment solutions week 5

Programming In Java : Week 11 Programming Assignment 05

Dear Students, There is typo mistake in Week 11 Programming Assignment 05. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab.  Sorry for the inconvenience. -NPTEL Team

Programming In Java : Week 12 Programming Assignment 03

Dear Students, There is typo mistake in Week 12 Programming Assignment 03. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab.  Sorry for the inconvenience. -NPTEL Team

Programming In Java : Week 09 Programming Assignment 02

Dear Students, There is typo mistake in Week 09 Programming Assignment 02. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab.  Sorry for the inconvenience. -NPTEL Team

"Programming In Java" - Assignment- 12, Solution Released

Dear Participants,

The  Solutions  of the   Assignment - 12  under   Week - 12  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/1MJklVONZ63AOy-GfTu0xMNiF41SNM0TS/view?usp=drive_link

Happy Learning!  Thanks & Regards,

Survey on Problem Solving sessions - Programming In Java (noc24-cs43)

Dear Learners, We would like to know if the expectations with which you attended this problem solving session are being met and hence please do take 2 minutes to fill out our feedback form. It would help us tremendously in gauging the learner experience. Here is the link to the form:  https://docs.google.com/forms/d/1-Cm5TaFF4z1Qy9euJUhGxrUqxR6kfJUHK-QpMVBNXZw/viewform Problem Solving Session Recording Videos will be uploaded inside the Separate Unit called " Problem solving Session " along with the slides used wherever applicable. Recording sheet :   https://docs.google.com/spreadsheets/d/1veAG77qB7LJ9ARvXMrahGb9PUVXATNkrSE0Ismuqsng/edit -NPTEL Team

Programming In Java : Assignment 7 question no 5

Dear Students, There is typo mistake in assignment 7 question no 5. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

Programming In Java : Assignment 9 question no 2

Dear Students, There is typo mistake in assignment 9 question no 2. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

"Programming In Java" - Assignment- 11, Solution Released

The  Solutions  of the   Assignment - 11  under   Week - 11  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/1t2MTZ0CSaqnieBgR7FdII-mAtJEACD_x/view?usp=drive_link

Programming In Java : Problem solving Session Reminder !!

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

Exam Format - April, 2024!!

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 : Problem solving Session Preponed!!

Dear learner, Due to unavoidable circumstances, The Problem solving Session organized for (April 16, 2024 - Tuesday)(06.00 PM - 08.00 PM) is Preponed to April 09, 2024 - Tuesday. We invite you to join the session and get your doubts cleared and learn better. Date: April 09, 2024 - Tuesday Time: 06.00 PM - 08.00 PM Link to join: https://meet.google.com/eix-ymxs-owa   Happy Learning. -NPTEL Team

"Programming In Java" - Assignment- 10, Solution Released

The  Solutions  of the   Assignment - 10  under   Week - 10  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/142RZMyBONZQhvwh0D3NpPjM4V_-w2kMl/view

"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/1Dq0G3T4Y_mPZ9-tejAlwOvkwHAmJ8el2nW4BoI681zU/viewform

"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/noc24_cs43/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/noc24_cs43/unit?unit=106&assessment=356 The assignment has to be submitted on or before  Wednesday, 17-04-2024, 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/noc24_cs43/progassignment?name=320 Programming Assignment 2 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=335 Programming Assignment 3 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=336 Programming Assignment 4 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=337 Programming Assignment 5 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=338 For all the Programming Assignments due date will be :  Thursday, 18-04-2024, 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

Dear learner, Due to unavoidable circumstances, The Problem solving Session organized for (April 09, 2024 - Tuesday)(06.00 PM - 08.00 PM) is Preponed to April 05, 2024 - Friday. We invite you to join the session and get your doubts cleared and learn better. Date: April 05, 2024 - Friday Time: 06.00 PM - 08.00 PM Link to join: https://meet.google.com/eix-ymxs-owa   Happy Learning. -NPTEL Team

Programming In Java : Assignment 8 question no 7

Dear Students, There is typo mistake in assignment 8 question no 7. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

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

"Programming In Java" - Assignment- 09, Solution Released

The  Solutions  of the   Assignment - 09  under   Week - 09  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/1Yh_euM0jeeMOX-RSSkEXkSF5i2JH-vaF/view?usp=drive_link

"Programming In Java" - Week 11 - 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/noc24_cs43/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/noc24_cs43/unit?unit=98&assessment=355 The assignment has to be submitted on or before  Wednesday, 10-04-2024, 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/noc24_cs43/progassignment?name=343 Programming Assignment 2 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=342 Programming Assignment 3 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=344 Programming Assignment 4 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=345 Programming Assignment 5 for Week 11  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=346 For all the Programming Assignments due date will be :  Thursday, 11-04-2024, 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

Important Notice:No CHANGE in NPTEL Exam Schedule for April 2024

Dear Student,

We wanted to take a moment to address an important matter regarding the upcoming election dates and their potential impact on your exam schedule.

  • None of the election dates clash with scheduled exam dates. If we schedule additional dates, we will ensure they again do not clash with elections in your state. 
  • Hence this is to confirm that there will be no changes to the exam dates and they are the same as previously scheduled. We may have exams in some cities on April 19 and April 26 depending on seat availability on scheduled dates. But again this will be done ensuring we don't conduct exams on election dates in your state. 
  • Your academic progress and success remain our top priority, and we are committed to maintaining the integrity of the examination process.
  • We have more than 6 lakh learners registered for April exams and logistics has been a huge challenge. We understand that some of you may need to travel to your native cities to participate in the voting process. Please remember that you selected your exam cities during registration, and it is crucial that you return to these cities to take your exams as scheduled. Since hall ticket and center allocation is under process, exam cities selected by you during exam registration cannot be changed now. 

Hence we kindly request that you make the necessary arrangements to ensure you can both exercise your right to vote and fulfill your academic obligations.

Warm Regards,

NPTEL Team.

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

"Programming In Java" - Week 10 - Feedback Form

"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/noc24_cs43/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/noc24_cs43/unit?unit=90&assessment=354 The assignment has to be submitted on or before  Wednesday, 03-04-2024, 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/noc24_cs43/progassignment?name=333 Programming Assignment 2 for Week 10  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=334 Programming Assignment 3 for Week 10  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=339 Programming Assignment 4 for Week 10  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=340 Programming Assignment 5 for Week 10  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=341 For all the Programming Assignments due date will be :  Thursday, 04-04-2024, 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" - Assignment-8, Solution Released

The  Solutions  of the   Assignment - 08  under   Week - 08  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/14xmMrI-pGufK8-IAcYblxVGZqzD1B-bx/view?usp=drive_link

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

"Programming In Java" - Assignment-7, Solution Released

The  Solutions  of the   Assignment - 7  under   Week - 7  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/1n9XM5j0l0NpsbXivmZ9FO-zISvzrqAbM/view?usp=drive_link

"Programming In Java" - Week 9 - 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/noc24_cs43/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/noc24_cs43/unit?unit=82&assessment=352 The assignment has to be submitted on or before Wednesday, 27-03-2024, 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/noc24_cs43/progassignment?name=347 Programming Assignment 2 for Week 9  is also released and can be accessed from the following link : https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=348 Programming Assignment 3 for Week 9  is also released and can be accessed from the following link : https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=349 Programming Assignment 4 for Week 9  is also released and can be accessed from the following link : https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=350 Programming Assignment 5 for Week 9  is also released and can be accessed from the following link : https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=351 For all the Programming Assignments due date will be : Thursday, 28-03-2024, 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 : Assignment 5 question no 4

Dear Students, In assignment 5 question no 4, multiple options are correct. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

Programming In Java : Assignment 5 question no 1

Dear Students, In assignment 5 question no 1, multiple options are correct. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

Dear learners, There will be a live interactive session where a Course team member will explain some sample problems, how they are solved - that will help you solve the weekly assignments. We invite you to join the session and get your doubts cleared and learn better. Date: March 12, 2024 - Tuesday Time:06.00 PM - 08.00 PM Link to join: https://meet.google.com/eix-ymxs-owa Happy Learning. -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/noc24_cs43/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/noc24_cs43/unit?unit=74&assessment=305

The assignment has to be submitted on or before  Wednesday, 20 - 03 - 2024 ,  23:59 IST .

nptel programming in java assignment solutions week 5

"Programming In Java" - Assignment-6, Solution Released

The  Solutions  of the   Assignment - 6  under   Week - 6  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/1gECpqgdTZFkI9xoVKJ-2WEsC0OrceUEk/view?usp=drive_link

"Programming In Java" - Week 8 - Feedback Form

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

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

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

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

The assignment has to be submitted on or before  Wednesday, 13 - 03 - 2024 ,  23:59 IST .

"Programming In Java" - Week 7 - Feedback Form

"programming in java" - assignment-5, solution released.

The  Solutions  of the   Assignment - 5  under   Week - 5  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/1OVAIeH9RuBl_xDJzFdbZQnbPyOl4cYu8/view?usp=drive_link

"Programming In Java" - Programming Assignments for Week 6 is live now!!

The  Programming  Assignments  for  Week 6  have been uploaded for the course  "Programming In Java"   in the portal and can be accessed using the following links

Please remember to login into the website to view contents (if you aren't logged in already).

Programming  Assignment 1  for  Week  6  is also released and can be accessed from the following link :  https://onlinecourses.nptel.ac.in/noc24_cs43/progassignment?name=307

Programming In Java : Assignment 4 question no 10

Dear Students, There is answer set mistake in assignment 4 question no 10. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

Programming In Java: Assignment 3 question no 5

Dear Students, There is answer set mistake in assignment 3 question no 5. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

Programming In Java : Assignment 4 question no 9

Dear Students, There is typo mistake in assignment 4 question no 9. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

Programming In Java : Problem solving Session Postponed!!

Dear learner, Due to unavoidable circumstances, The Problem solving Session organized Tomorrow (February 27, 2024 - Tuesday)( 06.00 PM - 08.00 PM ) is Postponed to March 04, 2024 - Monday. The G-meet link for the session will be shared before the session. -NPTEL Team

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.

"Programming In Java" - Week 6 - Feedback Form

"programming in java" - assignment-4, solution released.

The  Solutions  of the   Assignment - 4  under   Week - 4  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/1vnYtLdmy6uBmVUYBQbr_QlsABGeYwrMy/view

"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/noc24_cs43/unit?unit=58&lesson=59

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

The assignment has to be submitted on or before Wednesday, [06/03/2024 ] , 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: NPTEL: Exam Registration is date is extended for Jan 2024 courses!

Dear Learner,  The exam registration for the Jan 2024 NPTEL course certification exam is extended till February 23, 2024 - 05.00 P.M . CLICK HERE to register for the exam Choose from the Cities where exam will be conducted: Exam Cities Click here to view Timeline and Guideline : Guideline For further details on registration process please refer the previous announcement in the course page. -NPTEL Team

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

"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/noc24_cs43/unit?unit=50&lesson=51

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

The assignment has to be submitted on or before Wednesday, [28/02/2024 ] , 23:59 IST.

"Programming In Java" - Week 5 - Feedback Form

"programming in java" - assignment-3, solution released.

The Solutions of the Assignment - 3 under Week - 3 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/1795_GATH0FvFOdt3m53Gsb7OwhdP0VY5/view?usp=drive_link

Happy Learning! Thanks & Regards,

Dear Learner,  The exam registration for the Jan 2024 NPTEL course certification exam is extended till February 20, 2024 - 05.00 P.M . CLICK HERE to register for the exam Choose from the Cities where exam will be conducted: Exam Cities Click here to view Timeline and Guideline : Guideline For further details on registration process please refer the previous announcement in the course page. -NPTEL Team

"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/noc24_cs43/unit?unit=42&lesson=43

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

The assignment has to be submitted on or before Wednesday, [21/02/2024 ] , 23:59 IST.

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

"Programming In Java" - Assignment-1 & 2 Solution Released

Dear Learners ,

The  Solutions of  Assignment- 1 & 2  under  Week- 1 & 2   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 for assignment 1 solution:  https://drive.google.com/file/d/1gjn_KeNy0OzwCQ_9eq_aKC2xyfwR5-f6/view?usp=drive_link

Link for assignment 2 solution:  https://drive.google.com/file/d/1dryqNToKKQuNAtgF-EC5hx-Vc6oEdmQO/view?usp=drive_link

Happy Learning!

Thanks & Regards,

"Programming In Java" - Week 4 - Feedback Form

Feedback on nptel translation and transcripts.

Dear Learners, Do you find English difficult to follow in the NPTEL course? Would it be easier and help you if the videos had subtitles in Indian languages? We have great news for you! The videos in this course have been translated into Kannada Language But how do you change the subtitles? Follow the steps below. To watch the video having subtitles in regional language: 1. Click on the lecture under Week contents. 2. Play the video. 3. Now click on the Settings icon and a list of features will display 4. From that select the option Subtitles/CC. 5. Now select the Language from the available languages to read the subtitle in the regional language. Try this out and give us feedback! Let us know if you want more of this! https://forms.gle/i4muUY4F2NU7EzLr6 -NPTEL Team

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

Programming In Java - Problem Solving Session Recording is available!!

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

"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/noc24_cs43/unit?unit=34&lesson=35

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

The assignment has to be submitted on or before Wednesday, [14/02/2024 ] , 23:59 IST.

"Programming In Java" - Week 3 - Feedback Form

nptel programming in java assignment solutions week 5

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

Dear Learner, 

Here is the much-awaited announcement on registering for the Jan 2024 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: Apr 27, 2024 

CLICK HERE to register for the exam.

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

4. Exam fees: 

If you register for the exam and pay before Feb 12, 2024 - 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: Feb 16, 2024 - 5:00 PM (Friday). 

7. Between Feb 12, 2024 - 5:00 PM & Feb 16, 2024 - 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: Feb 16, 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.

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

12. LAST DATE FOR CANCELLING EXAMS and getting a refund: Feb 16, 2024 - 5:00 PM  

13. Click here to view Timeline and Guideline : Guideline

Every domain will comprise Core courses and Elective courses. Once a learner completes the requisite courses as 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

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

"Programming In Java" - Assignment-0. Solution Released

The Solution of Assignment - 0 under Week - 0 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/1l7O2FKZDgX-OZfhzRkyZFU1LEnJJbW3k/view

"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/noc24_cs43/unit?unit=26&lesson=27

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

The assignment has to be submitted on or before Wednesday, [07/02/2024 ] , 23:59 IST.

"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 assignment is live now!!

The A ssignment 1 for Week 1 for the course " Programming In Java " is made available now.

Assignment 1 can be accessed using the this link : https://onlinecourses.nptel.ac.in/noc24_cs43/unit?unit=18&assessment=298

The other Assignment 1 is accessible from the navigation bar to the left under Week 1. Please remember to login into the website to view contents (if you aren't logged in already).

The assignment has to be submitted on or before Wednesday, 7th Feb 2024 , 23:59 IST.

Please use the discussion forums if you have any questions on this module.

"Programming In Java" - Week 1 - Feedback Form

"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/noc24_cs43/unit?unit=18&lesson=19

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

"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: Exam Registration is open now for Jan 2024 courses!

Programming in java: welcome to nptel online course - jan 2024.

  • 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 27, 2024 Morning session 9am to 12 noon; Afternoon Session 2 pm to 5 pm.
  • Registration URL: Announcements will be made when the registration form is open for registrations.
  • The online registration form has to be filled and the certification exam fee needs to be paid. More details will be made available when the exam registration form is published. If there are any changes, it will be mentioned then.
  • Please check the form for more details on the cities where the exams will be held, the conditions you agree to when you fill the form etc.
  • Once again, thanks for your interest in our online courses and certification. Happy learning.

A project of

nptel programming in java assignment solutions week 5

In association with

nptel programming in java assignment solutions week 5

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

Assignment solutions

laxminagln/Programming_in_Java-NPTEL

Folders and files.

NameName
71 Commits

Repository files navigation

Programming_in_java-nptel.

  • Java 100.0%

IMAGES

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

    nptel programming in java assignment solutions week 5

  2. NPTEL PROGRAMMING IN JAVA WEEK 5 ASSIGNMENT ANSWERS

    nptel programming in java assignment solutions week 5

  3. Programming in Java

    nptel programming in java assignment solutions week 5

  4. NPTEL Programming in Java Week 5 All Programming Assignment Solutions

    nptel programming in java assignment solutions week 5

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

    nptel programming in java assignment solutions week 5

  6. NPTEL Programming In JAVA Week 5 Quiz Assignment Solutions || Swayam 24

    nptel programming in java assignment solutions week 5

VIDEO

  1. NPTEL Programming in Java -Assignment(WEEK-7)

  2. NPTEL Programming In Java WEEK9 Programming Assignment Solutions

  3. Nptel Programming in Java Week 2 Assignment 2 Answers and Solutions 2024

  4. NPTEL Programming In Java Week 8 Programming Assignment Answers Solution

  5. NPTEL Programming In Java WEEK8 Quiz Assignment Solutions💡

  6. Nptel Programming in Java Week 8 Assignment 8 Answers and Solutions 2024

COMMENTS

  1. Programming-in-Java-NPTEL/week 5/Exercise 5.1.java at master ...

    This repository in NPTEL course Programming in Java Question and Quiz answer. - Programming-in-Java-NPTEL/week 5/Exercise 5.1.java at master · sumitnce1/Programming-in-Java-NPTEL. ... Solutions By size. Enterprise Teams Startups By industry. Healthcare Financial services Manufacturing By use case. CI/CD & Automation ...

  2. NPTEL Programming in Java Week 5 Quiz & Programming Assignment Solution

    Welcome to the official NPTEL Programming in Java Week 5 Quiz Assignment Solution video for August 2023! In this video, we present a comprehensive and detail...

  3. NPTEL Programming In Java WEEK 5 Quiz Assignment Solutions

    🔊 Programming In Java NPTEL Elective Course 2023 | https://techiestalk.in/🔗Programming Assignment Link : https://bit.ly/41gyPVnNPTEL Programming In Java WE...

  4. Programming In Java

    Programming In Java - Assignment- 5 & 6 Solution Released Dear Participants, The Assignment-5 & 6 of Week- 5 & 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.

  5. Programming in Java

    Become patrons to Support us and get benefited - https://www.patreon.com/skilloftechnologyProgramming in JavaDownload Java Source Code - https://cutt.ly/fk9S...

  6. bkkothari2255/Programming_In_Java_NPTEL

    Java Week 5:Q1 An interface Number is defined in the following program. You have to declare a class A, which will implement the interface Number. Note that the method findSqr(n) will return the square of the number n. Java Week 5:Q2 This program is to find the GCD (greatest common divisor) of two integers writing a recursive function findGCD(n1 ...

  7. NPTEL 2022

    Programming in Java NPTEL Week 5 Programming Assignment 1 Solutions. An interface Number is defined in the following program. You have to declare a class A, which will implement the interface Number. Note that the method findSqr (n) will return the square of the number n. A a = new A(); //Create an object of class A // Read a number from the ...

  8. NPTEL Programming In Java Week 5 Assignment 5 Answers

    Solution: //Code. These are NPTEL Programming In Java Week 5 Assignment 5 Answers. Question 2. This program is to find the GCD (greatest common divisor) of two integers writing a recursive function findGCD (n1,n2). Your function should return -1, if the argument (s) is (are) other than positive number (s).

  9. NPTEL Programming in Java Week 5 Assignment Solution 2023

    Faheem Ahmad. NPTEL Programming in Java Week 5 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.

  10. NPTEL Programming In Java Week 1 Assignment 1 Answers

    These are NPTEL Programming In Java Week 1 Assignment 1 Answers. Question 3. Complete the code segment to find the perimeter and area of a circle given a value of radius. You should use Math.PI constant in your program. If radius is zero or less than zero then print " please enter non zero positive number ". Solution:

  11. Programming in Java NPTEL Week 5 Quiz Solutions

    Previous Course - Programming in Java NPTEL Week 5 Quiz Solutions. Q1. Which of the following is not true about throw. a) Throw is used inside a function. b) Throw can be used to declare multiple exception. c) Throw is followed by an instance. d) Throw is a keyword. Show Answer.

  12. NPTEL Assignment Answers 2024 And Solutions Progiez

    We provide you NPTEL Assignment Answers 2024 and solutions of all courses. Week 1,2,3, 4, 5, 6, 7 , 8, 9, 10 ,11, 1. By Swayam platform.

  13. NPTEL Programming In Java Programming Assignment July-2024 Swayam

    This assignment has Public Test cases. Please click on "Compile & Run" button to see the status of Public test cases. Assignment will be evaluated only after submitting using Submit button below. If you only save as or compile and run the Program , your assignment will not be graded and you will not see your score after the deadline.

  14. NPTEL

    Hello Guys,Here I am providing solution for WEEK-5 Assignment of Programming In JAVA for your better scoring.#NPTEL #SWAYAM #ProgrammingInJAVA #nptelsolution...

  15. Programming in Java NPTEL Assignment Answers of Week 5 (2023)

    Week 5 : Programming Assignments. 1] Complete the code segment to catch the ArithmeticException in the following, if any. On the occurrence of such an exception, your program should print "Exception caught: Division by zero.".

  16. PDF Assignment 5

    Mentor (student/mentor) Unit 7 - Week 5 : Course outline. Assignment 5The due date for submitting this assignmen. has passed. Due on 2020-03-. , 23:59 IST. As per our records you have not submitted thi. assignment.How does an NPTEL online. Week 0 : Week 1 :

  17. GitHub

    New name of thread 't2':Week 6 Assignment Q5 New----- Exercise6_4 - Execution of two or more threads occurs in a random order. The keyword 'synchronized' in Java is used to control the execution of thread .., Exercise6_5 - In the following program, a thread class Question62 is created using the Runnable interface Complete the main() to create a ...

  18. PDF Java Week 5:Q1

    Lecture 23 : Exception Handling-I. Java Week 5:Q1. -05, 23:59 ISTAn interface Number is defined in the fol. wing program. You have to declare a class A, which will implement the in. erface Number. Note that the method findSqr(n) will return the square o. Sample Test Cases. Input. Output. Test Case 1.

  19. NPTEL Programming In Java Week 5 Assignment Solution

    NPTEL Programming In Java Week 5 Programming Assignment Solution. It includes the week 4 Programming assignment only.

  20. Programming In Java

    "Programming In Java" - Assignment-5, Solution Released Dear Participants, The Solutions of the Assignment - 5 under Week - 5 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.

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

    NPTEL-Programming-in-Java Assignment Solutions with Explanations and Course Guide This Repository has the ultimate guide to crack the exam of Programming in Java Course taught by Prof.Debasis Samanta Sir from I.I.T(Indian Institute of Technology) Kharagpur

  22. Programming in Java

    With the growth of Information and Communication Technology, there is a need to develop large and complex software. Further, those software should be platfor...

  23. laxminagln/Programming_in_Java-NPTEL: Assignment solutions

    Languages. Java 100.0%. Assignment solutions. Contribute to laxminagln/Programming_in_Java-NPTEL development by creating an account on GitHub.

  24. NPTEL Programming In Java Week 2 Assignment 2 Answers Solution Quiz

    Programming In Java Week 2 Assignment 2 Answers Solution Quiz | 2024-JulyJoin NPTEL - Programming in Java : https://telegram.me/ProgrammingInJavaNPTELFollow ...

  25. NPTEL Programming in Java Week 2 Assignment Solution July 2024

    Welcome to our detailed walkthrough of the "NPTEL Programming in Java Week 2 Assignment Solution for July 2024," presented by IIT Kharagpur. This video is ta...