Answer: maybe his wrtting ezam
Explanation:
Answer:
RAM (Random access memory)helps in reading aswell as writing data.
Explanation:
Random access memory is a computer memory that can be read and written.Where as ROM (read only memory) can only be read and cannot be written.RAM contains circuits with multiplexers and demultiplexers to connect the datalines to the addressed data for reading or writing.There are majorly two types of RAM .They are SRAM(static random access memory) and DRAM(dynamic random access memory).
<u>Answer:</u>
<em>1. The loop will run unless the value of answer equals to Capital N.</em> The method equals is “case-sensitive” that is lower case letter and upper case letters are considered different. That “a” and “A” means the same to us, but for the method equals it is different and equals method will return false if the case is not matching.
<em>2. a (int)(Math.random() * (upper − lower) ) + lower </em>
Since we need to consider the lower limit value together to get the desired results we need to add the value of lower limit to the multiplied answer.
<em>3. b while(userGuess != secretNumber || userGuess >= lowerLimit && userGuess <= upperLimit)</em>
Here the program is required to check the while loop and exit when user guess the number or we can say the loop should continue until the user guess the number, so that is why we have taken <em>userGuess!=secretNumber. </em>Next the loop should be exited if it is not within the range or we can say that the loop should run only if the guessed number is within the upper and lower limit.<em> That is why we have opted for the condition userGues>=lowerlimit && userGuess<=upperlimit.</em> Why we have taken && as the operator is that, it’s a range of values so && operator best suit for this kind of logical condition.