Skip to main content

Posts

Showing posts from June, 2021

System Software | Device Drivers | Part - 2

Device Driver is a software & this is a type of system software. Driver are need for all the hardware installed in the computer because these drivers help to connect the hardware to the operating system, Without drivers the operating system will not give any commands. "The Driver acts like a bridge between the O/S & Hardware" Which Devices need Drivers : All hardware devices that are unknown to the operating system or Components that the operating system does not understand, drivers are need for them. Some device drivers come with hardware which is available in the CD & Some hardware requires drivers to be downloaded from the internet.  List of hardware device that require drivers : Card Reader Modem Motherboard Chipset Printer Web Cam Wi-fi Adapter Scanner Controller USB Devices Video Card Sound Card Which Devices not need Drivers : Nowadays, many drivers come in the operating system, due to which some hardware does not require drivers tha...

System Software | Device Drivers | Part - 2

Device Driver is a software & this is a type of system software. Driver are need for all the hardware installed in the computer because these drivers help to connect the hardware to the operating system, Without drivers the operating system will not give any commands. "The Driver acts like a bridge between the O/S & Hardware" Which Devices need Drivers : All hardware devices that are unknown to the operating system or Components that the operating system does not understand, drivers are need for them. Some device drivers come with hardware which is available in the CD & Some hardware requires drivers to be downloaded from the internet.  List of hardware device that require drivers : Card Reader Modem Motherboard Chipset Printer Web Cam Wi-fi Adapter Scanner Controller USB Devices Video Card Sound Card Which Devices not need Drivers : Nowadays, many drivers come in the operating system, due to which some hardware does not require drivers tha...

Html Head tag | Script Tag & Link Tag | Part - 2

The last part of Html Head Tag we discuss about the head tag and use of style tag and title tag, these tags are used in the Head Tag. In This part of we discuss about the Script Tag and Link Tag. let's starts! S cript Tag | The Script Element  | J ava S cript is a programming language and a JavaScript code insert between the s cript tag. JavaScript is used to perform function in website. Quora Script tag placed inside the head section and body section of HTML web page.  We can insert many numbers  of script element in the head & body. In the html page script tag identifies a block of script code , Java script function can be executed when " called ". As the user clicks the button and the function of the button performs its function. We can include the JavaScript directly in the script tag or we can also add JavaScript via URL in the script tag. JavaScript files saved with the .js file extension. J avaScript in Head :         ...