Tendancy to crash hope that helped
If a class contains more than one constructor, computer determines the appropriate constructor by matching all the attributes, like the number, data type and position. Here's the example where the row public AirConditioner(){} is the default constructor that can use <span>default settings or initialize manually (sorry for tabulation, not my fault)</span>:
<span>class AirConditioner{ enum ConditionerMode{ Automatic, } public ConditionerMode Mode; public int MinTemperature = 18; public int MaxTemperature = 20;
public AirConditioner(){ }
public AirConditioner(ConditionerMode mode){ Mode = mode; } public AirConditioner(ConditionerMode mode, int MinTemp, int MaxTemp){ Mode = mode; MinTemperature = MinTemp; MaxTemperature = MaxTemp; }}</span>
Answer:
DATA MANAGEMENT SYSTEM
Explanation:
Data management system is a program for storing and retrieving users data thereby allowing the users to create their own database.
The database management system also interacts with end users, applications, and the database itself to capture and analyze the data and also provide an interface between the database and its users and other application programs.
Answer:
C.)Power query editor
Explanation:
Power Query Editor is a tool in MS Excel 2010 which allows the user to locate, edit and load external data before importing it.
It imports data from different sources, joins, appends data and shapes data according to requirements.
Answer:
import math
l = float(input("Enter length in cm: "))
l = l / 100;
print("Entered length is " + str(l) + " meters")
area_square = l * l
print("Area of square is " + str(area_square))
area_circle = math.pi * l/2 * l/2
print("Area of circle is " + str(area_circle))
volume_cube = l * l * l
print("Volume of cube is " + str(volume_cube))
Explanation:
*The code is in Python
Ask the user to enter the length in cm
Convert the length to meters and print it
Calculate the area of the square and print it (Since length is equal to a side, the area is length * length)
Calculate the area of the circle and print it (Since length is equal to the diameter, you need to divide it by two to get the radius. The area is pi * length/2 * length/2)
Calculate the volume of the cube and print it (Since length is equal to a side, the volume is length * length * length)