Author: Saravana Kumar

  • Essential LibreOffice Calc Shortcut Keys

    ๐Ÿ–ฅ๏ธ 1. File Management (Save, Open, Print, Close)

    • Ctrl + N โ†’ New Spreadsheet
    • Ctrl + O โ†’ Open Spreadsheet
    • Ctrl + S โ†’ Save Spreadsheet
    • F12 โ†’ Save As
    • Ctrl + P โ†’ Print
    • Ctrl + W โ†’ Close Spreadsheet
    • Ctrl + Q โ†’ Quit LibreOffice

    โŒจ๏ธ 2. Copy, Paste, Cut, Undo, Redo

    • Ctrl + C โ†’ Copy
    • Ctrl + X โ†’ Cut
    • Ctrl + V โ†’ Paste
    • Ctrl + Z โ†’ Undo
    • Ctrl + Y โ†’ Redo

    ๐Ÿ“Œ Paste Special:

    • Ctrl + Shift + V โ†’ Paste Special

    ๐Ÿ“‘ 3. Selecting & Navigating Data

    • Ctrl + A โ†’ Select All
    • Ctrl + Home โ†’ Go to First Cell (A1)
    • Ctrl + End โ†’ Go to Last Used Cell
    • Ctrl + Arrow Keys โ†’ Move to Edge of Data
    • Shift + Space โ†’ Select Entire Row
    • Ctrl + Space โ†’ Select Entire Column

    ๐Ÿ“Œ Move Between Sheets:

    • Ctrl + Page Up โ†’ Previous Sheet
    • Ctrl + Page Down โ†’ Next Sheet
    • Shift + F11 โ†’ Insert New Sheet

    ๐Ÿ“Š 4. Formatting Shortcut Keys

    ๐Ÿ“Œ Text Formatting:

    • Ctrl + B โ†’ Bold
    • Ctrl + I โ†’ Italic
    • Ctrl + U โ†’ Underline
    • Ctrl + 5 โ†’ Strikethrough
    • Ctrl + Shift + P โ†’ Open Font Formatting

    ๐Ÿ“Œ Cell Formatting:

    • Ctrl + 1 โ†’ Open Format Cells
    • Ctrl + Shift + $ โ†’ Currency Format
    • Ctrl + Shift + % โ†’ Percentage Format
    • Ctrl + Shift + # โ†’ Date Format
    • Ctrl + Shift + @ โ†’ Time Format

    ๐Ÿ“Œ Row & Column Management:

    • Ctrl + “+” โ†’ Insert Row/Column
    • Ctrl + “-“ โ†’ Delete Row/Column
    • Alt + O + C + A โ†’ AutoFit Column Width

    ๐Ÿ“ˆ 5. Data Management & Analysis

    ๐Ÿ“Œ Sorting & Filtering:

    • Ctrl + Shift + L โ†’ Apply/Remove AutoFilter
    • Ctrl + Shift + Down Arrow โ†’ Select Column Data
    • Alt + Down Arrow โ†’ Open Drop-down in Filter

    ๐Ÿ“Œ Find & Replace:

    • Ctrl + F โ†’ Find
    • Ctrl + H โ†’ Replace

    ๐Ÿ“Œ Formulas & Functions:

    • F2 โ†’ Edit Formula in Cell
    • Ctrl + ` โ†’ Show/Hide Formulas
    • Ctrl + Shift + Enter โ†’ Enter Array Formula
    • Alt + = โ†’ AutoSum

    ๐Ÿ“Œ Insert Charts & Functions:

    • F11 โ†’ Insert Chart
    • Ctrl + Shift + F3 โ†’ Define Name for Selection

    ๐Ÿš€ 6. Productivity Boosting Shortcuts

    ๐Ÿ“Œ Sheet Navigation & Special Commands:

    • Ctrl + Page Up/Page Down โ†’ Move Between Sheets
    • Ctrl + Shift + T โ†’ Restore Last Closed Tab
    • Ctrl + T โ†’ Create a Table

    ๐Ÿ“Œ Zoom & View Settings:

    • Ctrl + Mouse Scroll โ†’ Zoom In/Out
    • Ctrl + Shift + J โ†’ Show/Hide Toolbar
    • Ctrl + Shift + R โ†’ Refresh Display

    ๐Ÿ“Œ Repeat & Special Actions:

    • F4 โ†’ Repeat Last Action
    • Ctrl + Shift + ” (quote) โ†’ Copy Cell Above
    • Ctrl + Shift + + โ†’ Insert New Row/Column
    • Ctrl + Alt + V โ†’ Paste Special
  • Learn & Run Python Code Online โ€“ Best for Students & Beginners!

    Live Python Editor

    ๐Ÿ’ป Run Python Code Online

    ๐Ÿ“ค Output will appear here…
  • Python If Statement for Beginners โ€“ Learn with Fun Coding Exercises!

    ๐Ÿš€ Python is fun for all ages! Today, let’s learn about the if condition in Python with easy-to-understand examples and outputs!

    The if statement helps the computer make decisions just like we do in real life. Let’s explore with examples!

    1. Basic If Condition

    Example: Check if a number is positive.

    num = int(input("Enter a number: "))  
    
    if num > 0:  
        print("This is a positive number!")  
    

    Input:

    5
    

    Output:

    This is a positive number!
    

    ๐Ÿ”น Explanation: If the number is greater than 0, the message is printed. Otherwise, nothing happens.

    2. If-Else Condition

    Example: Check if a number is positive or negative.

    num = int(input("Enter a number: "))  
    
    if num > 0:  
        print("This is a positive number!")  
    else:  
        print("This is a negative number!")  
    

    Input:

     '-3
    

    Output:

    This is a negative number!
    

    ๐Ÿ”น Explanation: If the number is greater than 0, it prints “positive”; otherwise, it prints “negative”.

    3. If-Else Condition

    Example: Check if a number is positive, negative, or zero.

    num = int(input("Enter a number: "))  
    
    if num > 0:  
        print("This is a positive number!")  
    elif num == 0:  
        print("This is zero!")  
    else:  
        print("This is a negative number!")  
    

    Input:

     0
    

    Output:

    This is zero!
    

    ๐Ÿ”น Explanation: If the number is greater than 0, it prints “positive”. If it is 0, it prints “zero”. Otherwise, it prints “negative”.

    4. Nested If Condition

    Example: Check if a person is eligible to vote

    age = int(input("Enter your age: "))  
    
    if age >= 18:  
        if age >= 60:  
            print("You are a senior citizen and can vote!")  
        else:  
            print("You can vote!")  
    else:  
        print("You are too young to vote!")  
    
    

    Input:

    65

    Output:

    You are a senior citizen and can vote!
    

    ๐Ÿ”น Explanation: If the number is greater than 0, it prints “positive”. If it is 0, it prints “zero”. Otherwise, it prints “negative”.

    5. Even or Odd Number Check

    num = int(input("Enter a number: "))  
    
    if num % 2 == 0:  
        print("This is an even number!")  
    else:  
        print("This is an odd number!")  
    

    Input:

    7

    Output:

    This is an odd number!
    

    ๐Ÿ”น Explanation: If the number is divisible by 2, it’s even. Otherwise, it’s odd.

    6.Check If a Year is a Leap Year

    year = int(input("Enter a year: "))  
    
    if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):  
        print("This is a leap year!")  
    else:  
        print("This is not a leap year!")  
    

    Input:

    2024

    Output:

    This is a leap year!
    

    ๐Ÿ”น Explanation: A year is a leap year if it is divisible by 4 but not by 100 unless also divisible by 400.

    7. Check If a Person Can Enter a Theme Park Ride

    height = int(input("Enter your height in cm: "))  
    
    if height >= 120:  
        print("You can go on the ride!")  
    else:  
        print("Sorry, you are not tall enough for the ride. ")  
    

    Input:

    110

    Output:

    Sorry, you are not tall enough for the ride. 
    

    ๐Ÿ”น Explanation: If the height is 120 cm or more, the person can go on the ride. Otherwise, they cannot.

    8. Check If a Student Passes the Exam

    Example: Check if a person is eligible to vote

    score = int(input("Enter your score: "))  
    
    if score >= 50:  
        print("Congratulations! You passed the exam! ")  
    else:  
        print("Sorry, you failed. Try again next time! ")  
    

    Input:

    45

    Output:

    Sorry, you failed. Try again next time!
    

    ๐Ÿ”น Explanation: If the score is 50 or more, the student passes; otherwise, they fail.

    4. Check If a Number is Between Two Values

    num = int(input("Enter a number: "))  
    
    if 10 <= num <= 20:  
        print("Your number is between 10 and 20!")  
    else:  
        print("Your number is outside the range!")  
    

    Input:

    15

    Output:

    Your number is between 10 and 20!
    

    ๐Ÿ”น Explanation:The condition 10 <= num <= 20 checks if the number falls within this range.

    10. Simple Yes/No Decision Game

    choice = input("Do you like Python? (yes/no): ").lower()  
    
    if choice == "yes":  
        print("That's awesome! Python is great! ")  
    else:  
        print("No worries! Maybe you'll like it someday! ")  
    

    Input:

    yes

    Output:

    That's awesome! Python is great!
    

    ๐Ÿ”น Explanation: The program asks for input and checks if the answer is “yes” or “no”.

    Final Thoughts: Why If Condition is Important?

    โœ… The if condition allows us to make decisions in Python, just like in real life!
    โœ… You can use if, if-else, if-elif-else, and nested if conditions to create smart programs!
    โœ… These examples help beginners, students, and even adults learn Python easily!

    ๐Ÿš€ Want more fun Python lessons? Comment below and share this post with friends! ๐Ÿ˜Š Happy Coding! ๐Ÿ๐Ÿ’ป

  • SQLite Tutorial in Tamil โ€“ SQLite Browser Installation & SQL Queries

    ๐Ÿš€ In this video, you will learn how to use SQLite Browser and write SQL queries step by step in Tamil. Perfect for beginners!

    ๐Ÿ”น Topics Covered:
    โœ”๏ธ How to Install SQLite Browser
    โœ”๏ธ How to Create a Database & Tables
    โœ”๏ธ Insert, Update, Delete Queries
    โœ”๏ธ Using SQL Operators (>, <, =, AND, OR)
    โœ”๏ธ Group By & Order By Usage
    โœ”๏ธ Aggregate Functions (SUM, COUNT, AVG, MAX, MIN)

    ๐Ÿ“Œ Watch the full video:
    ๐ŸŽฅ

    How Download and Install SQLite Browser
    You can download the latest version of SQLite Browser from the official website:

    ๐Ÿ‘‰ Download SQLite Browser OR, you can search for SQLite Browser on Google:

    1. ๐Ÿ‘‰ Follow the Steps 1 to 11 to Install Sqlite Browser
    เฎ•เฏ€เฎดเฏ‡ เฎ•เฏŠเฎŸเฏเฎ•เฏเฎ•เฎชเฏเฎชเฎŸเฏเฎŸเฏเฎณเฏเฎณ 1 เฎฎเฏเฎคเฎฒเฏ 11 เฎตเฎฐเฏˆเฎฏเฎฟเฎฒเฎพเฎฉ Step เฎ เฎชเฎฏเฎฉเฏเฎชเฎŸเฏเฎคเฏเฎคเฎฟ SQLite Browser เฎจเฎฟเฎฑเฏเฎตเฎฒเฎพเฎฎเฏ.

    If you found this helpful, Like, Comment, and Subscribe for more tutorials!
    ๐Ÿ“ข Share this with your friends!

  • Day 1: Introduction to SQLite

    ๐ŸŽฏ Objective

    Learn what SQLite is, why itโ€™s useful, and how to use it. By the end of this lesson, you will have created your first SQLite database!


    What is SQLite? ๐Ÿ“ฆโœจ

    SQLite is a database, which is like a container for storing and organizing information.

    ๐Ÿ› ๏ธ What Makes SQLite Special?

    • ๐Ÿšซ No server needed: Unlike other databases, SQLite doesnโ€™t need extra software or servers.
    • ๐Ÿ“‚ All in one file: Everything is saved in a single file on your device.
    • ๐ŸŒŸ Easy to use: Perfect for beginners and small projects.

    Why Use SQLite? โœ…๐ŸŽ‰

    1. ๐Ÿ› ๏ธ Simple: Just download it and start using it.
    2. ๐Ÿ“ Lightweight: Small but powerful.
    3. ๐Ÿšš Portable: Easily move the database file anywhere.
    4. โšก Fast: Ideal for small to medium-sized tasks.

    Where Is SQLite Used? ๐ŸŒ

    • ๐Ÿ“ฑ Mobile Apps: Stores data like app settings or game progress.
    • ๐ŸŒ Web Browsers: Chrome and Firefox use SQLite for saving history and bookmarks.
    • ๐Ÿ› ๏ธ Smart Devices: Found in smart TVs, washing machines, and other devices.

    What is SQL? ๐Ÿ’ฌโœจ

    SQL stands for Structured Query Language, the language used to talk to databases.

    Hereโ€™s what you can do with SQL:

    • ๐Ÿง Ask questions: “Show me the list of students in a class.”
    • โž• Add new data: “Add a new student to the database.”
    • โœ๏ธ Update data: “Change a studentโ€™s phone number.”
    • โŒ Delete data: “Remove a student from the list.”

    Hands-On Activity ๐Ÿ–๏ธ๐Ÿ’ป

    Letโ€™s set up SQLite and create your first database!

    Step 1: Download SQLite ๐Ÿ“ฅ

    For Windows 10 Follow the Steps :

    1. Press Win + R, type msinfo32, and hit Enter.

    2) Look for System Type:
    If it says x86-based PC, your system is 32-bit.
    If it says x64-based PC, your system is 64-bit.

    So My System says x64-based PC, My system is 64-bit.

    3) Visit the official SQLite website.

    4) For 64-bit Windows (x64)> Right Click sqlite-tools-win64-3480000.zip> Save into D:\ (or) E:\ your choice


    5) Extract the Folder as per below screen


    6) Right Click the following folder Rename it named sqlite

    7) Now Folder Path : d:\sqlite

    8) Now Press Windows Key + S > Type environ

    9) Click Here Edit the System Environment Variable

    10)Click Here Environment Variables


    11) Click Path 12) Click Edit

    13) Click New

    14) Enter D:\sqlite > Click OK in Edit Environment Variable Screen

    15) Again OK in Environment Variables Screen
    16) Again OK in System Properties Window

    17) Now Press Win Key + R (to Open Run Window)

    18)To Check SQLite Installation โœ… :
    Type CMD and Press Enter or Click OK to Open Command Prompt

    19) Now Type: sqlite3 in Command Prompt
    If you see sqlite> youโ€™ve installed SQLite successfully! ๐ŸŽ‰
    to Exit SQLite by typing: .exit

    20) To Create Your First Database ๐Ÿ“‚

    • Now Create a New Folder named mydb in D:\ or E:\ or F:\ your choice any drive

    21) Now go to command prompt >

    22) Next Enter sqlite3 myschool.db (This line create the Database)

    23)
    To Create Table follow the steps;;

    sqlite> create table students(id,name,age); (Press Enter)

    To Insert Records
    sqlite> insert into students(id,name,age) values(101,’Raja’,20); (Press Enter)

    sqlite> insert into students(id,name,age) values(102,’Kumar’,21);

    To View Records

    sqlite> select * from students;


    Key Points to Remember ๐Ÿง โœจ

    • SQLite is a simple, portable database system that works without a server.
    • Itโ€™s lightweight and perfect for small projects like apps or personal data.
    • SQL is the language we use to give instructions to the database.

    ๐ŸŽ‰ By the end of today, youโ€™ve created your first SQLite database. Great job! Keep practicing and exploring more about SQLite!