VTU Updates

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

In this article, you will get NPTEL Assignment Answers of Week 2 (2023) of the course Programming in Java

What will be the output of the above program?

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

3. Following is a program given for this question.

Answer:  c. 30

Answer:  a. 32 and 64

Answer:  d. int to long

Answer:  d. Compilation error

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

Answer:  c. 012

a. java b. npteljava c. nptel java d. nptel

a. 60 b. 3011 c. 33 d. Compilation error

Programming Assignment Answers

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

Complete the code segment  to call the method   print()  of class given class Printer to print the following.

Hi! I class STUDENT. ——————————–

Week 2 : Programming Assignment 3

Week 2 : programming assignment 4, week 2 : programming assignment 5.

Complete the code segment to  debug / complete the program which is intended to print ‘NPTEL JAVA’.

Related Posts

Nptel data science using python answers, nptel data science using python – week 2: assignment 2 answers, nptel data science using python – week 1 : assignment 1 answers, leave a reply cancel reply.

  • Tuesday, August 6, 2024

NPTEL Programming in Java Week 2 Assignment Solution 2023

Programming-In-Java-Week2-Programming-Assignment-Solutions

NPTEL Programming in Java Week 2 All Programming Assignment Solutions – July 2022 | 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 call the method   print()  of class School first  and then call  print()   method of class Student .

Question : 2 Complete the code segment  to call the method   print()  of class given class Printer to print the following.

——————————–

Question : 3 Complete the code segment to   call print() method of class Question by creating a method named  ‘student()’.

Question : 4 Complete the code segment  to call default constructor first and then any other constructor in the class.

Question : 5 Complete the code segment to  debug / complete the program which is intended to print ‘NPTEL JAVA’.

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

Week 03 : Programming Assignment 1

Create a class Department having a method  getCourses  that prints  "These are the department's courses" . It will have two subclasses , ComputerScience and MechanicalEngineering , each having a method with the same name that prints specific courses for the respective departments.Call the method by creating an object of each of the three classes.

Week 03 : Programming Assignment 2

Week 03 : programming assignment 3.

Write a program to print the factorial of a number by defining a recursive method named 'Factorial'.

Factorial of any number n is represented by n! and is equal to 1*2*3*....*(n-1)*n. E.g.-

4! = 1*2*3*4 = 24

3! = 3*2*1 = 6

2! = 2*1 = 2

Week 03 : Programming Assignment 4

Write a program to take integer inputs from user until he/she presses q ( Ask to press q to quit after every integer input ). Print average and product of all numbers.

Week 03 : Programming Assignment 5

Write a Java program to create a class called Employee with methods called work() and getSalary(). Create a subclass called HRManager that overrides the work() method and adds a new method called addEmployee().

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.

Spread the word.

Share the link on social media.

Confirm Password *

Username or email *

Forgot Password

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

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

SIKSHAPATH Logo

SIKSHAPATH Latest Articles

Nptel programming in java week 2 assignment answers 2023.

NPTEL Programming in Java Week 2 Assignment Answers 2023

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

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

Table of Contents

NPTEL Programming in Java Week 2 Assignment Answers

Q1. Following is a program given for this question.

What will be the output of the above program?

Answer: a. 22221010

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

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

Answer : a. Reference of the array.

Q3. Following is a program given for this question.

Answer: c. 30

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

Answer: a. 32 and 64

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

Answer: d. int to long

Q6. Consider the following program and identify the output.

Answer: d. Compilation error

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

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

Q8. What is the output of the following program?

Answer: c. 012

Q9. Consider the following piece of code.

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

Answer: d. nptel

Q10. What is the output of the following program?

Programming Answers to Java Assignment

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

(in one click)

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

Also Available:

NPTEL Programming in Java Week 1 Assignment Answers

NPTEL Programming In Java Week 3 Assignment Answers

Related Posts

NPTEL Cloud Computing Assignment 3 Answers 2023

NPTEL Cloud Computing Assignment 3 Answers 2023

NPTEL Programming In Java Week 6 Assignment Answers 2023

NPTEL Programming In Java Week 6 Assignment Answers 2023

