• Monday, April 8, 2024

NPTEL Programming in Java Week 11 Assignment Solution

NPTEL Programming in Java Week 11 Assignment Solution

NPTEL Programming in Java Week 11 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 Complete the code segment  to insert the following data using prepared statement in the existing table ‘ PLAYERS ’.

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

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

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

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

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

hey there! I am getting error (” Not able to run”) for 1st assignment of Week 11. So how to solve ?

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.

' src=

  • All Courses
  • Privacy Policy

' src=

Swayam Solver

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

NPTEL Programming in Java Jan 2024 Week 11

Week 11 : programming assignment 1, week 11 : programming assignment 2.

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

  Note the following points carefully:

§   Name the connection object as   conn   only.

§   Use timeout value as 1.

Week 11 : Programming Assignment 3

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

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

Week 11 : Programming Assignment 4

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

Week 11 : Programming Assignment 5

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

No comments:

Post a comment.

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

  • Amazon Quiz
  • Flipkart Quiz
  • Play & Win 50,000 Coins
  • Privacy Policy

NPTEL » Programming In Java Assignment week 11 2020

  • by QuizXp Team
  • November 25, 2020 October 3, 2021

Nptel Java quiz

NPTEL Java Assignment week 11

With the growth of Information and Communication Technology, there is a need to develop large and complex software. 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.

Programming in Java is a MOOC based course which is 12 weeks in duration and can fulfill the criteria of 4 credits in a year. You can visit the NPTEL SWAYAM platform and register yourself for the course. This course is brought to you by Prof. Dr. Debasis Samanta who holds a Ph.D. in Computer Science and Engineering from the Indian Institute of Technology Kharagpur.

Programming In Java 2020 Details:-

  • Who Can Join: The undergraduate students from the engineering disciplines namely CSE, IT, EE, ECE, etc. might be interested in this course.
  • Requirements/Prerequsites: The course requires that the students are familiar with a programming language such as C/C++ and data structures, algorithms.
  • INDUSTRY SUPPORT:   All IT companies.

Java Assignment Week 11 Answers:-

Java Week 11: Q1 . – Complete the code segment   to insert the following data using prepared statement in the existing table ‘ PLAYERS ’ .

java quiz

Answer/Code:-

ALSO CHECK:-

Amazon Quiz Answers 25 November – Win ₹5,000 Flipkart Fake or Not Fake Quiz Answers – 25 Nov 2020 – Win Vouchers

Java Week 10: Q2 – Write the required code in order to  update the following data in the table ‘ PLAYERS ’ .

Java Week 10: Q3 – Write the appropriate code in order to   delete the following data in the table ‘ PLAYERS ’

Answer/code:-

NPTEL » Programming In Java Assignment week 10 Sep-2020

NPTEL » Programming In Java Assignment week 6 Sep-2020

Java Week 10: Q4 – Complete the following program to   calculate the average age of the players in the table ‘ PLAYERS ’ .

Java Week 10: Q5 – Complete the code segment to   drop the table named ‘ PLAYERS ’ .

Find Other Quiz Here :

Amazon Fashion Quiz Answers & Win ₹1000

Amazon Great Indian Festival Quiz Answers: Win Rs. 50,000

NPTEL » Programming In Java Assignment week 7 Sep-2020

NOTE: These codes are based on our knowledge . A nswers might be incorrect , we suggest you to not the copy-paste answers blindly.

x

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

Here are the assignment answers you need.

vklsaravanan/nptel-programmingInJava

Folders and files, repository files navigation.

nptel

Programming In Java

Exercise1_1 - Complete the code segment to find the perimeter and area of a circle given a value of radius. Exercise1_2 - Complete the code segment to find the largest among three numbers x,y, and z. You should use if-then-else construct in Java. Exercise1_3 - Consider First n even numbers starting from zero(0).Complete the code segment to calculate sum of all the numbers divisible by 3 from 0 to n. Print the sum. Exercise1_4 - Complete the code segment to check whether the number is an Armstrong number or not. Exercise1_5 - Complete the code segment to help Ragav , find the highest mark and average mark secured by him in "s" number of subjects.

Exercise2_1 - Complete the code segment to call the method print() of class Student first and then call print() method of class School. Exercise2_2 - Complete the code segment to call the method print() of class given class Printer to print the following. Exercise2_3 - Complete the code segment to call print() method of class Question by creating a method named ‘studentMethod()’. Exercise2_4 - Complete the code segment to call default constructor first and then any other constructor in the class. Exercise2_5 - Complete the code segment to debug / complete the program which is intended to print 'NPTEL JAVA'.

