About admin

Website: http://www.churmura.com
admin has written 86 articles so far, you can find them below.

BHEL : Requirement of 10 Project Engineers 2011

 Educational Qualifications: Bachelor degree in Engineering or Technology in Electrical / Electronics / Instrumentation 60% marks (50% for SC/ST) in aggregate. Experience : Minimum 2 years post qualification relevant work experience in Power Plants – installation, commissioning and maintenance of controls and instrumentation of Thermal & Hydro power plants, Gas turbine power plants and Generator [...]

Continue reading →

Enable debug option from Task Manager

Task Manager is a windows utility which lists all processes running in your system and much more details about the processes running such as threads, handles, GDI objects, memory usage etc. You can select a process and Right click on it. It shows various options along with Debug. Using this debug one can attach the [...]

Continue reading →

C-DAC Bangalore has openings for Project Engineers

C-DAC, Knowledge Park invites highly talented, dynamic and dedicated individuals on contractual employment for the following skills   VHDL/Verilog/RTL design methodology/System C C, Data Structures ,C++, Assembly, Scripting Languages XHTML, CSS, WML, HTML5, ActionScript, JavaScript, Java, J2ME, PHP, Python, jQuery, PhoneGap, dojo. Embedded C, Windows, Linux Programming, UNIX Flavors, Solaris, AIX, Linux Programming, Programming in [...]

Continue reading →

Operator overloading (Compile time polymorphism-static binding)

This is another type of polymorphism also called as compile time polymorphism or static binding. Operator or function overloading essentially means having multiple functions or methods with same name. Operators are the special functions which carry out certain operation on operands, such as equating, comparison, addition, subtraction etc. We know various arithmetic operators, comparison, logical [...]

Continue reading →

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, [...]

Continue reading →

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. It does not have any argument. Unlike normal functions, it doesn’t return any value. Has same name as that of [...]

Continue reading →

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) [...]

Continue reading →

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 [...]

Continue reading →
Page 2 of 6«123456»