Posts

Full Stack Development (MERN)

Full Stack Development (MERN) Course (Mode: Classroom & Practical Training)   Duration: 15 Months                                                       Fees : 24,000.00   Prerequisites: Basic computer & programming knowledge   Quarter 1: Frontend Development (4 Months) HTML & CSS HTML Structure & Elements Forms, Tables, and Media CSS Flexbox, Grid & Media Queries Bootstrap & JavaScript Basics Bootstrap Components & Layout JavaScript Variables, Data Types Loops, Functions & Events Advanced JavaScript & ES6+ Arrow Functions, Template Literals Fetch API & JSON Handling Promises & Async/Await Mini Project: Portfolio Website ...

Disha Institute brings you 7 powerful courses to take your career to the next level!

  1. Web Development Mastery Topics Covered: HTML & DHTML: Structure, Forms, Tables, Multimedia CSS: Selectors, Box Model, Flexbox, Grid, Animations JavaScript: DOM Manipulation, Events, ES6 Features, AJAX Bootstrap: Responsive Design, Components, Theming PHP: Variables, Functions, Sessions, File Handling SQL: Database Management, Queries, Joins, Indexing Django: MVC Architecture, Templates, Authentication, API Development Career Scope: Web Developer, Frontend Developer, Full Stack Developer 2. Full Stack Web Development Topics Covered: Frontend Development: HTML, CSS, JavaScript, Bootstrap Backend Development: PHP, Django, REST API Database Management: SQL, CRUD Operations, Security Version Control: Git, GitHub Deployment: Hosting, Server Management Project: Develop a Full Stack Website Career Scope: Full Stack Developer, Backend Developer 3...

SYNTAX OF ALL PROGRAMMING LANGUAGES

  C LANGUAGE   #include<stdio.h> #include<conio.h> void main() { float area,length,breath;           clrscr();           printf("enetr length");           scanf("%f",&length);           printf("enter breath");           scanf("%f",&breath);           area=length*breath;           printf("area of rectangle%f",area);           getch(); } IMPORTANTS THING TO REMEMBER 1.     PROCEDURAL LANGUAGE 2.     SAVE WITH .C IN C/CPP COMPILER 3.     PRIMITIVE AND NON PRIMITIVE 4.     PRINTF ...