Excercise3_1 - This program is related to the generation of Fibonacci numbers.>For example: 0,1, 1,2, 3,5, 8, 13,… is a Fibonacci sequence where 13 is the 8th Fibonacci number. Exercise3_2 - Define a class Point with two fields x and y each of type double. Also, define a method distance(Point p1, Point p2) to calculate the distance between points p1 and p2 and return the value in double. Exercise3_3 - A class Shape is defined with two overloading constructors in it. Another class Test1 is partially defined which inherits the class Shape. The ..., Exercise3_4 - This program to exercise the call of static and non-static methods. A partial code is given defining two methods, namely sum( ) and multiply ( ). You......, Exercise3_5 - Complete the code segment to swap two numbers using call by object reference.

Exercise4_1 - Complete the code segment to execute the following program successfully. You should import the correct package(s) and/or class(s) to complete the code. Exercise4_2 - Complete the code segment to print the current year. Your code should compile successfully. Exercise4_3 - The program in this assignment is attempted to print the following output: Exercise4_4 - Complete the code segment to call the default method in the interface First and Second. Exercise4_5 - Modify the code segment to print the following output.

Exercise5_1 - 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. Exercise5_2 - 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. Exercise5_3 - 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. Exercise5_4 - 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.., Exercise5_5 - 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.

Exercise6_1 - Complete the code segment to print the following using the concept of extending the Thread class in Java: Exercise6_2 - In the following program, a thread class Question62 is created using the Runnable interface Complete the main() to create a thread object of the class Question62 and run the thread. It should print the output as given below. Exercise6_3 - Given a snippet of code, add necessary codes to print the following: -----------------OUTPUT------------------- Name of thread 't1':Thread-0 Name of thread 't2':Thread-1 New name of thread 't1':Week 6 Assignment Q5 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 thread object of the class Question62 and run the thread. It should print the output as given below.

Exercise7_1 - Complete the following code fragment to read three integer values from the keyboard and find the sum of the values. Declare a variable "sum" of type int and store the result in it. Exercise7_2 - Complete the code segment to catch the exception in the following, if any. On the occurrence of such an exception, your program should print “Please enter valid data” .If there is no such exception, it will print the "square of the number". Exercise7_3 - A byte char array is initialized. You have to enter an index value"n". According to index your program will print the byte and its corresponding char value. Complete the code segment to catch the exception in the.., Exercise7_4 - The following program reads a string from the keyboard and is stored in the String variable "s1".., Exercise7_5 -A string "s1" is already initialized. You have to read the index "n" from..,

Exercise8_1 - Write a program which will print a pyramid of " " 's of height "n" and print the number of " " 's in the pyramid. Exercise8_2 - Write a program which will print a pascal pyramid of " " 's of height "l" . Exercise8_3 - Write a program which will print a pyramid of "numbers" 's of height "n" and print the sum of all number's in the pyramid. Exercise8_4 - Write a program to print symmetric Pascal's triangle of " " 's of height "l" of odd length . If input "l" is even then your program will print "Invalid line number". Exercise8_5 - Write a program to display any digit(n) from 0-9 represented as a "7 segment display".

Exercise9_1 - Complete the code to develop a BASIC CALCULATOR that can perform operations like Addition, Subtraction, Multiplication and Division. Exercise9_2 - Complete the code to develop an ADVANCED CALCULATOR that emulates all the functions of the GUI Calculator as shown in the image. Exercise9_3 - Complete the code to perform a 45 degree anti clock wise rotation with respect to the center of a 5 × 5 2D Array as shown below: Exercise9_4 - A program needs to be developed which can mirror reflect any 5 × 5 2D character array into its side-by-side reflection. Write suitable code to achieve this transformation as shown below: Exercise9_5 - Write suitable code to develop a 2D Flip-Flop Array with dimension 5 × 5, which replaces all input elements with values 0 by 1 and 1 by 0. An example is shown below:

Exercise10_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. Exercise10_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) Exercise10_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. Exercise10_4 - Complete the code segment to rename an already created table named ‘PLAYERS’ into ‘SPORTS’. Exercise10_5 - Complete the code segment to rename an already created table named ‘PLAYERS’ into ‘SPORTS’.

nptel week 11 assignment answers programming in java

Author @vklsaravanan
Connect with me:
  • Java 100.0%

Quizermania Logo

Programming in Java | NPTEL 2022 | Week 11 quiz solutions

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

Course layout (Answers Link)

