NPTEL The Joy Of Computing Using Python Assignment 9 Answers 2022

NPTEL The Joy Of Computing Using Python Assignment 9 Answers 2022

NPTEL The Joy Of Computing Using Python Assignment 9 Answers 2022 :- Here All The Questions and Answers Provided to Help All The Students and NPTEL Candidate as a Reference Purpose, It is Mandetory to Submit Your Weekly Assignment By Your Own Understand Level.

 

Are you looking for the Assignment Answers to NPTEL The Joy Of Computing Using Python Assignment 9 Answers 2022? If Yes You are in Our Great Place to Getting Your Solution, This Post Should be help you with the Assignment answer to the National Programme on Technology Enhanced Learning (NPTEL) Course “NPTEL The Joy Of Computing Using Python Assignment week 9 solutions 2022″

The Joy Of Computing Using Python?

A fun crammed windstorm tour of thirty hrs, covering everything you would like to understand to fall infatuated with the foremost asked for ability of the twenty first century. The course brings programming to your table with anecdotes, analogies and illustrious examples. Turning abstractions to insights and engineering to art, the course focuses primarily to inspire the learner’s mind to assume logically and gain an answer programmatically. As a part of the course, you’ll be learning a way to observe and culture the art of programming with Python as a language. At the tip of the course, we tend to introduce a number of this advances in computing to inspire the eager learner to pursue additional directions.
The Joy Of Computing mistreatment Python could be a fun-filled windstorm tour of thirty hrs, covering everything you would like to understand to fall infatuated with the foremost sought-after ability of the twenty first century. This course includes samples of analytics during a large choice of industries, and that we hope that students can learn the way you’ll use analytics in their careers and life. one in every of the foremost vital aspects of this course is that you just, the coed, are becoming active expertise making analytics models; we tend to, the course team, urge you to participate within the discussion forums and to use all the tools offered to you whereas you’re within the course!

 

CRITERIA TO GET A CERTIFICATE

This course can have Associate in Nursing unproctored programming communication conjointly excluding the Proctored communication, please check announcement section for date and time. The programming communication can have a weightage of twenty fifth towards the ultimate score.

Final score = Assignment score + Unproctored programming exam score + Proctored Exam score
  • Assignment score = 25% of average of best 8 assignments out of the total 12 assignments given in the course.
  • ( All assignments in a particular week will be counted towards final scoring – quizzes and programming assignments). 
  • Unproctored programming exam score = 25% of the average scores obtained as part of Unproctored programming exam – out of 100
  • Proctored Exam score =50% of the proctored certification exam score out of 100
YOU WILL BE ELIGIBLE FOR A CERTIFICATE ONLY IF ASSIGNMENT SCORE >=10/25 AND
UNPROCTORED PROGRAMMING EXAM SCORE >=10/25 AND PROCTORED EXAM SCORE >= 20/50. 
If any one of the 3 criteria is not met, you will not be eligible for the certificate even if the Final score >= 40/100. 

CHECK HERE OTHERS NPTEL ASSIGNMENTS ANSWERS 

BELOW YOU CAN GET YOUR NPTEL The Joy Of Computing Using Python Assignment 9 Answers 2022? :

 

NPTEL The Joy Of Computing Using Python Assignment 9 Answers 2022

Q1. How can we identify which book is written by which author?

a. By matching handwriting.
b. By analyzing word length with previous books.
c. By analyzing the number of pages in a book.
d. By analyzing the book’s preface.

Answer By SciShowEngineer:- b. By analyzing word length with previous books.

Q2. How can a list L can be converted into a tuple?

Answer By SciShowEngineer: a

Q3. Will the following piece of code always return True?

Answer By SciShowEngineer: a

For Online programming test help and final exam preparation material Click Me

Q4. What is the output of the following code?

Answer By SciShowEngineer: d

Q5. How many edges are there in the following graph?

Answer By SciShowEngineer: a

Q6. How many neighbors does node 3 have?

Answer By SciShowEngineer:- d

Next Week Assignment Answer By SciShowEngineers

quizxp telegram
Q7. In which of the following ways can we create a string in python?

Answer By SciShowEngineer: d

Q8. How many nodes, edges does the following graph have?

Answer By SciShowEngineer: a

Q9. A complete graph will have a degree of separation?

Answer By SciShowEngineer: a

If there are any changes in Answer By SciShowEngineers will notify you on telegram so you can get a 100% score, So Join

Q10. How can we get an RGB of a pixel?

Answer By SciShowEngineer: b

Programming Assignment Answer By SciShowEngineers
Q1. Given two string s1 and s2, write a function subStr which accepts two parameters s1 and s2 and will return True if a s2 is a substring of s1 otherwise return False. A substring is a is a contiguous sequence of characters within a string.

Code:-

def subStr(s1,s2):
return(s2 in s1)
Q2. Given two dictionaries d1 and d2, write a function mergeDic that accepts two dictionaries d1 and d2 and return a new dictionary by merging d1 and d2.
Note: Contents of d1 should be appear before contents of d2 in the new dictionary and in same order. In case of duplicate value retain the value present in d1.

Code:-

For Online programming test help and final exam preparation material Click Me

def mergeDic(d1,d2):
for k in d2:
if k not in d1:
d1[k]=d2[k]
return(d1)
Q3. Given an integer n, print all the indexes of numbers in that integer from left to right.

Code:-

N=list(str(n))
P=[]
for i in N:
if i not in P:
P.append(i)
ans=[]
for i in range(len(P)):
a=[]
for j in range(len(N)):
if(P[i]==N[j]):
a.append(j)
ans.append(a)
#print(ans)

for i in range(len(P)):
print(int(P[i]), “”,end=””)
#print(len(ans[i]))
for j in range(len(ans[i])):
print(int(ans[i][j]),””,end=””)
print()

Yhaa You have done it but next? if YOU Want to your Others NPTEL The Joy Of Computing Using Python Assignment  Answers 2022 Then Follow US HERE and Join Telegram.

Related Posts

Leave a Reply

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