Posts

Showing posts from June, 2025

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my seventh part of learn coding with amol and in this part we are learning C#. Let's Start  PART-7 C# 💻 Complete C# Guide This guide covers all basics of the C# programming language with examples. 1. Hello World The structure of a simple C# program. using System; class Program { static void Main() { Console.WriteLine("Hello, World!"); } } 2. Variables and Data Types Variables store data. C# is strongly typed. int age = 13; double pi = 3.14; char grade = 'A'; string name = "Amol"; 3. Input and Output Use Console.ReadLine() to get user input. Console.Write("Enter your name: "); string name = Console.ReadLine(); Console.WriteLine("Hello, " + name); 4. if / else Conditional execution in C#. int x = 10...

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my sixth part of learn coding with amol and in this part we are learning C++. Let's Start  Part-6 C++ 💻 Complete C++ Guide This guide includes all important C++ topics with examples and explanations. 1. Hello World Basic C++ program structure. #include <iostream> using namespace std; int main() { cout << "Hello, World!"; return 0; } 2. Variables and Data Types Declare and use variables with types. int age = 13; float pi = 3.14; char grade = 'A'; string name = "Amol"; 3. Input and Output Using cin and cout for user interaction. int num; cout << "Enter number: "; cin >> num; cout << "You entered: " << num; 4. if / else Conditions Control flow using conditionals. int x ...

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my fifth part of learn coding with amol and in this part we are learning c language. PART-5 c language Let's Start  💻 Complete C Language Guide This guide covers the fundamentals of C programming with explanations and copyable examples. 1. Hello World Basic structure of a C program. #include <stdio.h> int main() { printf("Hello, World!"); return 0; } 2. Variables and Data Types Variables store data values. C has types like int, float, char. int age = 13; float pi = 3.14; char grade = 'A'; 3. Input and Output Use scanf to get user input. int num; printf("Enter a number: "); scanf("%d", &num); printf("You entered: %d", num); 4. if / else Conditionally execute code blocks. int x = 10; if (x >...

Learn coding with amol

Image
 Hello my name is amol or vineet and this is my second part of learn coding with amol and in this part we are learning css. PART-2  CSS:- 🎨 Complete CSS Guide This guide explains important CSS properties with examples and copyable code. 1. Color and Background Set text color and background color. p { color: white; background-color: blue; } 2. Font and Text Control font size, family, and alignment. h1 { font-size: 32px; font-family: Arial, sans-serif; text-align: center; } 3. Margin and Padding Spacing outside (margin) and inside (padding) of elements. div { margin: 20px; padding: 10px; } 4. Borders and Border Radius Add borders and rounded corners to elements. img { border: 2px solid black; border-radius: 10px; } 5. Box Model Every element is a box:...

Learn coding with amol

Image
 Hello my name is amol sharma or vineet and this is my fourth part of learn coding with amol and in this part we are going to learn python. PART-4 python. 🐍 Complete Python Guide This guide includes all important Python concepts with examples. 1. Variables Variables store values that can be used later in the program. name = "Amol" age = 13 height = 5.6 2. Data Types Common types include int, float, string, list, dict, bool. x = 10 # int y = 3.14 # float name = "Amol" # str items = [1, 2, 3] # list person = {"name": "Amol", "age": 13} # dict is_human = True # bool 3. if / elif / else Decision-making in Python. score = 85 if score >= 90: print("Excellent") elif score >= 50: print("Passed") else: print("Failed") ...

Learn coding with amol

Image
Hello my name is amol sharma or vineet and this is my third part of learn coding with amol and in this part we are going to learn js(javascript)  Hello my name is amol sharma or vineet and this is my third part of learn coding with amol and in this part we are going to learn javascript (js). Part-3 javascript (js) 🧠 Complete JavaScript Guide This guide covers the most important JavaScript concepts with examples and copy code buttons. 1. Variables Used to store data values using let , const , or var . let name = "Amol"; const age = 13; var city = "Delhi"; 2. Functions Reusable blocks of code that perform a task. function greet() { alert("Hello, Amol!"); } greet(); 3. if / else Conditions Used to make decisions in code. let score = 90; if (score >= 50) { console.log("Passed!"); } else { console.lo...

Learn coding with amol

Image
 Hello my name is amol or vineet and i help you to learn complete coding like :-html,css,js,python,c,c++,c#. Lets start:- Part 1 - HTML what is html:- it is a markup language used to make websites the full form of html is hypertext mark-up language. Complete HTML Guide Complete HTML Guide <!DOCTYPE> Definition: Declares the HTML version (HTML5): <!DOCTYPE html> Copy Code <html> Definition: Root element of HTML document. <html lang="en"> ... </html> Copy Code <head> & Meta Tags Definition: Contains page info, links, metadata. <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Webpage</title> </head> Copy Code <title> Definition:...