Wednesday, August 9, 2017

Have you ever wondered why there are two options sleep and hibernate? I will explain here the differences.

There are two options other than shutting down your computer .

1.Sleep
2.Hibernate

Sleep will store all the applications which are running onto RAM. As we are storing on RAM,as it is a volatile memory it will consume power as normal and when we don't have power(in case of laptop battery)we will loose our data.

Hibernate will store all applications related data onto hard disk and shuts down the computer. In this mode power consumption is almost same as when we shutdown the computer. When we turn on the computer all our data is retrieved during booting. If we are having an SSD it is good to use hibernate over Sleep as power consumption is less.

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...