Saturday, 27 August 2016

programming

                         

C++ Tutorial

C++ is a middle-level programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs in Murray Hill, New Jersey, as an enhancement to the C language and originally named C with Classes but later it was renamed C++ in 1983. C++ runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.

Execute C++ Online

Try following example using Try it option available at the top right corner of the below sample code 
#include <iostream>
using namespace std;

int main()
{
   cout << "Hello World";
   return 0;
}
C++ is regarded as a middle-level language, as it comprises a combination of both high-level and low-level language features.

         Object-Oriented Programming

C++ fully supports object-oriented programming, including the four pillars of object-oriented development:
  • Encapsulation
  • Data hiding
  • Inheritance
  • Polymorphism
  •         Standard Libraries

  • Standard C++ consists of three important parts:
    • The core language giving all the building blocks including variables, data types and literals, etc.
    • The C++ Standard Library giving a rich set of functions manipulating files, strings, etc.
    • The Standard Template Library (STL) giving a rich set of methods manipulating data structures, etc.

Tuesday, 23 August 2016

                  IN THIS BLOG, WE WILL LEARNT ABOUT INTRODUCTION OF COMPUTER HARDWARE&SOFTWARE AND ALSO LEARN ITS COMPONENT.


DEFINITION  OF COMPUTER: 
                     The computer is an electronics device,operating control of instruction  stored in its own memory , that can accept data,process data according to specified rule,produce result and store the data for future use.
     
THE COMPONENTS OF COMPUTER:
     The computer contain many electronic and mechanical component known as  hardware. In components include input & output device communication device,mass storage device and unit system device etc..
     common computer parts are following:
Hardware

  • Mechanical devices in the computer
  • Anything that can be touched

Software

Tell the computer what to doAlso called a programThousands of programs exist

Data

       –Pieces of informationComputer organize and present data

Users
       –People operating the computerMost important partTell the computer what to do
Steps followed to process data
Input
Processing
Output 
Storage  
Hardware categorized into four types:
Processing devices
Memory devices
Random Access Memory (RAM)
Read Only Memory (ROM)
Input and output devices 
Input devices accept data
Keyboard, mouse
Output devices deliver data
Monitor, printer, speaker
Some devices are input and output
Touch screens
Storage devices
Hold data and programs permanently
Different from RAM
Magnetic storage
Floppy and hard drive
Uses a magnet to access data
Optical storage
CD and DVD drives
Uses a laser to access data
Two types
System software
Application software
System software
Most important software 
Operating system
Windows XP
Network operating system (OS)
Windows Server 2003
Utility
Symantec AntiVirus



END OF CHAPTER






o