Java

A Language to Develop virus-free and tamper-free Systems


Java TutorialJava Examples
Java Interview QuestionsJava 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 TutorialC Examples
C LibraryC Test

C Example

#include<stdio.h>#include<conio.h>int main()
 {
 clrscr();
 printf("Welcome to C Programming");
 return 0;
 }
 

C++

A Language to Develop System Software


C++ TutorialC++ Examples
C++ Test

C++ Example

#include<iostream>using namespacestd;
 int main()
 {
 cout<<"Welcome to C++ Programming";
 return 0;
 }
 

Python

A Language to Develop wide range of Applications


Python TutorialPython Examples
Python TestPython Inbuilt Functions

Python Example

print("Welcome to Python Scripting")
 

HTML

A Language to create Web Pages


HTML TutorialHTML Test

HTML Example

<!DOCTYPE html>
 <html>
 <title>Welcome to HTML Web Development</title>
 <body>
 <p>This is a Paragraph.</p>
 </body>
 </html>
 

CSS

A Language to Style Web Pages


CSS TutorialCSS Test

CSS Example

body{
 background-color:#d0d4ff; }
 h2{
 color:green;
 text-align:center; }
 p{
 font-family:"Times New Roman";
 font-size:24px; }
 

JavaScript

A Language to develop Programming Web Pages


JS TutorialJS Programs
JS Test

JavaScript Example

<script>
 function myFun() {
 var z = document.getElementById("demo");
 z.style.fontSize = "24px"; 
 z.style.color = "green"; 
 }
 </script>
 <buttononclick="myFunc()">Click Here</button>
 

SQL

A Language to Access Databases


SQL TutorialSQL Test

SQL Example

CREATE TABLE CUSTOMERS (
 ID INTNOT NULL,
 NAME VARCHAR (26) NOT NULL,
 AGE INTNOT NULL,
 ADDRESS CHAR (26) ,
 SALARY DECIMAL (18, 2), 
 PRIMARY KEY (ID) );
 

PHP

A Language for Web Server Programming


PHP TutorialPHP Test

PHP Example

<!DOCTYPE html>
 <html>
 <body>
 <?phpecho"Welcome to PHP Web Programming";
 ?>
 </body>
 </html>
 

Perl

A Language used in System Administration, Web Developments, Network Programming


Perl TutorialPerl Test

Perl Example

#!/usr/bin/perl
 print"Welcome to Perl Scripting";
 

C#

A Language to Develop an efficient Applications


C# TutorialC# Test

C# Example

usingSystem;
 namespace HelloWorldApplication {
 class HelloWorld {
 static void Main(string[] args) {
 Console.WriteLine("Welcome to C# Programming");
 }
 }
 }
 

Objective-C

A Language to Develop iOS Applications


Objective-C TutorialObjective-C Test

Objective-C Example

#import <Foundation/Foundation.h>int main()
 { 
 NSLog(@"Welcome to Objective-C Programming");
 return 0;
 }