My Linux Stuff - Complete Blog For Linux Articles

My Linux Stuff - Complete Blog For Linux Articles

A Website For Complete Linux OS,Step by Step linux Installtion, Linux Tips and Tricks and Linux Stuff and so on... Connect and sharing here....

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

This below survey was taken many form many colleges in India. These Top 50 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good.

Top 10 Government Engineering Colleges in India

Top 10 Government Engineering Colleges in India

These Government Engineering Colleges in India are really good for all kind of stuff like Education , research , Placement and New Innovation Ideas etc... But Getting seat in these colleges are heavy competition in students .....

Top 10 Colleges In India 2014

Top 10 Colleges In India 2014

Indian Institute Of Technology Delhi,Indian Institute Of Technology Bombay,Indian Institute Of Technology Kanpur,Indian Institute Of Technology Madras,Indian Institute Of Technology Kharagpur,Indian Institute Of Technology Roorkee,University Of Delhi,Indian Institute Of Technology Guwahati,University Of Calcutta,University Of Mumbai, National Institute Of Technology,Trichy.

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

This below survey was taken many form many colleges in India. These Top 100 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good. If you want to do Engineering as your dream and try out these colleges

Subscribe Now!

Enter your email address:

Tuesday, February 7, 2012

CONCEPTS OF OBJECT ORIENTED PROGRAMMING




CONCEPTS OF OBJECT ORIENTED PROGRAMMING:

1.Class
2.Object
3.Inheritance
4.Interface
5.Abstract Class
6.Overriding
7.Polymorphism (or ) Overloading

1.Class:

A class is simply a representation of a type of object. It is the blueprint/ plan/ template that describe the details of an object. A class is the blueprint from which the individual objects are created. Class is composed of three things: a name, attributes, and operations.
Examples 1
public class Student
{
}

2.Object:

An object can be considered a thing that can perform a set of related activities. The set of activities that the object performs defines the object’s behavior.
In pure OOP terms an object is an instance of a class.
Examples 2
Student objectStudent = new Student();
In Example 2 we can say that the student object, named objectStudent, has created out of the Student class.

3.Inheritance:

Ability of a new class to be created, from an existing class by extending it, is called inheritance.
Examples 3
public class Exception
{
}
public class IOException : Exception
{
}
In Example 3 the new class (IOException), which is called the derived class or subclass, inherits the members of an existing class (Exception), which is called the base class or super-class. The class IOException can extend the functionality of the class Exception by adding new types and methods.

4.Interface:

An interface is type definition similar to a class except that it purely represents a contract between an object and a user of the object. An interface cannot be directly instantiated as an object. No data members can be defined in an interface. Methods and properties can only be declared, not defined. To prefix the name interfaces with’I’ like IDisposable, ISerializable, ICloneable, IEnumerator, etc.
Examples 4
interface IShape
{
void Draw();
double X { get; set; }
double Y { get; set; }
}
Implementing an interface is simply done by inheriting off the interface and then defining all the methods and properties declared by the interface.
Examples 5
class Square : IShape
{
private double mX, mY;
public void Draw() { … }
public double X
{
set { mX = value; }
get { return mX; }
}
public double Y
{
set { mY = value; }
get { return mY; }
}
}

5.Abstract Class:

Abstract class can be simply defined as incomplete classes. Abstract classes contain one or more incomplete methods called abstract methods. The abstract class only provides the signature or declaration of the abstract methods and leaves the implementation of these methods to derived or sub-classes. Abstract method and abstract classes are marked with the abstract keyword. An abstract class itself must be marked with the abstract keyword. Since abstract classes are incomplete, they cannot be instantiated. The class inheriting an abstract class and implementing all its abstract methods is called the concrete of the abstract class.
Examples 6
abstract class TaxCalculator
{
protected double itemPrice;
protected double tax;
public abstract double CalculatorTax();
public double Tax
{
get { return tax };
}
public double ItemPrice
{
get { return itemPrice };
}
}

6.Overriding:

Override modifier is to modify a method, a property, an indexer, or an event. An override method provides a new implementation of a member inherited from a base class. The method overridden by an override declaration is known as the overridden base method. The overridden base method must have the same signature as the override method. You cannot override a non-virtual or static method. The overridden base method must be virtual, abstract, or override. An override declaration cannot change the accessibility of the virtual method. Both the override method and the virtual method must have the same access level modifier.
Examples 7
public class Employee
{
public virtual void GetPayCheck()
{
}
public void Work()
{
}
}
public class Executive : Employee
{
GetPayCheck method;
public override void GetPayCheck()
{
}
public void AdministerEmployee()
{
}
}

7.Polymorphism (OR) Overloading:

