Answer:
Explanation:
#Using python to create the list
#first we create an empty list to store our numbers.
import math
data = []
x = 0
InputSum = 0
NumInput=int(input("how many number do you want to add"))
while x <=(NumInput):
Input=int(input("Enter the numbers here"))
data.append(Input)
x = x+1
InputSum = InputSum + Input #this is to add the numbers entered
print("The number you entered are ")
print(*data) #this print the numbers entered
print("The sum of the numbers is", InputSum)
isn't it ALU I got told it was ALU
In excel spreadsheets, you need to consider specifying relationships between the information you have
stored in your spreadsheets when creating formulas. The elements that will help
you understand using spreadsheet are the constants, operators, references and
functions. This will enable you to use the formulas, without hassle in
spreadsheets.
The correct answer to this question is letter "C. type of service provider."
Here are the following choices:
<span>A. subject matter of the message.
B. type of software being used.
C. type of service provider.
D. location of the destination</span>
Answer:
Explanation:
The following class is written in Java. I created the entire Circle class with each of the methods and constructor as requested. I also created a tester class to create a circle object and call some of the methods. The output can be seen in the attached picture below for the tester class.
class Circle {
double radius;
public Circle(double radius) {
this.radius = radius;
}
public double getRadius() {
return radius;
}
public void resetRadius() {
radius = 0;
}
public double calculateArea() {
double square = Math.pow((Math.PI * radius), 2);
return square;
}
}