Answer:
Central Processing Unit
Explanation:
Principle part of any digital computer system
f = int(input("Enter a number: "))
if(f%7==0):
print("It's divisible by 7.")
else:
if(f<7):
print("7")
else:
print(str(f-(f%7))+", "+str(f+(7-(f%7))))
Answer:
- The graph of the function is attached below.
- The x-intercepts will be: (2, 0), (-2, 0)
- The y-intercept will be: (-20, 0)
Explanation:
Given the function
As we know that the x-intercept(s) can be obtained by setting the value y=0
so
switching sides
Add 20 to both sides
Dividing both sides by 5
so the x-intercepts will be: (2, 0), (-2, 0)
we also know that the y-intercept(s) can obtained by setting the value x=0
so
so the y-intercept will be: (-20, 0)
From the attached figure, all the intercepts are labeled.
Answer: (C) A special service for current customers
Explanation:
The CRM is the customer relationship management that typically use by the banks for providing special type of services to the current customer. This is the way to attract various types of users or customers by providing some special type of offers.
According to the question, bank provide the credit card offers to the customer on the airline tickets so, it is beneficial for both the customer and for the bank as well.
Answer:
if(i>1)
{
Console.WriteLine(i*i);
Console.WriteLine(i*i*i);
}
Explanation:
This is written in C#, and it's probably not as clean as it could be. I'm not sure what language you wanted it in, so I just picked the one I'm most familiar with.