Polymorphism is the ability for classes to provide different implementations of methods that are called by the same name. In example 8 how polymorphism would work, here’s a different class that implements the same interface but has different code. Polymorphism allows us to define methods in a base class and override them with derived class implementations.
Examples 8
public class MyLogger
{
public void LogError(Exception e)
{
}
public bool LogError(Exception e, string message)
{
}
}

HCL Fresher Opening

MyHCL Campus


Click Here To Register 

Friday, February 3, 2012

GE Healthcare Fresher Opening


"GE Healthcare" Hiring: Entry-Level Software Engineer @ Bangalore
Company        GE Healthcare
Website          www.gehealthcare.com
Eligibility        Bachelor’s/ Masters Degree

Experience     Freshers

Location         Bangalore
GE Healthcare
Job Role: Entry-Level Software Engineer
Job Summary:
Bachelor’s Degree/Masters Degree in Computer Science/Engineering, Electrical Engineering, Biomedical Engineering or related computer field.

Demonstrated proficiency in C/C++ and/or Java programming. (UNIX environment will be a plus).

Good grasp of basic image processing, 3D graphics, visualization and data structures.

Basic understanding of Object Oriented Design (OOD) and Programming (OOP) concepts and Unified Modeling Language (UML).

POLARIS SOFTWARE Fresher Opening


"POLARIS SOFTWARE" Hiring: Multiple Positions @ Across India
Company        Polaris Software Lab Limited
Website          www.polaris.co.in
Eligibility        Check Details

Experience     Freshers & Exp

Location         Across India
Polaris Software Lab Limited
Job Role: Multi Positions
Job Summary:

Verizon Freshers Walk-in


Walk-in "Verizon" : 2011 B.E./B.Tech Freshers : On 4th Feb @ Chennai
Company        Verizon Data Services India
Website          https://verizoninindia.verizon.com/
Eligibility        B.E./B.Tech

Experience     0.6-3 Years

Location         Chennai
Verizon Data Services India
Job Role: Freshers - 2011
Job Summary:Verizon Data Services India: Scheduled Walk-in for 2011 B.E./B.Tech. Freshers.
Eligibility Criteria: 70% and above in 10,12th and BE.
Stream: E&I, EEE, ECE, CSE, IT
Experience: 0 - 1 Years
Registration Date: 4th Feb 2012 (Registration closes by 9.30AM)
Please walk-in to the below venue with your resume and photo before 9:00 AM on 4th Feb 2012
Walkin Venue:
BSA University, Chennai
(Formerly BSA Crescent Engineering College)
"Seethakathi Estate"
G.S.T Road, Vandalur
Chennai - 600048

Wednesday, February 1, 2012

Fresher Opening in Safran Engineering


"Safran Engineering Services" : Software Trainee @ Bangalore
Company        safran engineering services
Website          www.safran-group.com
Eligibility        B.E./B.TECH/MCA

Experience     0-1 Year

Location         Bangalore
safran engineering services
Job Role: Software Trainee
Job Summary:
Opening Software Trainee

Qualification : B.E./B.TECH/MCA with 60%

Contact Us :

Mr. Swbstik Kumar

Hr Team

Forward Your Resume: swbstik.kumar@safran-engineering.com

HUAWEI TECHNOLOGIES FRESHER OPENING


"HUAWEI TECHNOLOGIES" Off-campus : BE/ BTech/ MCA/ MTech 2012 Batch : On 10 Feb 2012 @ Cochin, kerala
Company        HUAWEI Technologies
Website          www.huawei.com
Eligibility        MCA, B.E / B.Tech / M.E / M.Tech

Experience     Freshers

Location         Cochin, Kerala
HUAWEI Technologies
Job Role: Freshers-2012
Job Summary:
Candiates Should be 2012 Batch MCA, B.E / B.Tech / M.E / M.Tech Candidates

MCA, B.E/B.Tech/M.E/M.Tech (CS, EC, IT, EEE, AE, EI, IC-Circuit Branches Only)

75% or above in MCA, B.E / B.Tech / M.E / M.Tech (74.45 can be rounded off)

70% or above in X & XII (69.45 can be rounded off)

Outside Kerala Students are not Eligible

No Current arrears/ backlogs-Those who have cleared arrears are eligible

Candidates who confirm and do not report for the test will not get future services from SHREDS.

Selection Process :
Aptitude Test
Technical Test on C / JAVA.
Technical & HR Interviews.

There will be only written test on 10th, Interviews on 11th / 12th



Click Here More Info

The Woodcutter Story


Day after day he was bringing less and less trees.
“I must be losing my strength”, the woodcutter thought.
He went to the boss and apologized, saying that he could not understand what was going on.
“When was the last time you sharpened your axe?”
the boss asked. “Sharpen? I had no time to sharpen my axe.
I have been very busy trying to cut trees.
Moral: Just hard work is not enough to achieve success. Work smart and with the right attitude to achieve success in life.

AMDI TECH

Highest View In Last Month


Related Posts Plugin for WordPress, Blogger...