Archive for September, 2009
Why Human Resource Management concerned with us?
September 29, 2009 | Human Resource Management | Comments Off
Why Human Resource Management concerned with us? Get results with the help of others: In order to achieve organization objectives, there are different techniques that help manager to oversee the performance of employees in required direction. E...
Importance and Factors of Human Resource Management
September 25, 2009 | Human Resource Management | Comments Off
Importance of HRM Now a day the organization’s success depends on people-embodied, knowledge, skill and abilities embedded in the members of organization. These abilities and skills are the foundation of an organization’s core competencies. To ...
What is Human Resource Management?
September 24, 2009 | Human Resource Management | Comments Off
What is Human Resource Management? Every organization consists of three basic components i.e. Purpose, People and Structure. Human Resource Management (HRM) is the study of activities undertaken by the people working in an organization. HRM is...
Put Function in C++
September 19, 2009 | Learn C++ | Comments Off
Put Function in C++: The “put” function is used to write a single character at a time into formatted (or sequential) input/output file. The syntax of this member function is: object.put (character); Where:...
C++ Detecting end of file
September 18, 2009 | Learn C++ | Comments Off
C++ Detecting end of file: The “eof” stands for “end-of-file”. It specifics the end of last record of the file. The “eof” is a member function of object of ifstream (or fstream) class and it is used to detect the ...
Reading Data from a File in C++
September 16, 2009 | Learn C++ | Comments Off
Reading Data from a File in C++: The data written or stored in a formatted input/output file is read back from the tile into the memory in the same order in which it is stored. The data from the file is read by opening the fil...
Writing Data into a File in C++
September 14, 2009 | Learn C++ | Comments Off
Writing Data into a File in C++: The insertion operator (<<) is used with “cout” object to send output to the screen. The same operator is used with the object created by ofstream (or fstream) class to send the outpu...
Formatted Input Output in C++
September 13, 2009 | Learn C++ | Comments Off
Formatted Input Output in C++: In formatted input/output data is stored in the file as a series of characters. One character or digit takes one byte to store n the disk. Thus the number 216.98 takes 6 bytes —one byte for eac...
cerr C++
September 11, 2009 | Learn C++ | Comments Off
The “cerr” Object: The “cerr” object is usually used for printing error messages. This object is similar to “cout” object. The difference is that unlike “cout” object, the output sent by the “cerr” object i...
File Operations in C++
September 10, 2009 | Learn C++ | Comments Off
File Operations in C++: The data files can he opened into different modes. These modes are defined in "ios” class. The resolution operator (::) is used between the “ios” and the mode code. The different file operation mo...