Skip to main content

Posts

AALIYA COMPUTER INSTITUTE - ONLINE COMPUTER COURSE

 
Recent posts

Kunvarbai Mameru Yojna

 

Autocad Useful 2D - 3D Commands and Shortcut key

  Ctrl + N - New Drawing: Opens a new, blank drawing file. Ctrl + O - Open Drawing: Opens an existing drawing file. Ctrl + S - Save Drawing: Saves the current drawing. Ctrl + P - Plot: Opens the Plot dialog for printing or plotting the drawing. Ctrl + Z - Undo: Reverses the last command or action. Ctrl + Y - Redo: Reverses the Undo command. Ctrl + C - Copy: Copies selected objects to the clipboard. Ctrl + X - Cut: Cuts selected objects to the clipboard. Ctrl + V - Paste: Pastes the contents of the clipboard into the drawing. Ctrl + A - Select All: Selects all objects in the current drawing. Ctrl + Shift + C - Copy with Base Point: Copies selected objects with a specified base point. Ctrl + Shift + V - Paste to Original Coordinates: Pastes copied objects to their original coordinates. Ctrl + Shift + K - Blocks Palette: Opens the Blocks palette for inserting and managing blocks. Ctrl + 1 - Properties Palette: Opens the Properties palette for viewing and modifying object pro

CCC Exam & Competetive Exam Computer Material & Keyboard Shortcut Key - by Sama Soyab - ACI BHUJ

Search Topic: ms word shortcut keys, ms word shortcut keys a to z, ms word shortcut keys pdf, ms word shortcut keys pdf 2023, ms word shortcut key for subscript, ms word shortcut key to change font size, ms word shortcut key for accept and move to next, ms word shortcut key for find and replace, ms word shortcut keys in hindi, ms word shortcut key in hindi pdf, ms word shortcut key pdf, ms word shortcut key in hindi, ms word shortcut key for paragraph, ms word shortcut key in hindi typing, ms word shortcut keys a to z pdf, ms word shortcut keys all, ms word shortcut keys all pdf, ms word shortcut keys a to z in hindi, ms word shortcut keys and functions, ms word shortcut keys activity, ms word shortcut keys answer, ms word shortcut keys and their functions, ms word shortcut keys alphabetical order, all shortcut keys of ms word, select shortcut key apply auto format in ms word, save as shortcut key in ms word, what are the shortcut keys in word, ms word bullets shortcut key, ms word

Build Your Dream House - in Bhuj more detail - Ahesan Sumra - 98796 87217

 

About Java important topics theory and practical with example

 About Java important topics theory and practical with example Sure! Here are some important topics in Java along with a brief explanation and practical examples: 1. Object-Oriented Programming (OOP):    Java is an object-oriented language, and understanding OOP principles is crucial. Concepts like classes, objects, inheritance, polymorphism, and encapsulation are essential.    Example:    ```java    class Animal {        void sound() {            System.out.println("Animal makes a sound");        }    }    class Dog extends Animal {        void sound() {            System.out.println("Dog barks");        }    }    public class Main {        public static void main(String[] args) {            Animal animal = new Dog();            animal.sound(); // Output: Dog barks        }    }    ``` 2. Java Basics:    Learn about data types, variables, operators, control structures (if-else, loops), and basic input/output.    Example:    ```java    public class BasicsExample {