Home » Archive

Articles tagged with: Project Readiness Program

ATG & Java, Tech Corner »

[17 Apr 2010 | 3 Comments | Posted By:Dileep]

Smalltalk, the first object-oriented language, had a major influence on the design of Java.
Key founders – James Gosling, Patrick Naughton, Chris Warth, Ed Frank, & Frank Sheridan.
Was initially called Oak. Got renamed Java in 1995.

Design Goals

Was originally meant to be a platform-neutral language for embedded-software in devices.
The goal was to move away from platform and OS-specific compilers.
The language could be used to produce platform-neutral code.

Role of WWW

The World Wide Web played a catalytic role in the evolution of Java.
The emergence of the WWW propelled the rise of Java because the …

Read the full Post »

C and C++, Tech Corner »

[14 Oct 2009 | No Comment | Posted By:Dileep]

Data stored in program variables and arrays are temporary in nature. Such data is normally stored in the main memory(RAM) of the computer and it will be lost when the program. The best way to work with or process a large data is to store that data permanently in the computer’s memory.
To store data permanently we can use the secondary storage devices such as hard disks and magnetic tapes.
The data stored on the secondary storage devices is viewed as the data files.

File

A data file(or simply file) is a collection of …

Read the full Post »

C and C++, Tech Corner »

[13 Oct 2009 | No Comment | Posted By:Dileep]

Preprocessor – This is a macroprocessor that processes the source program before it is compiled. It is a collection of special statements called preprocesor statements or preprocessor directives.
These directives are executed before the C program passes through the compiler.

Preprocessor Directives – These are statements which begin with the # symbol placed in the first coloumn.
They are placed before the function main().
There will be no smicolon at the end of such statements.
Three types -

Macro substitution directives
File inclusion directives
Conditional compilation directives

Macro Substitution

This is a process of replacing an identifier of a C …

Read the full Post »

C and C++, Tech Corner »

[11 Oct 2009 | No Comment | Posted By:Dileep]

To know where exactly the value of a variable is stored in the memory, you need to be aware of the concept called pointers.
A pointer is a powerful construct of the C programming language.
A pointer is a variable which holds the address of other variables such as arrays, structures and functions that are used in a program.
It contains only the memory location of the variable rather than its content.

Advantages

To point to different data structures.
Manipulation of data at different memory locations is easier.
To achieve clarity and simplicity.
More compact and efficient coding.
To …

Read the full Post »

Talent Transformation At WIPRO »

[10 Sep 2009 | One Comment | Posted By:LG]

The Project Readiness Program started with RDMS,and continued through SQL and PL/SQL.The class is very good,the madam teaching us all these are very enthusiastic about the subject so the class is very interesting,i can see even the non-IT people enjoying her class.Her arrangment of the topics is very good,putting across right examples.The RDBMS  course is just one day still it covered the expectations.From day two onwards she started with SQL.
RDBMS Topics

What is RDBMS ?
Benefits and Features of RDBMS.
Relations,Tuples,Attributes,degree.
Keys:-Super Key,Candidate Key,Primary Key,Alternate Key.
Designing using Entity-Relationship Model.
E-R Diagrams,Case Studies 1 or 2.
Normalization,1NF,2NF,3NF.

SQL Topics

Basic …

Read the full Post »