C. answer the least challenging questions first
because then you get those out of the way and have more time to focus on the harder questions.
Answer:
The array index by using split function.
45 20 50 30 80 10 60 70 40 90
45 20 40 30 80 10 60 70 50 90
45 20 40 30 10 80 60 70 50 90
10 20 40 30 45 80 60 70 50 90
Explanation:
In the following statement, there is an integer array type variable x and its index value is 10 that means it contains only 10 numeric values and then, they set split function which split the array and the split function is the built-in function which is used to separate the string or an array. So, the array is split into the following parts.
The answer could be all of the above
it is globe because I want a successful the all people
Answer:
// here is code in java.
// import package
import java.util.*;
// class definition
class Main
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// print the name
System.out.print("my name is Sam. ");
// print the major
System.out.print("my major is CS.");
}catch(Exception ex){
return;}
}
}
Explanation:
In java, System.out.print() will print the statement but didn't go to the next line.If there is another System.out.print(), then it will also print into the same line.So here first the System.out.print() will print the name and second will print the major in the same line.
Output:
my name is Sam. my major is CS.