Computer Science Flashcards
What is a program made up?
Variable, keyword, operator, punctuation, Data Types,
What is a Variable?
Variable names are just the symbolic representation of a memory location.
What is a keyword?
Keywords are the reserved words used in programming. Each keywords has fixed meaning and that cannot be changed by user.
What is a Arithmetic operator?
Operators are the symbol which operates on value or a variable. For example: + is a operator to perform addition.
What is a data type?
Data types are the keywords, which are used for assigning a type to a variable.
Integer types
Floating Type
Character types
What are the three primary activities of a program?
Input, processing and output
What is a input?
Input is information a program collects from the outside world
what is processing?
Performing process on information gathered from input.
What is a output?
Output is information a program shows the outside world.
The Programming process?
Steps, which include design, testing, and debugging activities.
what is Procedural and Object-Oriented Programming?
Two ways of thinking about software development and program design.
what is Procedural Programming?
Programmer constructs functions
what is Object-Oriented Programming?
Programming element that contains data and the procedures that operate on the data
what are The Parts of a C++ Program
Comments, #preprocessor directives, namespace, function, { , strings,
return 0,
what is cout object?
This object will display information on the computers screen.