Answer:
yes I am having the same problem I take a picture and it says something is wrong with connection
Using the knowledge in computational language in JAVA it is possible to write a code that use factor levels that can be used as valid R variable names
<h3>Writting the code in JAVA:</h3>
<em> method = "repeatedcv"</em>
<em> , number = 10</em>
<em> , repeats = 1 </em>
<em> , verboseIter = TRUE</em>
<em> , summaryFunction = fivestats</em>
<em> , classProbs = TRUE</em>
<em> , allowParallel = TRUE)</em>
<em />
<em />
See more about JAVA at brainly.com/question/12975450
#SPJ1
Answer:
b. Application software
Explanation:
Applications are type of software that are installed in a specific operating system of a computer that deviates from those system software installed together with the system itself. These third-party applications are necessary for other functions such as entertainment, business, leisure and other needs addressing of which the system software can't provide.
Examples:
Microsoft Office Word, Excel, Powerpoint
i think i did that right:)
Answer:
Following are the program in java is given below
import java.util.*; // import package
public class Main // main class
{
public static void main(String[] args) // MAIN FUNCTION
{
Scanner scan2 = new Scanner(System.in);// scanner CLASS
System.out.println("Enter the Grade ");
char GRADE = scan2.next().charAt(0);//Read input by user
if(GRADE=='A' || GRADE=='B' || GRADE=='C' || GRADE=='D' || GRADE=='F' ) // //CHECK CONDITION
{
System.out.println("The GRADE is :" +GRADE); // display grade
}
else // Else block
{
System.out.println(" Input Error"); // display message
}
}
}
Output:
Enter the Grade
D
The GRADE is :D
Explanation:
Following are the description of program
- Create the object of scanner class for read the value of grade by the user .
- Read the value of "GRADE" variable by using the scanner class object scan 2
- Now check the condition in if block if the "GRADE" is 'A' or 'B' or 'C' or 'D' or 'F' then display the value of the GRADE variable otherwise else block is executed and input error message is displayed .