Answers COMING SOON! Kindly Wait!

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

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

Now, start attempting the quiz.

Programming in Java NPTEL 2022 Week 11 Quiz Solutions

Q1. MySQL is a ___________.

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

Answer: b) Relational Database Management System

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

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

Answer: b) PreparedStatement

Q3. Which of the following best describes about JDBC?

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

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

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

Answer: d) Local Protocol driver

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

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

Answer: b) java.sql

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

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

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

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

Answer: a) java.sql.TimeStamp

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

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

Answer: a), b), c)

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

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

Answer: c) executeUpdate()

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

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

Answer: c) setString()

Previous Course – Week 11 Quiz Solutions

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

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

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

Answer: b) ResultSet

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

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

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

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

Answer: a), b)

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

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

Answer: c) CallableStatement

Programming in Java NPTEL 2022 Week 11 quiz Solutions

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

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

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

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

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

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

Programming in Java NPTEL 2022 Week 11 Quiz solutions

nptel week 11 assignment answers programming in java

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

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

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

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

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

Answer: b) REAL

>> Prev- Programming in Java Week 10 Assignment Solutions

>> Next- Programming in Java Week 12 Assignment Solutions

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

Related Posts

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

Preprocessor Directives

C programming MCQ : Preprocessor Directives(MULTIPLE CHOICE QUESTION)

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

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

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

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

swayam-logo

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

Programming In Java : Exam certification criteria - Jan 2023

Dear Learners, Please see the certification criteria of this course  below Average assignment score = 25% of average of best 8 assignments out of the total 12 assignments given in the course. Exam score = 75% of the proctored (in person)certification exam score out of 100 Final score = Average assignment score + Exam score YOU WILL BE ELIGIBLE FOR A CERTIFICATE ONLY IF AVERAGE ASSIGNMENT SCORE >=10/25 AND EXAM SCORE >= 30/75. If one of the 2 criteria is not met,  you will not get the certificate even if the Final score >= 40/100. NOTE: Please note that we will not consider the unproctored programming exam score for certification in January 2023. -NPTEL Team

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

Dear Candidate, Here is a golden opportunity for those who had previously enrolled in this course, but could not participate in the exams or were absent/did not pass the exam for this course. This course is being reoffered in Jan 2023 and we are giving you another chance to write the exam in April 2023 and obtain a certificate based on NPTEL norms. Do not let go of this unique opportunity to earn a certificate from the IITs/IISc.   IMPORTANT instructions for learners - Please read this carefully     1. The exam date for this course: April 30,2023 2. CLICK HERE to register for the exam. Please fill the exam form using the same Enrolled email id & make fee payment via the form, as before. 3.Choose from the Cities where the exam will be conducted:  Exam Cities 4. You DO NOT have to re-enroll in the courses if you have enough assignment scores in the previous immediate semester when the course was run to obtain a certificate.  5. You DO NOT have to resubmit Assignments in the previous semester if you have enough assignment scores in the previous immediate semester when the course was run to obtain a certificate.  6. If you do enroll to Jan 2023 course, we will take the best average assignment scores across this  semester & the immediate previous semester when the course was run.     NOTE:   Please check once if you have >= 40/100  in average assignment score that were conducted in this course to become eligible for the e-certificate, wherever applicable. If not, please submit assignments again in the Jan 2023 course to become eligible for the e-certificate. We will not be having new assignments in the previous semester's course. It is mandatory to enroll again in the Jan 2023 semester if you want to receive the fresh assignments of this current Jan 2023 semester. You can also submit assignments again if you want to take fresh assignments or need to improve your previous scores.   RECOMMENDATION: If you want to take new assignments or brush up on your lessons for the exam, please enroll in the Jan 2023 course.   LINK to enroll in the current course:    https://onlinecourses.nptel.ac.in/noc23_cs49/preview   4. Exam fees:    If you register for the exam and pay before Mar 17, 2023, 5:00 PM, Exam fees will be Rs. 1000/- 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: Mar 17, 2023, 5:00 PM (Friday).     7. Mode of payment: Online payment - debit card/credit card/net banking/UPI.    8. HALL TICKET:     The hall ticket will be available for download tentatively by 2 weeks prior to the exam date . We will confirm the same through an announcement once it is published.    9. FOR CANDIDATES WHO WOULD LIKE TO WRITE MORE THAN 1 COURSE EXAM:- you can add or delete courses and pay separately till the date when the exam form closes. Same day of exam you can write exams for 2 courses in the 2 sessions. Same exam center will be allocated for both the sessions if you are registering for the exam with the same email ID.     10. Data changes:    Last date for data changes: Mar 17, 2023, 5:00 PM:    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: Mar 17, 2023, 5:00 PM     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/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 October 2022 Exam(s). Step 1 - Are the results of my courses released? Please check the Results published courses list in the below links.:- October 2022 Exam - Click here Step 2 - How to check Results? Please login to internalapp.nptel.ac.in/ . and check your exam results. Use the same login credentials as used to register to the exam. What's next? Please read the pass criteria carefully and check against what you have gotten. If you still have any issues, please report the same here. internalapp.nptel.ac.in/ . We will reply within a week. Last date to report queries: 3 days within publishing of scores. Note : Hard copies of certificates will not be dispatched. The duration shown in the certificate will be based on the timeline of offering of the course in 2022, irrespective of which Assignment score that will be considered. Thanks and Best wishes. NPTEL Team

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

