Answer:
def odd_even(N):
for number in range(0, N+1):
if number % 2 == 0:
print(str(number) + " is even")
elif number % 2 == 1:
print(str(number) +" is odd")
odd_even(5)
Explanation:
- Create a method called odd_even that takes one parameter, N
- Initialize a for loop that iterates through 0 to N
Inside the loop, check if module of the number with respect to 2 is equal to 0. If yes, print it as even number. If module of the number with respect to 2 is equal to 1, print it as odd number
Call the method
Answer:
Data Masking
Explanation:
Data masking, also known as data obfuscation, is a process companies use to hide data. The main reason for applying masking to a data field is to protect data that is classified as personally identifiable information, sensitive personal data, or commercially sensitive data. Imagine a scenario where your organization is working with a contractor to build a database. Masking your data allows the contractor to test the database environment without having access to actual sensitive customer information.
Answer:
Hi mate....
Explanation:
This is ur answer....
<em>-</em><em>-</em><em>></em><em> </em><em>Suzanne just facing low carbohydrates</em>....
hope it helps you,
mark me as the brainliest pls....
Follow me!
Answer:
(b) prod(2:2:18)
Explanation:
(a) Evaluate the product of the first 9 even numbers:
answer = 1;
for even = 2:2:18
answer = answer*even;
disp(answer)
(b) Evaluate the product of the first 9 even numbers using MATLAB prod() function
answer = prod(2:2:18)
disp(answer)