NPTEL Cloud Computing and Distributed Systems Assignment 6 Answers 2023

NPTEL Cloud Computing and Distributed Systems Assignment 6 Answers 2023

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

Are you looking for NPTEL Week 1 assignment answers for 2024 for July Dec Session ! If you’re enrolled in any of the NPTEL courses, this post will help you find the relevant assignment answers for Week 1. Ensure to submit your assignments by August 8, 2024.

nptel-assignment-answers/NPTEL-Week-1-Assignment-Answers-and-Solutions-2024

Folders and files.

NameName
2 Commits

Repository files navigation

Nptel-week-1-assignment-answers-and-solutions-2024, 1. artificial intelligence search methods for problem solving nptel week 1 assignment answers 2024.

Link:  https://progiez.com/artificial-intelligence-search-methods-for-problem-solving-week-1

Artificial Intelligence Search Methods For Problem solving Week 1 Assignment Nptel Answers

2. Cloud Computing Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/cloud-computing-week-1-assignment-1-nptel-answers

programming in java nptel assignment solutions week 2

3. Computer Architecture Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/computer-architecture-nptel-week-1-assignment-1-answers

programming in java nptel assignment solutions week 2

4. Cyber Security and Privacy Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/cyber-security-and-privacy-week-1-nptel-assignment

Cyber Security and Privacy Week 1 Nptel Assignment Answers

5. Data Base Management System Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/data-base-management-system-nptel-assignment-1-answers

Data Base Management System Nptel Assignment 1 Answers

6. Data Science for Engineers Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/data-science-for-engineers-week-1-assignment-nptel

programming in java nptel assignment solutions week 2

7. Data Structure and Algorithms using Java Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/data-structure-and-algorithms-using-java-week-1-nptel

programming in java nptel assignment solutions week 2

8. Deep Learning for Computer Vision Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/deep-learning-for-computer-vision-week-1-nptel-answers

programming in java nptel assignment solutions week 2

9. Deep Learning IIT Ropar Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/deep-learning-iit-ropar-week-1-assignment-1-nptel

programming in java nptel assignment solutions week 2

10. Ethical Hacking Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/ethical-hacking-nptel-week-1-assignment-1-answers

Ethical Hacking Nptel Week 1 Assignment 1 Answers

11. Introduction to Internet of Things Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/introduction-to-internet-of-things-week-1-nptel-answers

programming in java nptel assignment solutions week 2

12. Introduction to Machine Learning IITKGP Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/introduction-to-machine-learning-iitkgp-week-1-nptel

programming in java nptel assignment solutions week 2

13. Introduction to Machine Learning Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/introduction-to-machine-learning-week-1-nptel-answers

14. Introduction to Operating Systems Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/introduction-to-operating-systems-week-1-assignment-1

programming in java nptel assignment solutions week 2

15. Machine Learning and Deep Learning Fundamentals and Applications Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/machine-learning-and-deep-learning-fundamentals-and-applications-week-1

programming in java nptel assignment solutions week 2

16. Programming Data Structures and Algorithms using Python Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/programming-data-structures-and-algorithms-using-python-week-1

programming in java nptel assignment solutions week 2

17. Programming in Modern C++ Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/programming-in-modern-cpp-week-1-assignment-1-nptel

programming in java nptel assignment solutions week 2

18. Problem Solving Through Programming in C Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/problem-solving-through-programming-in-c-week-1-nptel

programming in java nptel assignment solutions week 2

19. Python for Data Science Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/python-for-data-science-week-1-assignment-1-nptel

programming in java nptel assignment solutions week 2

20. Software Engineering Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/software-engineering-week-1-assignment-1-nptel-answers

programming in java nptel assignment solutions week 2

21. Software Testing Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/software-testing-week-1-assignment-1-nptel-answers

programming in java nptel assignment solutions week 2

22. Soft Skill Development Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/nptel-soft-skill-development-week-1-assignment-1-nptel-answer

programming in java nptel assignment solutions week 2

23. Soft Skills Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/soft-skills-week-1-assignment-1-nptel-answers

programming in java nptel assignment solutions week 2

24. Theory of Computation Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/theory-of-computation-week-1-assignment-1-nptel-answers

programming in java nptel assignment solutions week 2

