Our Regular Courses

Explore Our Weekday IT Courses

Showing 1–6 of 6 results
50.00% OFF Regular Course

Computer Basics -Expert

Course Name: ECC Computer Course (New Syllabus)
Course Type: Basic to Advanced Computer Training
Mode: Offline / Classroom Training
Duration: As per Institute Plan
Eligibility: Students, Job Seekers, Beginners, Working Professionals

Course Modules / Topics Covered

  1. Introduction to Computer & Basic Concepts
  2. Operating System
  3. Basic Computer Hardware
  4. Word Processing (MS Word)
  5. Spreadsheets (MS Excel)
  6. Presentations (MS PowerPoint)
  7. Database Management Systems
  8. Cyber Security
  9. PC Maintenance, Security & Troubleshooting
  10. Networking and Troubleshooting
  11. Latest Trends in IECT & e-Governance
  12. Application of Digital Financial Services
  13. Electronic Mail – A Detailed View
  14. Introduction to Multimedia
  15. HTML Programming Basics
  16. Soft Skills
Class Duration:
1 hour per day
Course Duration:
6 months
Eligibility: N/A
50.00% OFF Regular Course

Website Designing Course (HTML, CSS, JavaScript + Git & GitHub)

📌 Learning Objectives

Students will:

  • Understand how websites work (Frontend Basics)
  • Learn HTML to build website structure
  • Learn CSS for designing and styling web pages
  • Use basic JavaScript for interactivity
  • Learn Git for version control
  • Upload and manage projects using GitHub
  • Create real-world mini projects and portfolio website

📅 Course Schedule (Module Wise)

Module 1: HTML Basics

  • Introduction to Website Designing
  • HTML Structure & Tags
  • Headings, Paragraphs, Lists
  • Links, Images, Tables
  • Forms & Input Fields
  • Mini Project: Simple Web Page

Module 2: CSS Basics

  • CSS Introduction
  • Selectors, Colors, Fonts
  • Box Model (Margin, Padding, Border)
  • Backgrounds, Layout Styling
  • Flexbox Basics
  • Responsive Design Basics
  • Mini Project: Landing Page Design

Module 3: Basic JavaScript

  • Introduction to JavaScript
  • Variables, Data Types
  • Operators and Conditions
  • Loops and Functions
  • Events & DOM Basics
  • Form Validation Basics
  • Mini Project: Interactive Website

Module 4: Git & GitHub

  • What is Git?
  • Git Commands (init, add, commit, status)
  • GitHub Account Setup
  • Creating Repository
  • Upload Project to GitHub
  • Hosting Website using GitHub Pages

🏆 Final Project

  • Create a complete Responsive Portfolio Website
  • Upload project on GitHub
  • Live Hosting (GitHub Pages)
Class Duration:
1 hour per day
Course Duration:
2 Months
Eligibility: N/A
50.00% OFF Regular Course

Computer Basics - PLUS

COURSE DETAILS - 

1. INTRODUCTION TO COMPUTER & BASIC CONCEPTS 

2. OPERATING SYSTEM

3. WORD PROCESSING

4. SPREAD SHEET 

5. PRESENTATIONS 

6. DATABASE MANAGEMENT SYSTEM 

7. CYBER SECURITY 

8. PC MAINTENANCE & TROUBLESHOOTING

9. NETWORKING AND TROUBLESHOOTING 

10. APPLICATIONS OF DIGITAL FINANCIAL SERVICES 

Class Duration:
1 hour per day
Course Duration:
4 months
Eligibility: N/A
50.00% OFF Regular Course

C Language - Basics

🎯 Course Highlights

Learn from Scratch – No Experience Needed
Build Real Java Programs
Master OOP: Classes, Objects, Methods & More
Work on a Mini Project
Certification of Completion

🗓️ Week 1: Introduction to C & Basic Syntax

Day 1: Introduction to C

  • What is C? History & use cases
  • Installing a C compiler (e.g., GCC)
  • Writing your first program: Hello, World!
  • Basic structure of a C program

Day 2: Variables and Data Types

  • Declaring and initializing variables
  • Data types: int, float, char, double
  • printf() and scanf() for I/O

Day 3: Operators and Expressions

  • Arithmetic, relational, and logical operators
  • Assignment and increment/decrement
  • Operator precedence

Day 4: Control Flow - If Statements

  • if, if-else, else if
  • Nested conditions
  • Relational expressions

Day 5: Control Flow - Switch Case

  • switch statement
  • break and default
  • Comparison with if-else

🗓️ Week 2: Loops and Arrays

Day 6: Loops - While & Do-While

  • Syntax and flow of while and do-while
  • Loop control: break, continue

Day 7: Loops - For Loop

  • Syntax and use cases
  • Nested loops

Day 8: Arrays - 1D

  • Declaring and initializing arrays
  • Accessing elements
  • Simple operations: sum, max, min

