Skip to main content

Posts

Showing posts from January, 2021

difference between Computer Software and Hardware

Computer Software: Software is a collection of instructions, procedures, documentation that performs different tasks on a computer system. We can say also Computer Software is a programming code executed on a computer processor. The code can be machine-level code or the code written for an operating system. Examples of software are MS Word, Excel, Power Point, Google Chrome, Photoshop, MySQL etc. Computer Hardware: Hardware refers to the physical components of a computer. Computer Hardware is any part of the computer that we can touch these parts. These are the primary electronic devices used to build up the computer. Examples of hardware in a computer are the Processor, Memory Devices, Monitor, Printer, Keyboard, Mouse, and the Central Processing Unit. Difference between Hardware and Software: Hardware Software Hardware is a physical parts computer that cause processing of data.

how to Clear the history from Safari on your iPhone, iPad, or iPod touch

  Delete history,  storage (of secret things or computer data) , and cookies Here's how to clear information from your device: ·    To clear your history and cookies, go to Settings > Safari, and tap Clear History and Website Data.  ·    Clearing your history, cookies,  and (looking at web sites on)  data from Safari won't change your AutoFill information. ·   To clear your cookies and keep your history, go to Settings > Safari > advanced > Website Data, then tap remove All Website Data. · To visit  places/locations  without leaving a history, turn private browsing on or off. · When there's no history or website data to clear, the setting turns gray. · The setting might also be gray if you have web content restrictions set up under Content & Privacy Restrictions in Screen Time. Block cookies A cookie is a piece of data that a site puts on your device, so it can remember you when you visit again. To choose whether Safari blocks cookies, ta

Pubg

Who invented PUBG? Brendan Greene Six years ago, Brendan Greene was 37, divorced and making $300 a month. Today he is a creator of the vastly famous “battle royale” genre and one of its top games, Player Unknown's Battlegrounds, which added in an estimated $1 billion in revenue in 2018. Game's criteria: Player Unknown's Battleground or PUBG is a hostilities royale game. In a conflict royale game, a player is left with up to a hundred other gamers in a massive map. Every player is supposed to hunt for weapons, garments and medical aids scattered round the giant map and in the end warfare it out with others doing the same. History: PUBG  used to be first launched for Microsoft Windows by using Steam's early access beta program in March 2017, with a full  launch in December 2017 . The recreation used to be also released by means of Microsoft Studios for the Xbox One with the aid of its Xbox Game Preview program that same month, and formally released in September 2018

Calculator Program in C++

  A calculator   is a portable device that helps to perform simple mathematical calculations in our daily lives such as  addition, subtraction, division, multiplication , etc. In this section, we will create  calculator program in C++ using function. Using Function Lets' create a calculator program in  C++  using the  function  and  Switch   statement. 1.     #include<iostream.h>    2.     #include<stdio.h>    3.     #include<conio.h>    4.     #include<math.h>    5.     #include<stdlib.h>    6.     void  add();   7.     void  sub();   8.     void  multi();   9.     void  division();   10. void  sqr();   11. void  srt();   12. void  exit();   13. void  main()   14. {   15. clrscr();   16. int  opr;   17. // display different operation of the calculator    18. do    19. {   20. cout <<  "Select any operation from the C++ Calculator"    21.       "\n1 = Addition"