The answer & explanation for this question is given in the attachment below.
You copy the url and paste it in the box on the website
Answer:
Yes
Explanation:
e-commerce or electronic commerce is an online platform, where web technologies is used as a medium for business transaction between a buyer and a seller.
The e-commerce platform provides the online marketplace and the electronic payment medium for customers of an e-store to easily acquire the products and services they need.
eBay is an example of an e-commerce website that provides individuals with the medium to sell and buy what they need.
The options are;
A) Data
B) Front Office
C) Core Processing
D) Experience
Answer:
D) Experience
Explanation:
Under enterprise resource planning platform, experience is the process whereby vendors interact and also manage the entire supply chain link on behalf of a retail client.
Thus, option D is the correct answer
Answer:
if(goodsSold>500000){
bonus = 10000;
}
Explanation:
A complete Java program that prompts user to enter value for goodsSold is given below:
<em>import java.util.Scanner;</em>
<em>public class num14 {</em>
<em> public static void main(String[] args) {</em>
<em> Scanner in = new Scanner(System.in);</em>
<em> System.out.println("Enter goods Sold: ");</em>
<em> int goodsSold = in.nextInt();</em>
<em> int bonus =0;</em>
<em> if(goodsSold>500000){</em>
<em> bonus=10000;</em>
<em> }</em>
<em> System.out.println("You bonus for "+goodsSold+" is "+bonus);</em>
<em> }</em>
<em>}</em>