English

Observe the following program carefully, and identify the error: from math import sqrt,ceil def calc(): print cos(0) calc() #function call - Computer Science (Python)

Advertisements
Advertisements

Question

Observe the following program carefully, and identify the error:

from math import sqrt,ceil
def calc():
      print cos(0)
calc()                #function call
Short Note

Solution

There are two errors in the given program.

  1. Only square root (sqrt) and ceiling (ceil) functions have been imported from the Math module, but here cosine function (cos) is used. ‘from math import cos’ should be written in the first line for the 'cos' function to work properly.
  2. The syntax of the ‘print’ function is incorrect. The correct syntax will be ‘print(cos(0))’.
shaalaa.com
Module
  Is there an error in this question or solution?
Chapter 7: Functions - Exercise [Page 170]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 7 Functions
Exercise | Q 1. b) | Page 170
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×