To print the negative odd numbers between -1 and -30.
Answers
Answered by
0
Answer:
on python
Explanation:
class First:
def __init__(self):
self.num = 44
class Second(First):
def check(self):
if self.num % 2 == 0:
print("Number is even:", self.num)
else:
print("Number is odd:", self.num)
class Third(First):
def check(self):
if self.num > 0:
print("Number is positive:", self.num)
else:
print("Number is negative:", self.num)
obj1 = Second()
obj1.check()
obj2 = Third()
obj2.check()
Similar questions
Geography,
1 month ago
Environmental Sciences,
1 month ago
English,
1 month ago
Math,
2 months ago
Science,
2 months ago
Chemistry,
10 months ago
Business Studies,
10 months ago