October 2022 NPTEL Exams - Hall Tickets Released!

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

Programming In Java - Week 11 Feedback Form

Dear Learners,

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

We value your feedback and wish to know how you found 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/1cxMjONW2KGFIZubsB-Qjce1jFeDNqLUQOrVyeVV9rIU/viewform

Programming In Java - Week 12 Feedback Form

Programming in java - week 10 feedback form, 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 for assignment 12 solution: https://drive.google.com/file/d/1kFrh-K0Ug8NaAD_kr_kvmobw6RwHog6J/view?usp=sharing

Happy Learning!

Thanks & Regards,

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

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

Programming In Java - Assignment- 7,8,9,10 & 11 Solution Released

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

Link for assignment 7 solution: https://drive.google.com/file/d/1iclaeIyNQSx3P3kERY2CtMrx1-aTAA_s/view?usp=sharing Link for assignment 8 solution: https://drive.google.com/file/d/1iKHnSDEiTvtrALEBPTPOVRyoJKIiDXWV/view?usp=sharing Link for assignment 9 solution: https://drive.google.com/file/d/1DzNwXpSzdaeJtO9h6UWawO6TRRdpkgle/view?usp=sharing Link for assignment 10 solution: https://drive.google.com/file/d/1C85pA6XzgT_6DTlb5OxdDrvTPFM-yVtS/view?usp=sharing Link for assignment 11 solution: https://drive.google.com/file/d/1e82Me5dgDfArmUPwsbm_6RqmmaWB5He0/view?usp=sharing

Exam Format - Oct 30, 2022

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

Reminder 4: Programming In Java : Online Programming test

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_cs102/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/noc22_cs102/unit?unit=106&assessment=205

The assignment has to be submitted on or before Wednesday, 19/10/2022 , 23:59 IST. Programming Assignments 1 for Week  12   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=211 Programming Assignments 2 for Week  12   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=212 Programming Assignments 3 for Week  12   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=213 Programming Assignments 4 for Week  12   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=214 Programming Assignments 5 for Week  12   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=215 For all the  Programming Assignments  du e date will be :  Thursday, 20-10-2022 , 23:59 IST

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

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

Thanks and Regards,

--NPTEL Team

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_cs102/unit?unit=98&lesson=99

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

The assignment has to be submitted on or before Wednesday, 12/10/2022 , 23:59 IST. Programming Assignments 1 for Week  11   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=206 Programming Assignments 2 for Week  11   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=207 Programming Assignments 3 for Week  11   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=208 Programming Assignments 4 for Week  11   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=209 Programming Assignments 5 for Week  11   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=210 For all the  Programming Assignments  du e date will be :  Thursday, 13-10-2022 , 23:59 IST

Reminder 3: 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_cs102/unit?unit=90&lesson=91

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

The assignment has to be submitted on or before Wednesday, 05/10/2022 , 23:59 IST. Programming Assignments 1 for Week  10   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=199 Programming Assignments 2 for Week  10   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=200 Programming Assignments 3 for Week  10   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=201 Programming Assignments 4 for Week  10   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=202 Programming Assignments 5 for Week  10   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=203 For all the  Programming Assignments  du e date will be :  Thursday, 06-10-2022 , 23:59 IST

Programming In Java - Week 8 Feedback Form

Programming in java - week 9 feedback form, 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_cs102/unit?unit=82&lesson=83

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

The assignment has to be submitted on or before Wednesday, 28/09/2022 , 23:59 IST. Programming Assignments 1 for Week  9   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=192 Programming Assignments 2 for Week  9   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=193 Programming Assignments 3 for Week  9   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=194 Programming Assignments 4 for Week  9   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=195 Programming Assignments 5 for Week  9   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=196 For all the  Programming Assignments  du e date will be :  Thursday, 29-09-2022 , 23:59 IST

Reminder 2: Programming In Java : Online Programming test

Programming in java - assignment- 5 & 6 solution released.

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.

Link for assignment 5 solution: https://drive.google.com/file/d/1a0P7b7the2KgRXeQdZFQU4Gc-yULqyCo/view?usp=sharing Link for assignment 6 solution: h ttps://drive.google.com/file/d/10EpUYVS6lsY0ve7B41ApFrq4mkA1utS7/view?usp=sharing

Reminder 1: Programming In Java : Online Programming test

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_cs102/unit?unit=74&lesson=75

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

The assignment has to be submitted on or before Wednesday, 21/09/2022 , 23:59 IST. Programming Assignments 1 for Week  8   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=187 Programming Assignments 2 for Week  8   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=188 Programming Assignments 3 for Week  8   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=189 Programming Assignments 4 for Week  8   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=190 Programming Assignments 5 for Week  8   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=191 For all the  Programming Assignments  du e date will be :  Thursday, 22-09-2022 , 23:59 IST

Programming In Java - Week 7 assignment is live now!!

The assignment 7 for Week 7 for the course Programming In Java is made available.

Assignment 7 can be accessed using the following link: h ttps://onlinecourses.nptel.ac.in/noc22_cs102/unit?unit=66&assessment=180

The other Assignment 7 is accessible from the navigation bar to the left under Week 7. 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, 14/09/2022 , 23:59 IST. Programming Assignments 1 for Week  7   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=181 Programming Assignments 2 for Week  7   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=182 Programming Assignments 3 for Week  7   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=183 Programming Assignments 4 for Week  7   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=184 Programming Assignments 5 for Week  7   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=185 For all the  Programming Assignments  du e date will be :  Thursday, 15-09-2022 , 23:59 IST

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

nptel week 11 assignment answers programming in java

Programming In Java - Week 7 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_cs102/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/noc22_cs102/unit?unit=66&assessment=180

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

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

The assignment 6 for Week 6 for the course Programming In Java is made available.

Assignment 6 can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc22_cs102/unit?unit=58&assessment=173

The other Assignment 6 is accessible from the navigation bar to the left under Week 6. 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, 07/09/2022 , 23:59 IST. Programming Assignments 1 for Week  6   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=174 Programming Assignments 2 for Week  6   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=175 Programming Assignments 3 for Week  6   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=176 Programming Assignments 4 for Week  6   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=177 Programming Assignments 5 for Week  6   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=178 For all the  Programming Assignments  du e date will be :  Thursday, 08-09-2022 , 23:59 IST

Programming In Java - Week 6 Feedback Form

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_cs102/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/noc22_cs102/unit?unit=58&assessment=173

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

Programming In Java - Assignment- 3 & 4 Solution Released

The Assignment-3 & 4 of Week- 3 & 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 for assignment 3 solution: https://drive.google.com/file/d/182Lt9wkLq2F_OmpnmS5kkPlI760qvcpG/view?usp=sharing Link for assignment 4 solution: https://drive.google.com/file/d/1LIxH91Hh5PCe8FOpqw0wvi1oN97q0IJu/view?usp=sharing

Programming In Java - Week 5 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_cs102/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/noc22_cs102/unit?unit=50&assessment=168

The assignment has to be submitted on or before Wednesday, 31/08/2022 , 23:59 IST. Programming Assignments 1 for Week  5   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=167 Programming Assignments 2 for Week  5   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=169 Programming Assignments 3 for Week  5   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=170 Programming Assignments 4 for Week  5   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=171 Programming Assignments 5 for Week  5   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=172 For all the  Programming Assignments  du e date will be :  Thursday, 01-09-2022 , 23:59 IST

Programming In Java : Assignment 2 Question no 4

Dear Learners, 

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

Sorry for the inconvenience caused. 

Course Admin

Programming In Java - Week 4 Feedback Form

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_cs102/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/noc22_cs102/unit?unit=42&assessment=160

The assignment has to be submitted on or before Wednesday,24/08/2022 , 23:59 IST. Programming Assignments 1 for Week  4   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=162 Programming Assignments 2 for Week  4   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=163 Programming Assignments 3 for Week  4   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=164 Programming Assignments 4 for Week  4   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=165 Programming Assignments 5 for Week  4   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=166 For all the  Programming Assignments  du e date will be :  Thursday, 25-08-2022 , 23:59 IST

