Google Answers Logo
View Question
 
Q: PROGRAMMES ( Answered,   0 Comments )
Question  
Subject: PROGRAMMES
Category: Computers > Programming
Asked by: pazyboat-ga
List Price: $15.25
Posted: 08 Jun 2005 06:41 PDT
Expires: 08 Jul 2005 06:41 PDT
Question ID: 530821
WHAT ARE MEANT BY COMPUTER PROGRAMMES.?
WHAT ARE THE CATEGORIES.?
WHAT ARE THE TYPES.?
WHAT ARE MEANT BY C+, C++ AND STUFFS LIKE THAT, CAN YOU PLEASE EXPALIN
THESE THING S CLEALY AND DEEPLY TO ME.

THANK YOU.
Answer  
Subject: Re: PROGRAMMES
Answered By: djbaker-ga on 08 Jun 2005 07:48 PDT
 
Greetings Pazyboat!
A computer program is what makes a computer useful.  Without a program
a computer is just a really expensive paper weight.  Another name for
a computer program is software.  This is the name that you will see
more often when referring to various programs.

"Computer software (or simply software) refers to one or more computer
programs held in the storage of a computer for some purpose. Program
software performs the function of the program it implements, either by
directly providing instructions to the computer hardware or by serving
as input to another piece of software."

http://en.wikipedia.org/wiki/Software

"One or more computer programs, existing in any form, instructions,
manuals, associated operational procedures, or other documentation.
Software provides the instructions and controls through symbolic
languages of the operation of all computers including stand-alone and
LAN (local area network) personal computers and related equipment as
well as mainframe computers."

http://www.osc.state.ct.us/manuals/PropertyCntl/appendixa.htm

Software can be broken up into a lot of categories and genres.  While
a full and complete list of every singe possible software category
that exists is unlikely to be possible, I have compiled a pretty good
and representative list below:

Audio
Business
Finance
Development Tools
Drivers
Email
Chat
Games
Home & Learning
Icons, Screensavers, etc.
Imaging & 3D
Internet Utilities
Math & Science
Networking & Security
Productivity Tools
System/Disk Utilities
Video

There are three major types of software, Commercial, Shareware and Freeware.

** Commercial Software **
This kind of software is most often what you find in stores.  The
typical model for commercial software says that you buy it up front
and any distribution of that software is illegal (known as pirating).

Examples...
*Adobe Photoshop
*Microsoft Word
*Half-Life 2

** Shareware **
"Shareware is a marketing method for software, whereby a trial version
is distributed without payment ahead of time as is common for
proprietary software. Typically shareware software is obtained free of
charge by downloading, thus allowing one to try out the program ahead
of time. Shareware is also known as try before you buy, demoware,
trialware and many other names. A shareware program is accompanied by
a request for payment, and often payment is required per the terms of
the license past a set period of time. "

http://en.wikipedia.org/wiki/Shareware

Shareware has sub types depending on which method the author uses to
try and get the user to pay.

### CrippleWare ###
"Crippleware programs are free versions of computer programs, lacking
the most advanced or even the crucial features of the original
program. One of the canonical examples of crippleware is a word
processor that cannot save or print. Crippleware versions are made
available in order to increase popularity of the full program without
giving it away for free.

The authors of crippleware defend their marketing practices by noting
that regular shareware versions are often cracked, so that the author
is not paid for his work. Users who disagree with crippleware argue
that they cannot test the program under real life conditions and
therefore do not know whether to buy it."

http://en.wikipedia.org/wiki/Crippleware

### Careware ###
"Careware (or "charityware") is shareware for which either the author
suggests that some payment be made to a nominated charity or a levy
directed to charity is included on top of the distribution charge."

http://en.wikipedia.org/wiki/Careware

### Hostageware ###
"It can also describe programs that time out after a certain number of
days or after the program has been opened a certain number of times"

http://en.wikipedia.org/wiki/Hostageware

