Skip to main content

Some special shortcut keys are used in MS WORD এ ব্যবহৃত কয়েকটি বিশেষ শর্টকাট কী

Some special shortcut keys are used in ms word

ms word এ ব্যবহৃত কয়েকটি বিশেষ শর্টকাট কী

ms word special shortcut keys

F1 = Help বা Office Assistant পাওয়া যায়

F2 = text বা Graphyics স্থানান্তর করে

F3 = Auto Text Insert হয়

F4 = শেষ কাজটির পুনরাবৃত্তি হয়

F5 = Edit মেনুর Go To কম্যান্ড পাওয়া যায়

F6 = নতুন ফ্রেমে যাওয়া যায়

F7 = Tools মেনুর Spelling কম্যান্ড পাওয়া যায়

F8 = কোনো Selection কে বাড়ানো যায়

F9 = Select করা field গুলিকে Update করা যায়

F10 = মেনুবার Active হয়

F11 = পরের Field টিতে যাওয়া যায়

F12 = File মেনুর Save As কম্যান্ড পাওয়া যায়

Ctrl + Shift + F = Font পাল্টানো যায়

Ctrl + Shift + P = Font সাইজ পাল্টানো যায়

Ctrl + Shift + > = Font সাইজ বৃদ্ধি হয়

Ctrl + Shift + < = Font সাইজ কমিয়ে হয়

Ctrl + ] = Font সাইজ 1 Point বাড়ে

Ctrl + [ = Font সাইজ 1 Point কমে

Ctrl + D = Format মেনুর Font কম্যান্ড পাওয়া যায়

Ctrl + F3 = অক্ষরগুলির case পরিবর্তন হয়

Ctrl + Shift + A = প্রতিটি অক্ষর capital letter হয়

Ctrl + B = লেখাকে bold করার জন্য

Ctrl + I = Italics আকার দেওয়ার জন্য

Ctrl + U = Underline হয়

Ctrl + Shift + W = শুধুমাত্র শব্দগুলি Underline করা হয়

Ctrl + Shift + D = ডাবল  Underline হয়

Ctrl + Shift + K = ছোটো Capital Letter হয়


Comments

Popular posts from this blog

Normalization Types in DBMS

Normalization Types in DBMS First Normal Form (1NF) A relation will be 1NF if it contains an atomic value.  It states that an attribute of a table cannot hold multiple values. It must hold only single-valued attribute. First normal form disallows the multi-valued attribute, composite attribute, and their combinations. Example: Relation EMPLOYEE is not in 1NF because of multi-valued attribute EMP_PHONE. EMPLOYEE table: EMP_ID EMP_NAME EMP_PHONE EMP_STATE 14 John 7272826385, 9064738238 UP 20 Harry 8574783832 Bihar 12 Sam 7390372389, 8589830302 Punjab The decomposition of the EMPLOYEE table into 1NF has been shown below: EMP_ID EMP_NAME EMP_PHONE EMP_STATE 14 John 7272826385 UP 14 John 9064738238 UP 20 Harry 8574783832 Bihar 12 Sam 7390372389 Punjab 12 Sam 8589830302 Punjab Second Normal Form (2NF) In the 2NF, relational must be in 1NF.  In the second normal form, all non-key attributes are fully functional dependent on the primary key  Example: Let's assume, a school can ...

creating object invoking various methods

Define a class named College as described below:  Data Members: 1) collegeName 2) principalName 3) place Methods : 1) constructor. 2) display() to display the collegeName, principalName, and the place. Test this class by creating an object and then invoking the various methods. class collegeName{  public String collegeName;  public String PrincipalName;  public String place;  public collegeName(){  }  public void display(){  System.out.println("College name is "+this.collegeName);  System.out.println("Principal name is "+this.PrincipalName);  System.out.println("Place is "+this.place);  }  }  class displayName{  public static void main(String[] args) {  collegeName c = new collegeName();  c.collegeName="Siliguri Institute of Technology";  c.PrincipalName="Dr. Mithun Chakraborty";  c.place="Siliguri";  c.display();  }  } OUTPUT: College name is Siliguri Institute of Technology Princip...

Control Key Shortcuts

Control Key Shortcuts (Image by - Sharma Guides | Subham232330) CTRL+A = All Select CTRL+B = Bold CTRL+C = Copy CTRL+D = Duplicate CTRL+E = Alignment Center Side CTRL+F = Find CTRL+G = Group & Go To CTRL+H = Replace CTRL+I = Italic CTRL+J = Justify CTRL+K = Hyperlink CTRL+L = Alignment Left Side CTRL+M = New Slide CTRL+N = New Document & Page CTRL+O = Open CTRL+P = Print CTRL+Q = Quit CTRL+R = Alignment Right Side CTRL+S = Save CTRL+T = New Tab CTRL+U = Underline CTRL+V = Paste CTRL+W = Close The Window CTRL+X = Cut CTRL+Y = Redo CTRL+Z = Undo CTRL+Esc = Windows Start Menu CTRL+Tab = Switch between open tabs in the browser or other tabbed programs. CTRL+Shift+Tab = Will go backwards (right to left). CTRL+Delete = Delete Next Word. CTRL+Backspace = Delete Previous Word. CTRL+PgDn = Next Tab CTRL+PgUp = Previous Tab CTRL + ← = Previous Word CTRL + → = Next Word CTRL + Alt + ↑ = Rotate Screen Right Side C TRL + Alt + ↓ = Rotate Screen upsid...