Programming In Java - Assignment- 1 & 2 Solution Released

The Assignment-1 & 2 of Week- 1 & 2 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 for assignment 1 solution: https://drive.google.com/file/d/19F9AIiH3XLmVNCyGFzD5TR8Xsl3vldt3/view?usp=sharing Link for assignment 2 solution: https://drive.google.com/file/d/1iQKlzo-ogV_2Dpd3N6vxoGBm7TIMs85E/view?usp=sharing

Programming In Java : Reminder for Submission of Assignment 1 & 2

The assignments should be submitted on or before Wednesday, 10-08-2022 , 23:59 IST. Programming Assignments 1 for Week  1   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=143 Programming Assignments 2 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=144 Programming Assignments 3 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=145 Programming Assignments 4 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=146 Programming Assignments 5 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=147 Programming Assignments 1 for Week  2   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=149 Programming Assignments 2 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=150 Programming Assignments 3 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=151 Programming Assignments 4 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=152 Programming Assignments 5 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=153 For all the  Programming Assignments  du e date will be :  Thursday, 11-08-2022 , 23:59 IST

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_cs102/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/noc22_cs102/unit?unit=34&assessment=154

The assignment has to be submitted on or before Wednesday,17/08/2022 , 23:59 IST. Programming Assignments 1 for Week  3   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=155 Programming Assignments 2 for Week  3   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=156 Programming Assignments 3 for Week  3   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=157 Programming Assignments 4 for Week  3   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=158 Programming Assignments 5 for Week  3   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=159 For all the  Programming Assignments  du e date will be :  Thursday, 18-08-2022 , 23:59 IST

Programming In Java - Week 3 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_cs102/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/noc22_cs102/unit?unit=26&assessment=148

The assignment has to be submitted on or before Wednesday,10/08/2022 , 23:59 IST. Programming Assignments 1 for Week  2   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=149 Programming Assignments 2 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=150 Programming Assignments 3 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=151 Programming Assignments 4 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=152 Programming Assignments 5 for Week  2   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=153 For all the  Programming Assignments  du e date will be :  Thursday, 11-08-2022 , 23:59 IST

Programming In Java - Week 2 Feedback Form

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 Feedback Form

Programming in java - week 1 assignment is live now.

The assignment 1 for Week 1 for the course Programming In Java is made available early for viewing to get an idea about the assignments but the actual start date of the course remains unchanged.

Assignment 1 can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc22_cs102/unit?unit=18&assessment=142

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,10/08/2022 , 23:59 IST. Programming Assignments 1 for Week  1   is also released and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=143 Programming Assignments 2 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=144 Programming Assignments 3 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=145 Programming Assignments 4 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=146 Programming Assignments 5 for Week  1   is also released and can be accessed from the following link:   https://onlinecourses.nptel.ac.in/noc22_cs102/progassignment?name=147 For all the  Programming Assignments  du e date will be :  Thursday, 11-08-2022 , 23:59 IST

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

Dear Students The lecture videos for  Week 1  have been uploaded for the course  Programming In Java . The lectures can be accessed using the following link:  https://onlinecourses.nptel.ac.in/noc22_cs102/unit?unit=18&lesson=19 The other lectures of this week are accessible from the navigation bar to the left. Please remember to login into the website to view contents (if you aren't logged in already). As we have done so far, please use the discussion forums if you have any questions on this module. Thanks and Regards, --NPTEL Team

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

Dear Learner, 

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

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

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

3 . Date of exam: Oct 30, 2022

CLICK HERE to register for the exam. 

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

4. Exam fees: 

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

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

5. 50% fee waiver for the following categories: 

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: Sep 16, 2022, 10:00 AM (Friday). 

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

8. HALL TICKET: 

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

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

10. Data changes: 

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

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

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

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: Sep 16, 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/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, 

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

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

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

A project of

nptel week 11 assignment answers programming in java

In association with

nptel week 11 assignment answers programming in java

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

Week 11 : programming assignment 1.

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

Week 11 : Programming Assignment 2

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

Week 11 : Programming Assignment 3

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

Week 11 : Programming Assignment 4

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

Week 11 : Programming Assignment 5

Share this:.

  • Google Plus

No comments

Nptel programming in java jan 2024 week 11.

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

nptel week 11 assignment answers programming in java

Quantum Mechanics 1 | Week 11

Session: JAN-APR 2024

Course name: Quantum Mechanics I

