Answer:
call center/phone/fax.....
Answer: Decoupling action of the process address space refers to the physical memory of the device getting decoupled to provide address translation in automatic way. The benefit of this method is as follows:-
- Faster starting up of the program
- The physical address space gets managed on its own
- Helps in execution of large program when the main memory of the machine is of smaller size in comparison with program
Answer:
The correct answer for the given question is 24
Explanation:
In the given question the value of variable i entered by the user is 25 i.e the value of i is 25 control checks the condition of if block which is false .So control moves to the else block and executed the condition inside the else block means it executed i-- decrements the value of i by 1 means i is 24
Following are the program of java :
import java.util.*;// import package
public class Main // main class
{
// main method
public static void main(String[] args)
{
int i = 0; // variable declaration
Scanner in = new Scanner(System.in); // creating class of scanner class
System.out.print("Enter a number: ");
i = in.nextInt(); // user input
if (i > 25) // check if block
{
i++; // increment the value of i
}
else
{
i--; // decrement the value of i
}
System.out.println(i); // display i
}
}
Output:
Enter a number:25
24
<span>The answer is letter C which is GUI. GUI means Graphic User Interface. GUI are elements such as icons, windows, menus, buttons, and other graphical elements. These GUI carry out commands that instead of reading words or phrases, graphics are used to be more convenient. </span>