NPTEL The Joy Of Computing Using Python Assignment 11 Answers 2022

NPTEL The Joy Of Computing Using Python Assignment 11 Answers 2022

NPTEL The Joy Of Computing Using Python Assignment 11 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 11 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 11 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 11 Answers 2022? :

 

NPTEL The Joy Of Computing Using Python Assignment 11 Answers 2022

Q1. Which library is used for browser automation?

a. nltk
b. numpy
c. selenium
d. PIL

Answer By SciShowEngineer:- c. selenium

Answer By SciShowEngineers will be Uploaded Shortly and it will be Notified on Telegram, So JOIN NOW

Q2. time.time() will return?

Time in seconds.
Current date and time.
Time in minutes
The current date, time and year.

Answer By SciShowEngineer: a

Q3. Library used to get all timezones?

selenium
calender
nltk
pytz

Answer By SciShowEngineer: d

Q4. The output of the following code will be?

Date and time in dd- mm-yy hh:MM:ss:ms respectively.
Time and date in hh:MM:ss:ms dd- mm-yy respectively.
Date and time in mm-dd-yy hh:MM:ss:ms respectively.
Date and time in yy- mm-dd hh:MM:ss:ms respectively.

Answer By SciShowEngineer: d

Q5. We can use the same web drivers for different browsers.

True
False
Answer By SciShowEngineer: a

👇FOR NEXT WEEK ASSIGNMENT Answer By SciShowEngineerS👇

Q6. What will be the output of the following code?

Answer By SciShowEngineer:- a

Q7. What will be the output if the system date is 10 December 2021(Friday)?

Answer By SciShowEngineer: c

Q8. Which statement will return the calendar for a whole year?

Answer By SciShowEngineer: d

Q9. By which statement we can come out from the loop?

Answer By SciShowEngineer: d

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 to check for the leap year?

calendar.leap(year)
calendar.is_leap(year)
calendar.isleap(year)
calendar.checkleap(year)
Answer By SciShowEngineer: c

Programming Assignment Answer By SciShowEngineers
Q1. Take 3 sides of a triangle as an input and find whether that triangle is a right angled triangle or not. Print ‘YES’ if a triangle is right angled triangle or ‘NO’ if it’s not.

Code:-

a=int(input())
b=int(input())
c=int(input())
L=[a,b,c] h=max(L)
L.remove(h)
if h**2==L[0]**2+L[1]**2:
print(“YES”,end=””)
else:
print(“NO”,end=””)
Q2. Write a program that accepts a hash-separated sequence of words as input and prints the words in a hash-separated sequence after sorting them alphabetically in reverse order.

Code:-

L=sorted(input().split(“#”),reverse=True)
print(“#”.join(L),end=””)
Q3. Write a program which takes two integer a and b and prints all composite numbers between a and b.(both numbers are inclusive)

Code:-

prime=[2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53,
59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113,
127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181,
191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251,
257, 263, 269, 271, 277, 281, 283, 293] a=int(input())
b=int(input())
for i in range(a,b+1):
if i not in prime:
print(i)

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 *