Answer: They belong to a category of software known as Application program
Explanation: an application program is a computer program that is designed and implemented to carry out a specific task or for a specific purpose. Spreadsheet programs for instance are designed and implemented to carry out mathematical calculations, gaming programs for recreation, web programs for connecting to the internet and email programs for sending and receiving of emails.
Answer:
A software where you can document letters, essays or anything really.
Explanation:
Answer:
-Hardware interrupts are the interrupts that occur due to the external devices.
-Software interrupt arises due to the executing program.
Explanation:
- Hardware Interrupts are the raised due to external hardware devices whereas the software interrupts are raised by the executing instruction.
- Asynchronized events occur in the hardware interrupts whereas software interrupt face the synchronized events.
- There is increase in the program counter in software interrupt but no increment in the program counter for the hardware interrupt.
Answer:
// package
import java.util.*;
// class definition
class Main
{
// main method of the function
public static void main (String[] args) throws java.lang.Exception
{
try{
// initialize variables
char a='x',b='y',c='z';
// char variables with different Characters
// char a='#',b='$',c='%';
// char a='1',b='2',c='3';
// print all the combinations
System.out.print(""+a+b+c+" "+a+c+b+" "+b+a+c+" "+b+c+a+" "+c+a+b+" "+c+b+a);
}catch(Exception ex){
return;}
}
}
Explanation:
Declare and initialize variables a,b,c with "x","y","z" respectively.
Then with the help of print statement we can print all combinations
of these characters.Similarly we can check this for different input
characters.
Output:
xyz xzy yxz yzx zxy zyx
#$% #%$ $#% $%# %#$ %$#
123 132 213 231 312 321
Answer:
Depending upon the type of report you are viewing, the following view types are available. Report view is the default view for most reports. It consists of a time period, an optional comparison period, a chart, and a data table. Trend view displays data for individual metrics over time.
Explanation:
Read everything and give me your answer, do not forget to give me 5 stars, thank you