Company: Oracle_MCQ
Difficulty: medium
What is the reason a virtual memory address is described as 'virtual'? This memory address does not map to actual memory cell that corresponds to address number. This memory is the same as physical memory. This memory cannot be accessed by applications at run time. This memory address is always present even after a system is restarted. In Linux, which interrupt number is designated for system calls? 0x10 0x60 0x80 0x40 In which of the following does the operating system store the details of a process? Heap Process Control Block Stack TLB Cache Convert the infix expression below into its postfix form. a+b*c+(d*e) abc*de*++ abc*de*+* a+bc*de*+ abc*+(de)*+ #include <stdio.h> #define MAX(a,b) ( (a) > (b) ? (a) : (b) ) int main() { int x = 5, y = 10; printf("%d %d %d\n", MAX(x++, y), MAX(x, y++), x); return 0; } 11 6 12 12 6 12 11 7 12 12 7 12 Study the following Java method. What will it output? public static void function1(int [] data, int low, int high) { if (low >= high) { r