Answer:
C
Explanation:
The top trends to for in your ERP system include: Cloud Deployment, it is cloud adoption will continue to rise and become generally accepted with the most ERP systems.It is reduced costs in capital expenditures and ITcompany resources, then improved maintenance and flexibility, as well as improved the security.
Green marketing<span> is the </span>marketing<span> of products that are presumed to be environmentally preferable to others.Thus </span>green marketing<span> incorporates a broad range of activities, including product modification, changes to the production process, sustainable packaging, as well as modifying advertising.</span>
A primary key is the field (or fields) that is often employed to specifically identify each record in a table.
<h3>What is the role of this key?</h3>
The Primary key is known to be the key that helps a user to be able to form a specific identifier for each row in one's table.
Note that it helps a person to link your table to other tables and as such, a primary key is the field (or fields) that is often employed to specifically identify each record in a table.
Learn more about primary key from
brainly.com/question/12001524
#SPJ1
C because you can’t graduate at 4 or 14 and if your kid is graduating when you’re 24 then that means you have birth at 7 years old which isn’t possible.
Answer:
<?php
function MinMax($x,$y) {
if($x > $y){
echo("The minimum is ".$y." and the maximum number is ".$x);
}
else{
echo("The minimum is ".$x." and the maximum number is ".$y);
}
}
MinMax(20,4);
?>
Explanation:
<?php
This defines the user function with two parameters x and y
function MinMax($x,$y) {
This checks if parameter x is greater than parameter y
if($x > $y){
If yes, it prints x as the maximum and y as the minimum
echo("The minimum is ".$y." and the maximum number is ".$x);
}
If otherwised
else{
If yes, it prints y as the maximum and x as the minimum
echo("The minimum is ".$x." and the maximum number is ".$y);
}
}
This calls the function
MinMax(20,4);
?>