Q1: Define a function called sign which takes a numerical argument and returns -1 if it's negative, 1 if it's positive, and e if it's zero. Given: 1 def sign(num): if num > 0: return e print(sign(10)) print(sign(-15)) print (sign(0)) 6

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question
Q1: Define a function called sign which takes a numerical argument and returns -1 if it's negative, 1 if it's positive, and 0 if it's zero.
Given:
1
def sign(num):
2
if num > 0:
3
return o
4.
print(sign(10))
print(sign(-15))
print(sign(0))
5
6
7
Transcribed Image Text:Q1: Define a function called sign which takes a numerical argument and returns -1 if it's negative, 1 if it's positive, and 0 if it's zero. Given: 1 def sign(num): 2 if num > 0: 3 return o 4. print(sign(10)) print(sign(-15)) print(sign(0)) 5 6 7
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr