Skip to main content

Software Vs Hardware

Software Vs Hardware

Hardware is a physical part of a computer.

Software which cannot be touched,can perform tasks on the computer.

Software works on a hardware.


For Example ATM machine,

ATM machine physical parts are Hardware.

The working functionality of an ATM (like displaying account balance,etc) is software. 


Examples of software products are 

  • Microsoft suite of products (Office, Excel, Word, PowerPoint, Outlook, etc.)

  • Internet browsers like Firefox, Safari, and Chrome.

 

Developing a Software Program

Well, Software is a task which works on hardware.

And hardware can understand only binary language (ex:- 10101) which can be formed by power.

Binary language(Machine Code) is known as a low-level language.

For humans it's very tough to write every task in binary language.

 

Then mid-level languages are created which can be understood by the user and as well as the system.

 

Then High-level languages came with more user friendly,The programming languages like c++, python etc.

Where syntax is more likely with english words.

Task/Program is compiled and run on a system, which internally converts into binary form and runs on system.

 

       



Comments

Post a Comment

Popular posts from this blog

Software Development Life Cycle

  Hi Friends!! Interested in developing software projects? Need a website for your business? Want to develop an app of your idea? Yes!. So before developing, let us understand what are the different stages to develop software. Below 7 stages will help in developing a quality software product. Requirements Gathering  Analysis Design Coding Testing Implementation Maintenance Requirements gathering If you want to make your product. Understand what product you want to develop. Plan the product. Gather the content required for making the product. Ex: Want to develop a website for school. Plan the website, like website should contain pages for home, about, courses, gallery, contact. Get the content of mission, vision, gallery, etc of school. If you are working for a client(who needs software) product, then understand the client requirement. Ask questions to understand the product like what functionalities should the product contain?collect all his requirements and have a basic plan ...

C programming with practical Questions

Basics C language is one of the powerful languages. Below are some of the features of C language. Ø   Reliability Ø   Portability Ø   Flexibility Ø   Interactivity Ø   Modularity Ø   Efficiency and Effectiveness   1) C program to calculate Simple Interest. Given principal (amount), time and interest rate by user, calculate simple interest based on given rate of given time period. 2) Ask the employee details   Name   initial---(surname only single letter, take datatype as char)   Age   Salary-(take datatype double)   expected expenditure   actual expenditure   and   display name and remaining balance of salary.    Operators The symbols which are used to perform logical and mathematical operations in a C program are called C operators. These C operators join individual constants and variables to form expressions. Operators...

Frontend Vs Backend Coding

Frontend Vs Backend Coding Let us understand how this development is done.Development is divided into two parts frontend development and backend development. The front end, also called “ client-side ” programming, is what happens in the browser. It’s everything the user sees and interacts with. The back end, also called “ server-side ” programming, happens on the server and the database. It’s the machinery that works behind the scenes. developing a website Front-end Development Part of a website that the user interacts. Everything that users experience directly: text colors and styles, images, graphs and tables, buttons, colors, and navigation menu. HTML, CSS, and Javascript are the languages used for Front End development. HTML ( HyperText Markup Language) adds content on the web page with the help of HTML elements CSS  (Cascading Style Sheets)  adds styles to HTML elements Javascript adds behavior in the webpage   Ex: calculate, manipulate, and validate d...