Information about resetting and configuring Mobile phones (Java, Android, Symbian etc), educational articles especially for programming in C, C++ and Java and more about Computers and operating systems
Do you want to hibernate your Windows computer? Are you searching for a way to enable hibernate option in your computer. Here we will tell you a simple trick to make a hibernation shortcut on your desktop. To enable hibernation in your Windows computer (Windows 7, Windows 8 or Windows 10), simply follow the given instructions:
Right click on Desktop
Select New -> Shortcut
Type shutdown /h in the given textbox
Click Next button
Type a name for the shortcut (eg:hibernate now)
Click Finish button.
Now a new shortcut will appear on your Windows desktop. Open it to hibernate the computer immediately.
You can make a shortcut file which when opened, instantly shuts down Windows Operating System. This works in Windows 7, Windows 8 and Windows 10. Here we will see how to create a shutdown shortcut in Windows. To make a shutdown shortcut on desktop, follow the given instructions.
Right click on desktop.
Select New-> Shortcut
Type shutdown /p in the text box
Click Next button
Give a name for the shortcut, like 'Shutdown' or 'Turn off'.
Now Click Finish.
No you will get a shortcut file on desktop
If you open this shortcut file, your computer will shutdown instantly. You will lose your unsaved works. So close all applications properly before shutdown.
You can create a shortcut file which when opened, instantly logs out or sign out the current user account from Microsoft Windows Operating System. This works in Windows 7, Windows 8 and Windows 10. To make a Log out shortcut on desktop, follow the given instructions.
Right click on desktop.
Select New-> Shortcut
Type shutdown /l in the textbox
Click Next button
Give a name for the shortcut, like 'logoff', 'logout', 'signout' etc.
Now Click Finish.
No you will get a shortcut file on desktop
If you open this shortcut file, you will be logged out from your Windows computer. Remember, it is not shutting down. Just logging out. But, you will lose your unsaved works. In another post, we will see how to make shutdown, restart and hibernate shortcuts in windows.
In this post we will see how to setup autorun on a CD or Pen drive using Autorun.inf file. If you are planning to create a CD with autorun (launch a file automatically on insertion of disc), this post will be helpful for you. If you are not much familiar with AutoRun, read the following post, to get an idea about autorun feature: What is AutoRun or AutoPlay and How to Set it?
In HTML (Hyper Text markup Language), <table> tag is used to create tables. Table is basically meant to represent data in tabular form. But people also use tables to design webpages, especially when they want to divide the web pages into some equal blocks. Now we will start with the basics of table tag. The table starts with a <table> tag and ends with the HTML tag </table>. Whatever comes in between <table> and </table> is either the data in the table or further HTML codes to design the table. These two tags help only to inform the starting and ending of the table.
To make a text superscript or subscript in a webpage using HTML language, there are two tags provided in the language.
Superscript
To make a text or some characters superscript, the HTML tag <sup> is used. For example, suppose we have to display 2n+1. To display it, we have to use the following code:
2<sup>n+1</sup>
We have to enclose the characters to be made superscript in <sup> and </sup>