Answer:
752.71 kilobytes
Explanation:
Given ;
956-pixel x 1290-pixel
Shades of gray, = 32
Bit depth (n) = 2^n
32 = 2^5
Bit depth, n = 5 bits / pixel
The size of display memory :
Pixel dimension * n
(956 Pixel * 1290 pixel) * 5 bits /pixel
= 6166200 pixel * bits / pixel
= 6166200 bits
Converting bits to kilobytes :
1 bit = 1/8 bytes
1 byte = 1/1024 kilobytes
Hence,
1 bit = 1/(8 * 1024) kilobytes
1 bit = 1/8192 kilobytes
6166200 bits = (1/8192 * 6166200) kilobytes
= 752.7099609375 kilobytes
= 752.71 kilobytes
So my teacher asked us to predict who would win in a death match, and we could choose the two characters, so Alastor from Hazbin Hotel vs Blackhat from villinous, who would win?
Answer:
I think alastor from Hazbin Hotel.
Answer:
alastor
Explanation:
i mean alastor is a demon and blackhat we dont know if he is a demon or not but i mean alastor would win he took down a flying ship that was trying to kill them
Give two examples of search
Answer:
goo.gle and ya.hoo
Explanation:
This is your data.
A= [5, 10, 15]
B = [2, 4, 6]
C = ['dog','cat', 'bird']
You can implement an array of this data with
Answer:
This is your data.
A = [5, 10, 15]
B = [2, 4, 6]
C = ['dog','cat', 'bird']
You can implement an array of this data with
either by using lists or by using the array module
ALSO
This is your code.
>>> A = [ 'dog', 'red']
>>> B = [ 'cat', 'blue']
>>> C = [ 'fish', 'green']
You can implement an array of this data by using
by using lists but not by using the array module
Explanation:
Edge2020
A= [5, 10, 15], B = [2, 4, 6], C = ['dog','cat', 'bird']. You can implement an array of this data either by using lists or by using the array module.
What is an Array?An array is a type of data structure used in computer science that holds a set of elements that are all uniquely recognized by at least one array index or key. Each element of an array is recorded such that a mathematical formula may be used to determine its location from its index tuple.
Indexed arrays, multidimensional arrays, and associative arrays are the three types of arrays.
A procedure called indexing selects a subset of values from an array. A value's position inside an array is indicated by its index. The location of the value in an array differs from the value itself.
To read more about Array, refer to - https://brainly.com/question/14375939
#SPJ2