⟩ Why paging is used?
Paging is solution to external fragmentation problem which is to permit the logical address space of a process to be noncontiguous, thus allowing a process to be allocating physical memory wherever the latter is available.
Paging is solution to external fragmentation problem which is to permit the logical address space of a process to be noncontiguous, thus allowing a process to be allocating physical memory wherever the latter is available.
How the handles are handled in the child process?
What is Mutex Object and why it is used?
What is a thread?
What is expression in awk programming? a) expression evaluates a value to print, test or pass to a function b) expression assigns a new value to a variable or field c) both (a) and (b) d) none of the mentioned
What is the output of this program? #! /usr/bin/awk -f BEGIN { two=2; two++; print two } a) two b) three c) 2 d) 3
What is the output of this program? #! /usr/bin/awk -f BEGIN { var1="google" var2="linux" print var1" provides "var2" MCQs " } a) google provides linux MCQs b) var1 provides var2 MCQs c) provides MCQs d) syntax error
What is the output of this program? #! /usr/bin/awk -f BEGIN { one=10; two=3; print (one%two)+10 } a) (one%two)+10 b) 13 c) 11 d) syntax error
What is the output of this program? #! /usr/bin/awk -f BEGIN { a=10; b=10; print a==b ? "true""false" } a) true b) false c) syntax error d) none of the mentioned
The comparison expression "x ~ y" will true if a) x is not equal to y b) the string x does not match the regular expression denoted by y c) the string x matches the regular expression denoted by y d) none of the mentioned
What is the output of this program? #! /usr/bin/awk -f BEGIN { print "20"<"9" ? "true""false" } a) true b) false c) syntax error d) none of the mentioned