Day 9: Arrays - 2D

  • Matrix representation
  • Accessing and printing elements
  • Basic matrix operations

Day 10: Character Arrays (Strings)

  • Declaring and initializing strings
  • Common functions: strlen(), strcpy(), strcmp()
  • Input and output of strings

🗓️ Week 3: Functions and Pointers

Day 11: Functions - Basics

  • Declaring and defining functions
  • Function calling and return types
  • void and parameterized functions

Day 12: Functions - Scope & Recursion

  • Local vs global variables
  • Recursive functions (e.g., factorial)

Day 13: Pointers - Basics

  • Introduction to pointers
  • Declaring and using pointers
  • * and & operators

Day 14: Pointers and Arrays

  • Pointers and 1D arrays
  • Pointer arithmetic
  • Pointer to pointer (brief intro)

Day 15: Practice & Quiz Day

  • Quiz on functions, arrays, and pointers
  • Practice problems

🗓️ Week 4: Structures, File I/O, and Project

Day 16: Structures

  • Declaring and using structures
  • Arrays of structures
  • Nested structures

Day 17: File Handling - Basics

  • File operations: fopen(), fclose(), fprintf(), fscanf()
  • Reading and writing text files

Day 18: File Handling - Advanced

  • Reading character-by-character and line-by-line
  • Error handling with files

Day 19: Mini Project Work

Project ideas:

  • Student grade management system
  • Simple ATM interface
  • Contact book

Day 20: Project Presentation + Course Wrap-Up

Class Duration:
1 hour per day
Course Duration:
1 month
Eligibility: 10th Pass
50.00% OFF Regular Course

Python Basics

🎯 Course Highlights

Learn from Scratch – No Experience Needed
Build Real Python Programs
Master OOP: Classes, Objects, Methods & More
Work on a Mini Project
Certification of Completion

 

🗓️ Week 1: Python Basics

Day 1: Introduction to Python

  • What is Python?
  • Installing Python and IDEs (e.g., VS Code, Thonny, Jupyter)
  • Writing your first program: print("Hello, World!")
  • Basic syntax and comments

        Variables and Data Types

  • Variables
  • Data types: int, float, str, bool
  • Type casting
  • input() and simple calculations

         Operators and Expressions

  • Arithmetic operators
  • Comparison operators
  • Logical operators
  • Basic math with variables

  Day 2: Strings and String Methods

  • Creating and manipulating strings
  • String formatting (f-strings)
  • Common string methods: .upper(), .lower(), .replace(), .split()

         Control Flow - If Statements

  • if, elif, else
  • Nested conditionals
  • Logical expressions in conditions

Control Structures and Collections

 Loops - For Loops

  • for loops with range()
  • Iterating over strings and lists

Loops - While Loops & Loop Control

  • while loops
  • break, continue, and pass

        Lists

  • Creating lists
  • Accessing and modifying items
  • List methods: .append(), .remove(), .sort(), etc.

Day 3: Tuples and Sets

  • Tuples: syntax, immutability
  • Sets: unique items, set methods

     Dictionaries

  • Key-value pairs
  • Accessing, adding, and updating entries
  • Iterating through dictionaries

🗓️Day 4: Functions and Error Handling

       Functions – Basics

  • Defining and calling functions
  • Parameters and return values

      Functions – Scope and Default Arguments

  • Variable scope
  • Default and keyword arguments

         Error Handling

  • try, except, finally
  • Common Python errors (ZeroDivisionError, ValueError, etc.)

Day 5: Modules and Importing

  • Importing built-in modules (math, random)
  • Writing and importing custom modules

      Practice Day

  • Small projects or practice problems using functions, loops, and collections

       File Handling and Mini Projects

Day 6: File Handling

  • Opening, reading, and writing files
  • File modes ('r', 'w', 'a')
  • Using with for safe file operations

 Lists & Dictionaries Practice

  • Real-world examples: contact book, grade tracker
  • Data structure manipulation

Day 7: Basic OOP (Optional for Enthusiastic Learners)

  • Classes and objects
  • Attributes and methods
  • __init__ method

Day 8: Mini Project Work Time

    Mini Project Showcase and Review

Class Duration:
2 hour per day
Course Duration:
1 month
Eligibility: 12th Pass and must have knowledge of any programming language
50.00% OFF Regular Course

Computer Basics - Beginner

COURSE DETAILS

 1. INTRODUCTION TO COMPUTER

2. INTRODUCTION TO GUI BASED OPERATING SYSTEM

3. ELEMENTS OF WORD PROCESSING

4. SPREAD SHEET 

5. COMPUTER COMMUNICATION AND INTERNET 

6. WWW AND WEB BROWSER

7. EMAIL COMMUNICATION 

8. POWERPOINT

 

 

 

 

Class Duration:
1 hour per day
Course Duration:
3 months
Eligibility: N/A