There are some function which can be performed with database but not with a spread sheet, these functions include:
1. Enforcement of data type.
2. Support for self documentation.
3. Defining the relationship among constraints in order to ensure consistency of data.
Answer:
A wand tool is to do that in an editing software.
Answer:
Miguel y Maru están muy cansados. - Miguel y Maru están cansadísimos
Felipe es muy joven. - Felipe es jovencísimo
Jimena es muy inteligente. - Jimena es inteligentísima
La madre de Marissa está muy contenta. - La madre de Marissa está contentísima
Estoy muy aburrido. - Estoy aburridísimo
Explanation:
In this activity we have to switch the statements to the absolute superlative of the expressions. In Spanish we can add the suffix -ísimo to an adjective to refer to the highest degree of something. It can be translated in ENglish to "really, extremely, super or quie". The statements in English are:
- Miguel and Maru are very tired - Miguel and Mary are extremely tired
- Felipe is very young - Felipe is super young
- Jimena is very smart - Jimena is really smart
- Marissa´s mother is very happy - Marissa´s mother is extremely happy
- I´m very bored - I´m super bored
Here you go,
Import java.util.scanner
public class SumOfMax {
public static double findMax(double num1, double num2) {
double maxVal = 0.0;
// Note: if-else statements need not be understood to
// complete this activity
if (num1 > num2) { // if num1 is greater than num2,
maxVal = num1; // then num1 is the maxVal.
}
else { // Otherwise,
maxVal = num2; // num2 is the maxVal.
}
return maxVal;
}
public static void main(String[] args) {
double numA = 5.0;
double numB = 10.0;
double numY = 3.0;
double numZ = 7.0;
double maxSum = 0.0;
/* Your solution goes here */
maxSum = findMax(numA, numB); // first call of findMax
maxSum = maxSum + findMax(numY, numZ); // second call
System.out.print("maxSum is: " + maxSum);
return;
}
}
/*
Output:
maxSum is: 17.0
*/
Answer:
Normalization
Explanation:
Converting a poorly-structured table and optimizing its database structure in order to reduce redundancy in relations can be referred to as database normalization. If the data is not redundant means that data inconsistencies and errors like deletion and insertion will get reduced or eliminated significantly.