Visual display unit is an example of
Devices which are used to receive data from central processing unit are classified as
Type of integrated circuit which consists of arithmetic unit, control unit and some main store is called a
If any instruction consist of any arithmetic operation, data is transferred to
If a quantity in device is treated as different set of separate values, device is said to be
Guided media provides a conduit from one device to another, includes
'main store' of CPU is also called
Material on which data is stored or an input/output is classified is termed as
Devices that accepts data from outside computer and transfer into CPU are called
What will be the output?values = [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0]for lst in values: for element in lst: if v > element: v = element print(v)