Answer:
it should be the welcome screen I will hope so lol
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
It be feasible to combine both formats in a single disk are Field \lenght should be placed after the information saved withinside the area to expose in which it ends.
<h3>What is fixed-length area and variable length?</h3>
Fixed-length method having a fixed length that by no means varies. In database systems, an area will have a hard and fast or a variable period. A variable-period area is one whose period may be special in every document, relying on what information is saved withinside the are.
- You should determine what number of characters it is able to contain. If a area is of the variable period then an End-Of-Field marker should be placed after the information is saved withinside the area to expose in which it ends.
- If a document incorporates a few fields that have variable lengths then the document period can be variable.
- it's miles feasible to mix each constant period and variable period on a single disk.
Read more about the single disk:
brainly.com/question/11600913
#SPJ1