25. The Joy of Computing Using Python Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/the-joy-of-computing-using-python-week-1-nptel-answers

programming in java nptel assignment solutions week 2

26. Digital Circuits Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/digital-circuits-week-1-assignment-1-nptel-answers

programming in java nptel assignment solutions week 2

27. Programming in Java Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/programming-in-java-week-1-assignment-1-nptel-answers

programming in java nptel assignment solutions week 2

28. Introduction to Industry 4.0 and Industrial Internet of Things Nptel Week 1 Assignment Answers 2024

Link:  https://progiez.com/nptel-introduction-to-industry-4-assignment-1-week-1

programming in java nptel assignment solutions week 2

Submission Deadline

Don’t forget to submit your assignments by August 8, 2024!

By following the links above, you can easily find and complete your Week 1 assignments for various NPTEL courses. Ensure that your submissions are accurate and submitted before the deadline to avoid any penalties.

Stay tuned for more updates and guides on upcoming assignments and course material.

Category: Nptel Assignment Answers 2024

An introduction to programming through c++ week 9 answers, an introduction to programming through c++ week 8 answers, an introduction to programming through c++ week 7 answers.

IMAGES

  1. NPTEL Programming In Java Week 2 Assignment Solution

    programming in java nptel assignment solutions week 2

  2. Programming In Java

    programming in java nptel assignment solutions week 2

  3. NPTEL Programming in Java Week 2 Programming Assignment Solutions || January 2022 || Swayam

    programming in java nptel assignment solutions week 2

  4. NPTEL Programming in Java Week 2 Answers

    programming in java nptel assignment solutions week 2

  5. NPTEL Programming in Java Week 2 Quiz Assignment Solutions || January 2021 || Swayam

    programming in java nptel assignment solutions week 2

  6. NPTEL PROGRAMMING IN JAVA WEEK 2 ASSIGNMENT ANSWERS

    programming in java nptel assignment solutions week 2

VIDEO

  1. NPTEL Programming In Java || Week 4 || Assignment 4 Solution || NPTEL Swayam || JAN

  2. NPTEL Programming In Java WEEK 6 ASSIGNMENT ANSWERS

  3. NPTEL Programming In Java WEEK6 Programming Assignment Solutions

  4. NPTEL Programming In Java WEEK 1 Programming Assignment Solutions

  5. NPTEL Programming in Java week 1 all 5 programming assignment answer with code link

  6. NPTEL Programming In Java WEEK 2 Quiz Assignment Solutions💡

