- Computer Tips and Tricks
- Computer Tips and Tricks
- Make the computer faster
- Unnamed files or folders
- Connect two computers
- Scan the computer using cmd
- Become a hacker
- Hack a Facebook account
- Computer Programming
- Python Tutorial
- Python Keywords
- Python Built-in Functions
- Python Examples
- C Tutorial
- C Examples
- C++ Tutorial
- C++ Examples
- Java Tutorial
- Java Examples
- PHP Tutorial
- C# Tutorial
- Objective-C Tutorial
- Web Development
- HTML Tutorial
- CSS Tutorial
- JavaScript Tutorial
- JavaScript Examples
- SQL Tutorial
- Computer Concept
- Computer Fundamental
- Computer Networking
- Operating System
- Digital Electronics
- Blockchain
- Course Syllabus
- Artificial Intelligence Syllabus
- Machine Learning Syllabus
- Cloud Computing Syllabus
- Soft Computing Syllabus
- Optical Communication Syllabus
- Quantum Computation Syllabus
Python
A Language to Develop wide range of Applications
Python Tutorial Python Examples
Python Inbuilt Functions Python Quiz
Python Example
print("Welcome to Python")
HTML Example
<!DOCTYPE html> <html> <title>Welcome to HTML</title> <body> <p>This is a Paragraph.</p> </body> </html>
C++ Example
#include<iostream> using namespace std; int main() { cout<<"Welcome to C++"; return 0; }
C# Example
Console.WriteLine("Welcome to C#")
CSS Example
body{ background-color:#d0d4ff; } h2{ color:green; text-align:center; } p{ font-family:"Times New Roman"; font-size:24px; }
JavaScript Example
<script> function myFun() { var z = document.getElementById("demo"); z.style.fontSize = "24px"; z.style.color = "green"; } </script> <button onclick="myFunc()">Click Here</button>
PHP Example
<!DOCTYPE html> <html> <body> <?php echo "Welcome to PHP"; ?> </body> </html>
Objective-C Example
#import <Foundation/Foundation.h> int main() { NSLog(@"Welcome to Objective-C"); return 0; }
Java Example
public class HelloWorld { public static void main(String args[]) { System.out.println("Welcome to Java"); } }
C Example
#include<stdio.h> #include<conio.h> int main() { clrscr(); printf("Welcome to C"); return 0; }
SQL Example
CREATE TABLE CUSTOMERS ( ID INT NOT NULL, NAME VARCHAR (26) NOT NULL, AGE INT NOT NULL, ADDRESS CHAR (26) , SALARY DECIMAL (18, 2), PRIMARY KEY (ID) );