Course Link: Click Here

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

These are Quantum Mechanics 1 Week 11 Assignment Nptel Answers

Q1. The ground state energy of the Hydrogen atom is given as E₁ = -R, where R = 13.6 eV is the Rydberg constant. If the atom makes a transition from the excited state n = 3 to the state n = 2, then the radiation emitted would be ______________eV. (Write upto two decimal places.)

Q2. The allowed angular momentum j when we add two particles with angular momentum j15/2 and j2 = 3/2 are a) 0, 1, 2, 3, 4 b) 1/2,3/2,5/2 c) 1,2,3,4 d) 7/2,5/2,3/2

Q3. The matrix element of z between 4F and 4D hydrogen states is given by 2 <4F, m = 2/2/4D, m = 2) = -300 where ao is the Bohr radius. (4F, m = 3|y|4D, m = 2) will be a) i√2/3a0 b) -ia0 c) i√3/2a0 d) ia0

Q4. The product of the position vector component zy in terms of spherical rank two tensor T be 2) will

2023a11q4 1 updated

Q5. The maximum degeneracy of states when we add angular momentum j₁ = 4 and j₂ = 2 is a) 2 b) 4 c) 9 d) 5

Q6. Consider a state vector The possible measurements of square of angular momentum operator L2 on the eigenstate 2, -1) is ___________ h². (Answer should be an integer)

Q7. Two atoms with angular momentum J₁ = 2 and J2 1 are coupled and are described by Hamiltonian H = € J1 J2, where € > 0. If the Hamiltonian acts on J, M) state, then the energy eigenvalues corresponding to the possible values of total angular momentum J will be a) -3€h², -€h², 2€h² b) €h², -3€h², 2€h² c) 2€h², €h², 3€h² d) -€h², 2€h², 3€h²

Q8. The Clebsch-Gordan coefficient (m₁=j1, m₂-12+3|j 11+12. m) will be non-zero if a) m = j1+j2 – 3 b) m = j1 + j2 c) m = j1 – j2 + 2 d) m = j2 – 1 – j1.

Q9. The parity operator P anti-commutes with the orbital angular momentum operator L. a) True b) False

2023a11q10

More Weeks of Quantum Mechanics I: Click here

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

These are Quantum Mechanics 1 Week 11 Assignment Nptel Answers

Study2night - All about an engineer

  • AWS Cloud Foundation
  • _Joy Of Computing
  • _Data Science For Engineers
  • Internships

NPTEL Joy Of Python Using Python Week 11 Programming Assignment Answers

Hey, Folks. This article is with NPTEL Joy of Computing Using Python Week 11 Programming Assignment Answers. Copy the code carefully to avoid any indentation errors. Let See the answers with no excitement.

Join Telegram:    CLICK HERE   for more updates and answers. 

Also Read: NPTEL Joy Of Computing Using Python Week 11 Quiz Assignment Answers  

NPTEL Joy Of Python Using Python Week 11 Programming Assignment Answers 

NPTEL Joy Of Python Using Python

def factors(n):     """     Accepts a positive integer n as an argument.     Returns the set of all factors of n.     """     factor_set = set()     for ips in range(1, n + 1):         if n % ips == 0:             factor_set.add(ips)     return factor_set def common_factors(a, b):     """     Return the set of common factors of a and b.     """     factors_a = factors(a)     factors_b = factors(b)     return factors_a.intersection(factors_b) def factors_upto(n):     """     Return a dict D, whose keys are integers and values are sets.     Each integer in the range [1,n], endpoints inclusive, is a key of D.     The value corresponding to a key is the set of all factors of the key.     """     factors_dict = {}     for i in range(1, n + 1):         factors_dict[i] = factors(i)     return (factors_dict) {codeBox}
def rotate_clockwise(lst, k):     npk = len(lst)     k %= npk     rotated_list = lst[-k:] + lst[:-k]     return rotated_list input_list = input().split(",")   k = int(input())  rotated_result = rotate_clockwise(input_list, k) print(",".join(rotated_result)) {codeBox} 
def spiral_iterative(left, right, n):       for ipl in range(1,n):       center = (left + right)/2       if ipl % 2 :         left = center       else:         right = center     return center      def spiral_recursive(left, right, n):     if n == 1:         return right     else:         center = (left + right) / 2         return spiral_recursive(right, center, n - 1) {codeBox} 

One Comment Please !

Contact Form