### Nagware ###
"Nagware (also known as annoyware) is a type of shareware, that
reminds ?or nags? the user to register it by paying a fee. It usually
does this by popping up a message when the user starts the program or,
worse, intermittently while the user is using the application."

http://en.wikipedia.org/wiki/Nagware

--- Programing Languages ---
In order to make a computer do what you want a person first needs to
be able to communicate with it.  This is where programming languages
come into play.  There are a LOT of different programming languages
which one can choose from.

The three most popular languages at this point are C, C++, and Java. 
With these different languages a user is able to create software
programs like the ones mentioned above.

You may have heard of binary (010101) before.  This is how the
computer reads the programming.  Because writing long and complex
programs in zeros and ones would be near impossible computer languages
were developed.  These contain rules and keywords which a programmer
can use to construct a program.  After he is finished it is then
compiled (translated) into binary so that the computer can read it.

While these languages are often difficult to master they are for the
most part pretty easy to learn  For each of the three languages I have
described below I included the code for a sample program known as
"Hello, World".  This is the standard beginner programming people
write when learning a language.  When compiled and run the program
will output the words "Hello, World" to the screen.

### C ###
The C programming language was originally developed at Bell Labs
between 1969 and 1963.  C was so powerful and easy to use compared to
what currently existed at the time that it quickly became (and to a
large degree still is) one of the most popular languages out there.

It was originally designed for use in the UNIX operating system.  When
it became strong enough in 1973 the entire UNIX kernal was rewritten
in C, marking the first time it had been developed in something other
then assembly.

http://en.wikipedia.org/wiki/C_programming_language

^^^ Sample Code ^^^
#include <stdio.h>

int main(void)
{
    printf("hello, world\n");

    return 0;
}


A basic explanation of each line of the program can be found here:
http://en.wikipedia.org/wiki/C_programming_language#.22hello.2C_world.22_example

### C++ ###
C++ is a lot like C with one huge difference, it has what are known as
"Classes".  Programming with classes is known as object-oriented
programming.  A detailed explanation of object-oriented programming is
another whole answer in itself.  Please see this Wikipedia article for
more information on the subject:

http://en.wikipedia.org/wiki/Object-oriented_programming

^^^ Sample Code ^^^

#include <iostream.h>

main()
{
    cout << "Hello World!";
    return 0;
}

### Java ###
Java is another object-oriented language which was developed by Sun
Microsystems in the early 90s.

"There were five primary goals in the creation of the Java language:
*It should use the object-oriented programming methodology.
*It should allow the same program to be executed on multiple computer platforms.
*It should contain built-in support for using computer networks.
*It should be designed to execute code from remote sources securely.
*It should be easy to use and borrow the good parts of older Object
Oriented languages like C and C++."

http://en.wikipedia.org/wiki/Java_programming_language#Language_characteristics

^^^ Sample Code ^^^
This program does the same thing that the above to do.

public class HelloWorld
{
       public static void main(String[] args)
    {
        System.out.println("Hello world!");
    }
}

--- Sites you might be interested in... ---
Here are some links which you may find interesting.

Programming Language - Wikipedia
http://en.wikipedia.org/wiki/Programming_language

C Programming Tutorial
http://www.its.strath.ac.uk/courses/c/

C++ Programming Tutorial
http://www.cplusplus.com/doc/tutorial/

Java Programming Tutorial
http://java.sun.com/docs/books/tutorial/

I hope this answers your question.  If you need anything cleared up
please request a clarification before rating my answer and I will be
more then happy to help.

Best,
djbaker-ga
Comments  
There are no comments at this time.

Important Disclaimer: Answers and comments provided on Google Answers are general information, and are not intended to substitute for informed professional medical, psychiatric, psychological, tax, legal, investment, accounting, or other professional advice. Google does not endorse, and expressly disclaims liability for any product, manufacturer, distributor, service or service provider mentioned or any opinion expressed in answers or comments. Please read carefully the Google Answers Terms of Service.

If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you.
Search Google Answers for
Google Answers  


Google Home - Answers FAQ - Terms of Service - Privacy Policy