Thursday, 30 April 2015

Structure Of C Programs

By With No comments:
 All the C Program are divided into many parts such as :
        Preprocessor Commands
        Functions
        Variables
        Statements and Expressions
        Comments

Preprocessor Commands :-

           Preprocessor Command is not a part of the compiler of c language but it is a diffrent step in the compilation time. All preprocessor commands starts with a (#) symbol.

Example :-

#define               Substitutes a preprocessor macro      
#include             Inserts a particular header from another file  
#undef                Undefines a preprocessor macro        
#ifdef                  Returns true if this macro is defined     
#ifndef                Returns true if this macro is not defined
#if                       Tests if a compile time condition is true
#else                    The alternative for #if
#elif                     #else an #if in one statement
#endif                  Ends preprocessor conditional
#error                  Prints error message on stderr
#pragma              Issues special commands to the compiler, using a standardized method

Main() Function :-

                we all know why main  function is used in c programs because when we run the program at that time program execution start with the main Function.

Syntax :-

int main()
{
// code write here
return 0;
}

Comments :-

         Comments are the statements that are ignored by the  compiler.

Syntax :-
                Multiline Comments :-
                /*    
                                  Comments statement that put here
                */
                Singleline Comments :-
                //     Comment statement put here for single line comments


Example of Hello World Program :-

#include<stdio.h>            //Preprocessor Commands
int main()                         //main()   program execution start to here
{
/* hello word program in c    */         //comments statements
printf(“Hello World…..\n”);    
return 0;                      

}

Wednesday, 29 April 2015

Introduction Of PL/SQL

By With No comments:
PL/SQL is programming language was developed by Oracle Corporation in the late 1980s. PL/SQL stands for procedural language extension of SQL. PL/SQL is a combination of SQL along with the procedural features of programming languages.

You can use PL/SQL to implement your bussiness rules by creating stored function, procdures and triggers or you can add programming logic to the SQL commands. PL/SQL have a one of the most important functionality to display multiple records from the multiple tables at the same time. In short PL/SQL is a completely portable, high-performance transaction-processing language.

Advantages Of PL/SQL :-

It is provide high security level.
It provide support for OOP(Object Oriented Programming).
It provide block structure.
It provides Exception Handling.
Better Performance
Platform Independent
Reduce the network traffic.


Friday, 24 April 2015

Introduction Of Asp.Net

By With No comments:
Asp stand for Active Server Pages was introduced in 1998 as Microsoft's first server side scripting. Asp.Net is provide the web-application development environment.

Asp.Net is the part of the Microsoft's .Net technology. ASP.NET has better language support, a large set of user controls, XML-based components, and integrated user authentication. ASP.NET pages have the extension .aspx, and It's code file extension is .aspx.cs.

When a browser requests an ASP.NET file, the ASP.NET engine reads the file, compiles and executes the scripts in the file, and returns the result to the browser as plain HTML(Hyper Text Markup Language). ASP.NET is a server-side technology.

Advantages of Asp.Net :-
  • Support for compiled languages.
  • Graphical development environment.
  • Updates files when server is running.
  • Reduce the amount the code.
  • Separation of code from html.
  • State management.
  • XML based configuration files.
  • Provide Authentication.  




Friday, 17 April 2015

Introduction Of Python

By With No comments:
Python is a high-level, interpreted, interactive and object-oriented scripting language. Python was developed by Guido van Rossum at the National Research Institute for Mathematics and Computer Science in the Netherlands. Python can easily integrated with C, C++, Java and etc.

Features Of Python :-
  • Easy to learn and read
  • Easy to maintain
  • Portable
  • Extendable
  • Database Support 
  • Graphical User Interface provide
  • Scalable
  • Reduce code length in python 
  • Interactive Mode
  • It provide automatic garbage collection.
  • It supports functional, structured and object-oriented programming method.

What is Python :-
  • Object-oriented language
  • Open-source
  • Interpreted language
  • simple and easy grammar
  • It is also support dynamic data types
  • Independents from platforms
  • Automatic memory management

Wednesday, 15 April 2015

Introduction Of Javascript

By With No comments:
Javascript is a scripting language. Scripting language is a kind of programming language with less functionality.We can use Javascript with HTML[Hyper Text Markup Language] webpages. Javascript was orignally need live script was developed by netscape.

Javascript is :-
  • Javascript is a light-weight, interprinted programming language with object oriented capabilities that allow you to build interactive into static html page.
  • Open and cross platform.
  • Design for creating network application.
Javascript can be divided into three parts :-
  1. The Core :-                                                                                                                             Javascript core part is least of language including operators,expression, statements and sub-programs.                                                                                                                                                     
  2.  The Client Side :-                                                                                                                      Client side javascript is a collection of objects that supports control of  browser and interaction  with users.                                                                                                                                                                                                                                         
  3. The Server Side :-                                                                                                                         Server side javascript is a collection of objects that make language useful  on a web server to    support communication with a DBMS[Database Management System].                                                                                                                                                                                                   





Saturday, 11 April 2015

Introduction Of Java

By With No comments:
Java was created by a team of programmers at sun microsystems of U.S.A in 1991.Java was initially called "Oak" by james Gosling but renamed "Java" in 1995. When the World Wide Web become popular in 1994, Sun realized that java was the perfect programming language for the web.

Java is high level, robust, secured, programming language and platform that :
  • Object-Oriented language
  • Fully network supported
  • Fully Graphical User Interface[GUI] 
  • Platform Independent
  • Executes stand-alone or on-demand in web-browser as applets
Features Of Java :-
  • Simple
  • Secure
  • Portable
  • Object-Oriented
  • Robust
  • Multithreaded
  • Interpreter
  • High Performance
  • Distributed
  • Dynamic
Where Java Language is Uses :-
In today's world in many fields spans the java such as :-
  • Desktop Applications
  • Web Applications 
  • Mobile Applications
  • Embedded System
  • Smart Cards
  • Robotics
  • Enterprise Applications
  • Games etc..

Introduction Of C++

By With No comments:
C++ is an object-oriented, case-sensitive, general purpose, free-form programming language that support the functionality of procedural and generic programming language. It was developed by Bjarne Stroustrup at AT&T Bell Laboratories in Murray Hill, New Jersey, USA, in the early 1980's. The idea of C++ comes from the C increment operator ++, thereby suggesting that C++ is an incremented version of C language.C++ is the object-oriented programming language.

Where C++ is Used :-

we can create this type of application in c++ some of them are as follows :
  • System Programming [e.g. Operating System and Embedded System]
  • Desktop Applications and Servers [e.g. E-Commerce, Web Search and Sql Server etc.]
  • Performance Critical Applications [e.g. Telephone Switches and Space Probes]
  • Entertainment Software
  • Object-Oriented Database
  • Real-Time System
  • AI And Expert System
Basic Concept Of Object-Oriented Programming :-
  • Objects 
  • Classes 
  • Data Abstraction and Encapsulation
  • Inheritance
  • Polymorphism
  • Dynamic Binding 
  • Message Passing  


Introduction Of C

By With No comments:
The C programming language is a general-purpose, high-level language that was developed by Dennis M. Ritchie in early 1970s. C is an procedural programming language.First we get some information about the procedure programming. Procedural programming uses a list of instruction to tell the computer what to do step-by-step. Procedure programming language are also known as top-down language or imperative language.

The c language now become a widely used professional and most popular language because it's some reasons such as:
  • Structured Language.
  • Easy to use and learn.
  • Provide efficiency in the program.
  • It can handle low-level activities.
  • It provide memory allocation.
  • It creates fast and efficient executable files.             
Which Purpose To Use C Language :-

Some example of the use of c language might be:
  • Operating Systems
  • Language Compilers 
  • Assemblers
  • Text Editors
  • Print Spoolers
  • Network Drivers
  • Database 
  • Language Interpreters
  • Modern Programs