Informatics Practices
Mention two health concerns associated with excessive use of Digital Devices.
Computing Safety & Ethics
1 Like
Answer
The two health concerns associated with excessive use of digital devices are as follows:
Impact on Hearing — Listening to loud music for over 15 minutes can cause hearing damage. Using headphones for long periods increases bacteria in the ears by over 700 times.
Impact on Bones and Joints — Technology affects posture due to prolonged sitting and repetitive movements, leading to muscle and joint strain. Repetitive Strain Injuries (RSIs) affect muscles, nerves, tendons, ligaments, and joints.
Answered By
1 Like
Related Questions
Explain the concept of browser cookies and mention one advantage of using them.
Define the term Primary Key in a database. Explain how it is different from a Candidate Key.
Sneha is writing a Python program to create a DataFrame using a list of dictionaries. However, her code contains some mistakes. Identify the errors, rewrite the correct code, and underline the corrections made.
import Pandas as pd D1 = {'Name': 'Rakshit', 'Age': 25} D2 = {'Name': 'Paul', 'Age': 30} D3 = {'Name': 'Ayesha", 'Age': 28} data = [D1, D2, D3) df = pd.Dataframe(data) print(df)
Complete the given Python code to get the required output (ignore the dtype attribute) as
Output:
Tamil Nadu Chennai Uttar Pradesh Lucknow Manipur Imphal
Code:
import _______ as pd data = ['Chennai','_______','Imphal'] indx = ['Tamil Nadu','Uttar Pradesh','Manipur'] s = pd.Series(_______, indx) print(_______)