IMAGES

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

    nptel week 11 assignment answers programming in java

  2. NPTEL PROGRAMMING IN JAVA WEEK-11 ASSIGNMENT ANSWERS||NPTEL|||#

    nptel week 11 assignment answers programming in java

  3. NPTEL Programming in Java Week 11 Quiz Assignment Solutions || July

    nptel week 11 assignment answers programming in java

  4. NPTEL Programming In Java Week 11 Assignment Solution

    nptel week 11 assignment answers programming in java

  5. NPTEL Programming In Java Week 11 Assignment Solution Quiz

    nptel week 11 assignment answers programming in java

  6. Programming in Java|| WEEK-11 Quiz assignment Answers 2020||NPTEL||#

    nptel week 11 assignment answers programming in java

VIDEO

  1. Programming in Java NPTEL Week 11 Assignment Answers 2022

  2. Software Testing (IIITB) Week 11 Quiz Answers Solution

  3. Data Structure and Algorithms using Java Assignment 11 NPTEL Solution

  4. Nptel week-11 Assignment solutions of Entrepreneurship 2023 #nptelassignmentanswers

  5. 2. Week

  6. Programming in Java|| WEEK-1 Quiz assignment Answers 2023||NPTEL||#SKumarEdu

COMMENTS

  1. NPTEL Programming in Java Week 11 Assignment Solution

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

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

  3. PDF Java Week 11 : Q1

    02/07/2020 Programming in Java - Course https://onlinecourses.nptel.ac.in/noc20_cs08/progassignment?name=181 3/3 Assignment Solution Books Live Interactive

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

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

    sumitnce1 / Programming-in-Java-NPTEL Public. Notifications. Fork 48. Star 68. Insights. This repository in NPTEL course Programming in Java Question and Quiz answer. - Programming-in-Java-NPTEL/week 11/Exercise 11.4.java at master · sumitnce1/Programming-in-Java-NPTEL.

  6. NPTEL » Programming In Java Assignment week 11 2020

    NPTEL Java Assignment week 11 With the growth of Information and Communication Technology, there is a need to develop large and complex software. 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.

  7. NPTEL Programming In Java WEEK11 Programming Assignment ...

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

  8. PDF Java Week 11 : Q3

    02/07/2020 Programming in Java - Course https://onlinecourses.nptel.ac.in/noc20_cs08/progassignment?name=183 3/3 Assignment Solution Books Live Interactive

  9. PDF Assignment 11

    02/07/2020 Programming in Java - - Unit 13 - Week 11 : https://onlinecourses.nptel.ac.in/noc20_cs08/unit?unit=12&assessment=186 3/5 Week 8 : Week 9 :

  10. NPTEL Programming In Java Week 11 Assignment 11 Answers

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

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

  12. Programming in Java

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

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

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

  14. NPTEL Programming in Java Week 11 Quiz answers with detailed ...

    Visit our website :https://getpythoncode-help.github.io/Join us on telegramhttps://t.me/getpythoncode Follow me on Instagramhttps://www.instagram.com/getpyt...

  15. Programming In Java

    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. ... Programming In Java - Week 11 content is live now ... Programming In Java - Week 7 assignment is live now!! Dear Learners, The assignment 7 for ...

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

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

  17. NPTEL Programming In Java WEEK 11 Quiz Assignment Solutions

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

  18. NPTEL Programming In Java Week 8 Assignment Answers 2024

    Programming Assignment Solutions. Question: 1 Write a program which will print a pyramid of "*" 's of height "n" and print the number of "*" 's in the pyramid. Answer: Click here to view Answer. These are NPTEL Programming In Java Week 8 Assignment 8 Answers. Question: 2 Write a program which will print a pascal pyramid of ...

  19. Quantum Mechanics 1 Week 11 Assignment Nptel Answers

    These are Quantum Mechanics 1 Week 11 Assignment Nptel Answers. Q1. The ground state energy of the Hydrogen atom is given as E₁ = -R, where R = 13.6 eV is the Rydberg constant. If the atom makes a transition from the excited state n = 3 to the state n = 2, then the radiation emitted would be ______________eV.

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

    Hello Guys, Welcome to my channel Course - programming in javaOrganization - IITPlatform - swayamIn this video I provide NPTEL assignment 11 answers of progr...

  21. NPTEL Joy Of Python Using Python Week 11 Programming Assignment Answers

    NPTEL Joy Of Python Using Python Week 11 Programming Assignment Answers. Q1. Write the following functions: (1) factors: accept a positive integer n as argument. Return the set of all factors of n. (2) common_factors: accept two positive integers a and b as arguments. Return the set of common factors of the two numbers.