- Computer Programming
- Python Tutorial
- Python Keywords
- Python Built-in Functions
- Python Examples
- C Tutorial
- C Examples
- C Standard Library
- C++ Tutorial
- C++ Examples
- Java Tutorial
- Java Examples
- Java Interview Questions
- PHP Tutorial
- C# Tutorial
- Objective-C Tutorial
- Perl Tutorial
- Web Development
- HTML Tutorial
- CSS Tutorial
- JavaScript Tutorial
- JavaScript Examples
- SQL Tutorial
- Computer Concept
- Computer Fundamental
- Computer Networking
- Operating System
- Digital Electronics
- Blockchain
- Computer Tips
- Hack Facebook Account
- Files/Folders without Name
- Become a Hacker
- Connect Two Computers
- Scan Computer using cmd
- Course Syllabus
- Artificial Intelligence Syllabus
- Machine Learning Syllabus
- Cloud Computing Syllabus
- Soft Computing Syllabus
- Optical Communication Syllabus
- Quantum Computation Syllabus
- Misc Topics
- Calculator with HTML CSS
- Matrix Addition
- Matrix Subtraction
- Matrix Multiplication
- Leap Year Formula Explained
- Celsius to Fahrenheit
- Find LCM
- Find HCF
- Pascal's Triangle
- Online Tests
- All Test
- Python Test
- HTML Test
- Java Test
- Computer Fundamental Test
- C Test
- C++ Test
- CSS Test
- JavaScript Test
- Artificial Intelligence Test
- Data Science Test
- Data Structure Test
- Cyber Security Test
- IoT Test
- SQL Test
- PHP Test
- Operating System Test
- Computer Networking Test
- Microsoft Word Test
- Microsoft Excel Test
- Microsoft PowerPoint Test
- Computer Hardware Test
- MySQL Test
- Linux Test
Java
A Language to Develop virus-free and tamper-free Systems
Java Tutorial Java Examples
Java Interview Questions Java Test
Java Example
public class HelloWorld { public static void main(String args[]) { System.out.println("Welcome to Java Programming"); } }
C
A Language to Develop an efficient and fast running Systems
C Tutorial C Examples
C Library C Test
C Example
#include<stdio.h> #include<conio.h> int main() { clrscr(); printf("Welcome to C Programming"); return 0; }
C++ Example
#include<iostream> using namespace std; int main() { cout<<"Welcome to C++ Programming"; return 0; }
Python
A Language to Develop wide range of Applications
Python Tutorial Python Examples
Python Test Python Inbuilt Functions
Python Example
print("Welcome to Python Scripting")
HTML Example
<!DOCTYPE html> <html> <title>Welcome to HTML Web Development</title> <body> <p>This is a Paragraph.</p> </body> </html>
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>
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) );
PHP Example
<!DOCTYPE html> <html> <body> <?php echo "Welcome to PHP Web Programming"; ?> </body> </html>
Perl
A Language used in System Administration, Web Developments, Network Programming
Perl Tutorial Perl Test
Perl Example
#!/usr/bin/perl print "Welcome to Perl Scripting";
C# Example
using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { Console.WriteLine("Welcome to C# Programming"); } } }
Objective-C Example
#import <Foundation/Foundation.h> int main() { NSLog(@"Welcome to Objective-C Programming"); return 0; }