Hey Folks, Hello Everyone. We came back with new Assignment of Joy Of Computing Using Python Week 12 Assignment. As we are Providing the answers from since the starting of the assignment. We are providing with 100 % Accuracy. Then Why Waiting, Come with us till Last Let solve the this week assignments also.
Read More: Joy Of Computing Using Python Week 11 Assignment Answers
About Swayam NPTEL
Swayam (Study Webs of Active Learning for Young Aspiring Minds)Â is a digital platform initiated by the Government of India's Ministry of Education to provide free online courses to students across the country. The aim of Swayam is to make quality education accessible to everyone, especially those who are unable to attend traditional classrooms due to various reasons.
The courses are available for free to anyone who has access to the internet, and learners can take up the courses at their own pace and convenience. The courses are offered in video format, and learners can access the course material, assignments, quizzes, and other learning resources on the platform.
Swayam also provides a certificate of completion to learners who successfully complete the courses. The certificates are recognized by various universities and institutions, and learners can use them to enhance their resumes or for further education.Â
NPTEL Joy Of Computing Using Python Week 12 Assignment 2023
Last Date : 19-04-2023
Q1. NLTK ________.
A. Helps to work with human language data.
B. Helps to convert machine data into human language.
C. Helps to work on gibberish language.
D. Helps to translate dog language into human language
Answer: [ A ]Â Helps to work with human language data.
Q2. The following code will return:
def test(word):Â
   new word = ' '
   for ch in word :Â
     if ch>= 'a' and ch<='z' :Â
      temp = ord(ch)
      temp = temp-32Â
      temp = chr(temp)
      new_word = new_word + temp
return new_word { codeBox}
A. Converting lower case letters into upper case.
B. Converting upper case letters into lower case.
C. Return the same word
D. Error
Answer : [ A ]Â Â Converting lower case letters into upper case.
Q3. How many edges are there in the following graph?
A. Three
B. Five
C. Four
D. Two
Answer: [ C ] Four
Q4. A complete graph will have a degree of separation.
A. 2
B. 1
C. 3
D. Depends on the number of nodes.
Answer: [ B ] 1
Q5. What is the output of the following code?
Answer:Â
Q6. What is the shape of the following numpy array?
numpy.array([ [1,2,3], [4,5,6] ])
A. (2,3)
B. (3,2)
C. (3,3)
D. (2,2)
Answer: [ A ]Â ( 2,3 )
Q7. Which is the following graph?
A. Triangle Graph
B. Directed Graph
C. Barbell Graph
D. Wheel graph
Answer: [ C ] Barbell Graph
Q8. What will be the G.out_degree(3) for the following graph(G)?
 A. 4
 B. 6
 C. 3
 D. None of the above
Answer: [ D ] None Of the Above
Q9. What should we do when encountered a sink?
A. Stop the algorithm.
B. Start with the last node.
C. Randomly choose a node from all nodes.
D. Randomly choose a node from neighbor nodes.
Answer: [ C ]Â Randomly choose a node from all nodes.
Q10. Which of the following is a star graph of node 5?
Answer:Â
Read More:Â Joy Of Computing Using Python Week 11 Assignment Answers