Skip to main content

Computer shortut keys

 

Computer shortut keys


  Computer shortcut keys that provide alternative way to access functions directly in computer system.

1.ctrl+A  :Select all text or files

2.ctrl+C :To copy text or file

3.ctrl+V :To paste text or files

4.ctrl+O :To open a File

5.ctrl+B :To change selected text to Bold

6.ctrl+X :To cut the text or file

7.ctrl+I :To change selected text to Italic

8.ctrl+F :To find a file or document

9.ctrl+S :To save the file or document

10.ctrl+U : To change selected text to underlined

11.ctrl+D:To save website as bookmark in internet Browsers

12.ctrl+N :To open a new document or new tab in internet browser

13.ctrl+Y :Redo last action

14.ctrl+Z :Undo last action

15.ctrl+K :To insert a hyperlink for text document

16.ctrl+Home:To goes to beggining of the document or page

17.ctrl+End :To goes to end of the document or page

18.ctrl+Esc: To open start menu

19.ctrl+Shift+Esc :To goes to Task manager


Note:
      Dear Learner!! Don't Stop Learning Continue to Learn all Topics in our  blog😋.

 

Popular posts from this blog

Shutdown, Restart, Logout System Using Python GUI

  Shutdown, Restart, Logout System Using Python GUI:        We Can Shutdown, Restart, Logout A computer Using Python GUI.  Python with tkinter is the fastest and easiest way to create the GUI applications. Creating a GUI using tkinter is an easy task. Step-1:      importing modules          from tkinter import *     import os Step-2:      User Define Functions for execute Shutdown, Restart, Logout          def shutdown():           return os. system("shutdown -s -t 1")      def restart(): return os. system("shutdown -r -t 1")      def logout(): return os. system("shutdown -l") Step-3:      Create tkinter Object and setup geometry    master=Tk()     master. geometry("200x200") Step-4:     Setting Background to grey    master.c onfigure(bg='light gr...

Python Program to Convert Hectare to Acre

             Python Program to Convert Hectare to Acre       Generally 1 hectare = 2.471 acres. It is used find the area of the lands or farming. It is comes under unit conversions.       Input:          1      Out put:           2.471044            Explanation :                    Generally 1 hectare = 2.471044 acres                       Code:          hectare=int(input())           print(hectare*2.471044)           Note:     Hello Guys, Don't Stop Learning keep Going..............

Python Program to check given number is Prime Number or Not

     Python Program to check given number is Prime Number or Not       A number Greater than 1 which has only two factors. They are 1 and itself. In computer science prime number concept is very interesting and most important in cryptography.          Input:          7      Out put:          prime         Explanation :           Factors for 7 is 1 and itself then it is prime number.      Code:         x=int(input()) c=0 for i in range(2,x):      if(x%i==0):           c=1           break if(c==1):      print("not a prime") else:      print("prime") Note:     Hello Guys, Don't Stop Learning keep Going..............