(a) Write the full forms of the following :
HTML
TCP
(b) What is the need of pr
(a) Write the full forms of the following :
HTML
TCP
(b) What is the need of protocols?
2.Which of the following statement(s) would give an error after executing the following code?
Stud= { “Murugan” : 100, “Mithu” : 95} # Statement 1
print (Stud [95] ) # Statement 2
Stud [ “Murugan ” ] =99 # Statement 3
print (Stud. pop ( ) ) # Statement 4
print (Stud) # Statement 5
3.State True or False.
“Identifiers are names used to identify a variable, function in a program”.
4.Atharva is a Python programmer working on a program to find and return the maximum value from the list. The code written below has syntactical errors. Rewrite the correct code and underline the corrections made. 2
def max_num (L):
max=L (0)
for a in L :
if a > max
max=a
return max
