Answer:
D. 1K
Explanation:
The address space 0x0000-0x3FF is of 1KB(One Kilo Byte) since 0x3ff is equal to 1023. therefore 1023=1 KB.
bitwise 0x3ff zeros out the top bits of the number such that the result is always between 0 and 1023. It is essentially the same thing as modulo( num,1024) for positive values of num.
Hence the answer is D 1K
The Input Devices Used in Movie Big Hero are:
- A joystick
- medical robot
- Armored exoskeleton
- Jet-boots.
<h3>What are input device?</h3>
This is known to be a is a piece of instrument that helps gives or provide data to any information processing system.
Note that the Input Devices Used in Movie Big Hero “6” are a medical robot made by by Tadashi Hamada., Armored exoskeleton and others.
Learn more about input device from
brainly.com/question/24455519
#SPJ1
Answer
The correct answer is option(C) which is "Index".
Explanation:
Array elements can be differentiated because each element in the array have different index value.In the array all elements are of same data type, so we can not differentiated them on the basis of data type. Also an array can have same value many times, That is why we can not differentiated them on this basis. In the array elements are from any range, so its not possible to distinguish them on range. We can only distinguish elements of an array on their index value because each element have different index in the array.
Answer:
Explanation:
def cvtToSeconds(hours,minutes,seconds):
total_seconds=3600*hours+60*minutes+seconds;
return total_seconds
def readData():
hours = eval(input("Enter Hours: "))
minutes = eval(input("Enter Minutes: "))
seconds = eval(input("Enter Seconds: "))
total_seconds=cvtToSeconds(hours,minutes,seconds)
print("Total Seconds: "+str(total_seconds))
readData()