Answer:
SELECT product_name, amount_due, amount_paid,
               cancelled, amount_refunded
    FROM products
 ORDER BY product_name ASC;
Explanation:
SQL (Structured Query Language ) was used above.
The SELECT command is used to list all the variables we want in our output.
The FROM command signifies the location.
ORDER BY command ensures that your result is ordered 
ASC means Ascending Order.
; signifies the end of the query.
NOTE: Underscores were used because variables cannot be written with spaces between them
 
        
             
        
        
        
Answer:
See the code snippet below
Explanation:
import java.util.Scanner;
public class LabProgram{
      public static void main(String[] args){
           Scanner scan = new Scanner(System.in);
           System.out.println("Please enter first number: ");
           int firstNumber = scan.nextInt();
           System.out.println("Please enter second number: ");
           int secondNumber = scan.nextInt();
           maxMagnitude(firstNumber, secondNumber);
}
      public static int maxMagnitude(int firstValue, secondValue){
          System.out.println(Math.max(firstValue, secondValue));
}
}
 
        
             
        
        
        
<span>it is caused by A.overgrazing
</span>
        
             
        
        
        
Answer:
Written in C++
void number(int n){
if(n%2 == 0)
cout<<2 * n;
else
cout<<5 * n;
}
Explanation:
The programming language is not stated.
However, I answered using C++
This line defines the function as void
void number(int n){
This line checks if the number is even
if(n%2 == 0)
If yes, it doubles the number and prints the output
cout<<2 * n;
If otherwise,
else
It multiplies the number by 5 and prints the output
cout<<5 * n;
}
To call the function from main, use:
number(n);
Note than n must be declared as integer
See attachment
 
        
             
        
        
        
Answer:
Incomplete Question.
I'll answer this question based on general terms
Explanation:
Two Factor Authentication, abbreviated as 2FA.
It is a type of authentication that requires the presentation of two credentials for access to personal data and information.
The credentials needed for a 2FA are
1. Either of the following; PIN, Password or Pattern
2. Your device or gadget which could be an ATM Card, Mobile Phone
3. Biometrics such as fingerprint, voice input
Number one is often referred to as "Something you know"
Number two is referred to as "Something you have"
Number three is referred to as "Something you are"
The 2FA doesn't require the three aforementioned credentials. It only needs just two of the credentials to provide its authentication.