Answer:
The solution code is written in Python
- def largerThanN(myList, n):
- output = ""
-
- for x in myList:
- if(x > n):
- output += str(x) + " "
-
- print(output)
-
- l = [5, 12, 11, 4, 56, 32]
- n = 15
- largerThanN(l, n)
Explanation:
Firstly, create a function largerThanN that accepts two arguments, a list (myList) and a number (n) (Line 1).
Next, create a output variable to hold the string of numbers in the list that are greater than the input number n (Line 2).
Create a for loop to traverse through each number in the list and then check if the current x is bigger than n. If so concatenate the x to output string along with a single space " " (Line 4 -6)
After the loop, print the output string (Line 8)
We test the function by using a sample list and n = 15 (Line 10 - 12). The program will display 56 32 .
Answer:
1 . Pixel: Smallest element of a picture on a computer display.
2 . Peripheral: A device that is not central to the operations of a computer.
3 . Small computer system interface: Interface for computer device that has its own control function
4 . Input: Devices that take information from the computer user and deliver it to the processor
5 . electrostatic discharge: The instantaneous flow of electricity between two objects when they touch
6 . storage: Devices like hard drives or floppy disks that store data .
7 . Integrated drive electronics: Standard that addresses the physical connection and transfer speed between a computer and a peripheral device
8 . Bluetooth: A wireless technology that uses radio waves to transmit data across short distances.
9 . Output: Devices that take information from the processor and deliver it to the computer user
10 . Megabits per second: Measurement of the speed of data transfer
Advantages of technology in agriculture include expediting crop production rate and crop quantity, which in turn reduces costs of production for farmers and food costs for consumers, and even makes crops more nutritious and livestock bigger and meatier.
The excessive use of chemicals by the help of machines reduces the fertility of the land.Lack of practical knowledge the farmers cant handle the machines properly.While the cost of maintenance is very high.Overuse of machines may lead to environmental damage.It is efficient but has many side effects and drawbacks.
You are not putting the question but I can guess that it asking for the CD duration. To answer this question, you need to convert the CD capacity unit(783.216 megabyte) into megabits which were used for the cd read rate (1.4 megabits/s). The calculation would be:
CD duration: CD capacity / rate= 783.216 megabytes *(8 megabits/megabyte) / (1.4 megabits /s)= 4475.52 second or 74.6 minutes