Answer:
c
Explanation:
because you cant really see the other ones dark text wont show up on a dark background light text wont show up on a light back ground.
Answer:
b. Limit register holds the size of a process.
Explanation:
A limit register is a form of registers used in memory management background that contains logical addresses. It is utilized to determines the size of the psychical memory range for a process. It can only be loaded only by the operating system, through a unique specific instruction.
Hence, in this case, the right answer is option B
Option A is not correct because the Base register specifies where the page table begins in memory
Option C is not correct because Base and limit registers can be only be loaded through the operating system
Option D is also not correct.
Answer:
b. 16
Explanation:
The given PHP code segment consists of 2 statements.
$str="The quick brown fox jumps over the lazy dog";
This defines a variable $str and assigns the given text to it.
echo strpos($str,'fox');
This statement prints the location of 'fox' in the text associated with the variable $str.
Upon execution it will print the value 16 which corresponds to the position of 'fox' in the given sentence.