COMMENTS

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

  2. Programming in Java|NPTEL|WEEK 2 ASSIGNMENT|solution

    In this video, I walk you through the solution to Nptel Week 2 assignment, providing detailed explanations for each question. The answers have been carefully...

  3. Programming in Java

    Programming in Java NPTEL Week 2 Programming Assignment 1 Solutions. Complete the code segment to call the method print() of class Student first and then call print() method of class School. // This is the class named School class School { // This is a method in class School public void print() { System.out.println("Hi!

  4. NPTEL Programming in Java Week 2 Assignment Solutions

    Programming in Java Week 2 Assignment Solutions 2024 || Jul Dec 2024 || @OPEducore Course: Programming In JavaOffered by: IIT KharagpurDuration: 12 week...

  5. NPTEL

    🌟 Welcome to my NPTEL Programming in Java repository! 🚀 This repository is a comprehensive collection of my solutions and detailed notes for the NPTEL Programming in Java course. It's designed for learners, Java enthusiasts, and anyone eager to delve into the world of Java programming. Resources

  6. NPTEL Programming In Java Week 2 Assignment 2 Answers

    Question 3. Complete the code segment tocall print () method of class Question by creating a method named 'student ()'. Solution: //Code. These are NPTEL Programming In Java Week 2 Assignment 2 Answers. Question 4. Complete the code segment to call default constructor first and then any other constructor in the class.

  7. PDF Java Week 2:Q1

    02/07/2020 Programming in Java - Course https://onlinecourses.nptel.ac.in/noc20_cs08/progassignment?name=118 3/3 DOWNLOAD VIDEOS Assignment Solution

  8. Programming in Java Nptel Week 2 Assignment Answers

    Are you looking for Programming in Java NPTEL Week 2 Assignment Answers? You've come to the right place! Access the accurate solutions ... Programming In Java Programming Assignment Solution. Question 1. Complete the code segment to call the method print() of class School first and then call print() method of class Student. ...

  9. bkkothari2255/Programming_In_Java_NPTEL

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

  10. NPTEL Programming in Java Week 2 Assignment Answers 2024 (July-October)

    The NPTEL Programming in Java course, offered from July to October 2024, provides a solid foundation in Java programming. Week 2's assignment focuses on understanding key concepts and practices in Java. Below is a comprehensive guide to the assignment questions and their answers. Question 1:

  11. Programming in Java NPTEL Assignment Answers of Week 2 (2023)

    Week 2 : Programming Assignment 5. Complete the code segment to debug / complete the program which is intended to print 'NPTEL JAVA'. Answer: System.out.print(nptel+space+java+space+nptel); In this article, you will get NPTEL Assignment Answers of Week 2 (2023) of the course Programming in Java.

  12. Programming in Java

    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 2023 Week 2 Quiz Solutions" contains 10 questions. Now, start attempting the quiz.

  13. PDF Java Week 2:Q4

    Course outline. Java Week 2:Q4. -13, 23:59 ISTComplete the code segment to call default constructor first and then any other constructor in th. class Answer.How does an NPTEL onli. Sample Test Cases. Week 0 : k 1 :Week 2 :Lecture 06 : Demonstr. t=3&lesson=20)Lecture 07 : Encap. t=3&lesson=21)Lecture 08 : Demonstra.

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

  15. NPTEL Programming In Java WEEK2 Quiz Assignment Solutions

    🔊 NPTEL Programming In Java WEEK2 Quiz Assignment Solutions | Swayam Jan 2024 | IIT Kharagpur | GATE NPTEL⛳ABOUT THE COURSE :With the growth of Information ...

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

  17. NPTEL Programming in Java Week 2 Assignment Solution 2023

    February 8, 2023. Faheem Ahmad. NPTEL Programming in Java Week 2 All Programming Assignment Solutions - July 2022 | 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 ...

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

    NPTEL Programming in Java Jan 2024 Week 6 to 12 Posted on March 01, 2024 Please scroll down for latest Programs. 👇 . Week 6 : Programming Assignment 1. ... Week 7 : Programming Assignment 2. Due on 2024-03-14, 23:59 IST. A BankAccount class with private field balance is provided,

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

    NPTEL » Programming in Java Please scroll down for latest Programs. 👇 . Week 01 : Programming Assignment 1. Due on 2024-08-08, 23:59 IST. Write a Java program to print the area and perimeter of a rectangle. ... Week 02 : Programming Assignment 2. Due on 2024-08-08, 23:59 IST.

  20. GitHub

    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.

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

    Programming In Java Week 2 Assignment 2 Answers Solution Quiz | 2023-JanJoin our Telegram Channel : https://telegram.me/SwayamSolverNPTEL - Programming in Ja...

  22. NPTEL Programming in Java Week 2 Assignment Answers 2023

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

  23. GitHub

    Are you looking for NPTEL Week 1 assignment answers for 2024 for July Dec Session ! If you're enrolled in any of the NPTEL courses, this post will help you find the relevant assignment answers for Week 1. Ensure to submit your assignments by August 8, 2024.

  24. Programming DSA using Python Nptel Week 2 Assignment Answers

    These are Nptel Programming DSA using Python Week 2 Assignment Answers Write a function delchar(s,c) that takes as input strings s and c, where c has length 1 (i.e., a single character), and returns the string obtained by deleting all occurrences of c in s.

  25. NPTEL Programing In Java WEEK 2 Assignment Answer

    About Press Copyright Contact us Creators Advertise Developers Terms Privacy Policy & Safety How YouTube works Test new features NFL Sunday Ticket Press Copyright ...

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

  27. Nptel Programming in java Programming Assignment 1 Week 2 solution #

    About Press Copyright Contact us Creators Advertise Developers Terms Privacy Policy & Safety How YouTube works Test new features NFL Sunday Ticket Press Copyright ...