C++

C++ Job opening With VMWare Bangalore

Qualification : Computer Science graduate Job Profile: Exceptional analytical and problem solving skills Strong industry experience in: programming, system design Experience in enterprise-class server management software development Experience defining architecture for enterprise-class server management systems Strong C++ programming Strong background in object-oriented design and programming Storage Management experience is highly desirable Must have deep understanding [...]

C++ Job Opening with Diebold ATM for Mumbai

Position Title: Sr. Software engg C++ Company: DIEBOLD Softwares website: www.diebold.com Location: Mumbai, Malad W Qualification:- B.E, MCA, Msc Exp- 3 – 7 Years Skills Required: • Overall 3-6 years of relevant experience. in C++ Operating SYSTEMS – WINDOWS ONLY • Knowledge of data structures, OOPS, MFC (Microsoft Foundation Classes), Synchronization Objects, Visual Studio 6 [...]

C++ Job Opening with Ness for Chennai

Skill : OOPS concept, C++, Datastructures and Algorithms Work experience in any Unix/Solaris/AIX/Linux/HP-Unix environment Knowledge in Database Experience :  3-10 years Exp in C++ Currently working in C++ (Hands ON) Education : BE, B. Tech, M.Tech, MS, MCA Interview Location- Chennai,Pune Work Location : Chennai

F2F inteview 11th jan 2012 on c,unix developer In Bangalore

Skills c,UNIX developer Exp : 2 to 4 year Work Location – Noida Interview – location – Bangalore (F 2 F interview on 11th Jan 2012 and 13 jan 2012. Notice period – max 15 days

Job Openings for Microsot.Net Framework 3.5 , C#, WPF, MVVM

Designation: .Net Experience: 3+ Years Years Of Exp Relevant: 3+Years Job Location: Bangalore Position: Permanent JD: Microsot.Net Framework 3.5 , C#, WPF, MVVM design Pattern. NET 3.5 (strong on basics/fundamentals) Entity Framework WPF (Strong knowledge) Strong OO Basics Flexible working in Night Shifts. Qualification: Any Graduate, Any Post Graduate

Opportunity for C++ Unix with Any Database Professionals with Leading MNC in Chennai

JOB POSITION: Software Engineer (to) Asst Project Manager. Job Description : C++ Unix with Any Database (strong in database) C++ experience with Unix background and some experience of having worked with a Any database. This is a Direct and a Permanent position with this MNC in Chennai. Total Experience : 4 – 9 Years JOB [...]

C++/VC++ Openings for Bangalore/Gurgaon – Interviews in Pune

Work Location – Bangalore/Gurgaon Experience – 4-8 years Interview Location – Pune (for F2F) Interview Date : 14th January Skills required – a. Unix / C++ or Visual C/C++ b. Oracle – Development (PL/SQL), SQL Server Development – T-SQL c. UML Send Resumes To : dhanashree .gawai (at) nityo (dot) com

Walkins interviews on 8th January for C++/STL/datastructure/ OOAD -Pune

Date of Interview :  8th Jan(Sunday) Time : 9:30 AM to 2:00pm Venue Details : Mariott Hotel & Convention Centre, Senapati Bapat Marg, Pune Job Profiles: Designation:  Developer Role: Developer Years of Experience: ·         3 – 6 yrs (individual contributors) ·            5-7 yrs (lead positions) Educational Qualification: •                 Bachelors/Masters in Computer Science Mandatory Skills: [...]

C# Language : Getting Started

C# is programming language from Microsoft. How different is it from other languages provided by Microsoft, well its managed. If you remember even Microsoft has released a version of Java VJ++ after Sun Java became popular. However after the sued by Sun, Microsoft has stopped releasing any further version of Visual J++. But They come [...]

C++ copy constructor and an overloaded assignment operator

C++ compiler provides you four special functions to every class by default. 1. Default constructor Called while creation of object 2. Copy constructor This is called when a.  an object is passed by value, void setFunction( MyClaa obj); b.  an object is return by value. MyClass getFunction(); c.  new object is created from existing object( [...]

Various types of Function overloading (compile time polymorphism / static binding)

Polymorphism means same entity behaving differently at different times. Compile time polymorphism is also called as static binding. Compile time or static binding means Function body is bind to the function call at compile time itself.  In C++ compile time polymorphism can be achieved using Function overloading and operator overloading. Function overloading Function overloading means, [...]

What is the use of RAII- Resource Acquisition Is Initialization in C++

C++ program needs resources (variables/Objects) to do something. We can use normal objects created on Stack or we can allocate them dynamically on Heap memory. Constructor code is the guaranteed part which is executed while creating objects. Similarly destructor code is the guaranteed part gets executed when object goes out of scope. If an object [...]

C++ : Explain constructors Usage

To initialize an object of a class, we need a constructor. We can use default constructor provided by compiler or we can overload constructors or override zero argument constructor similar to default constructor. Constructor Ex. Class MyClass { Public: MyClass(); };   It does not have any argument. Unlike normal functions, it doesn’t return any [...]

Why do we need constructors in C++

Prior to C++ programming or Object oriented programming; procedural languages such as C language were used. Procedural language program have typical structure where variables needs to be declared to hold data and functions need to be declared to operate on these variables. To share variables among various parts of program (or with number of functions) [...]

Where does C++ program data stored

Every C++ program has some defined Input, Processing and desired Output.  C++ program contains Data and Operations to operate on data. If you see a memory structure of C++ Program, while loading into the memory, Data Section and Code section is created. But data section is not the only place where program data is stored [...]