Answer:
// here is code in Java.
// package
import java.util.*;
// class definition
class Main
{
// method that return sum of two sale value
public static int Add(int euroSales,int asiaSales)
{
// return the sum
return euroSales+asiaSales;
}
//main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// variables
int euroSales=100;
int asiaSales=150;
int eurasiaSales;
// call the function
eurasiaSales=Add(euroSales,asiaSales);
// print the sum
System.out.println("total sale is:"+eurasiaSales);
}catch(Exception ex){
return;}
}
}
Explanation:
Declare and initialize two variables "euroSales=100" and "asiaSales=150". Declare another variable eurasiaSales. Call the method Add() with euroSales and asiaSales as parameter. This method will add both the value and return the sum.This sum will be assigned to variable eurasiaSales.Then print the sum.
Output:
total sale is:250
Answer:
idk
Explanation:
how bout idk maybe ask ur teacher dont be afraid to ask thats what they're there for
just saying not tryna be rude or anything
Answer:
Option A is correct
Explanation:
The right way to cite the Occupational Outlook Handbook's "How to Become a Dentist" web page is given below:
The first citation: Occupational Outlook Handbook.
The second citation: is on how to Become a Dentist."
The third citation: Bureau of Labor Statistics and US Department of Labor, 2012.
In conclusion the correct answer is option A.