What is an OOP (Object Oriented Programming) language?

Type of programming that concerns the use of objects based on classes. Classes consist of methods and data structures and are available to all subclasses and objects based on the parent class. Objects and subclasses may have their own methods and data elements. (C++, Delphi, VB.Net, Visual C++, Java).

CD

Related Computing A Level answers

All answers ▸

A computer stores floating point numbers of size 1 byte, with 3 bits for the mantissa and 5 bits for the exponent. State what the effects would be on the stored numbers if instead 5 bits were used for the mantissa and 3 bits were used for the exponent.


Discuss the differences between operating systems designed for desktop computers and embedded systems.


Write a function in pseudocode that determines if a given string is a palindrome


Given an ordered array of integers "V" and a integer "Sum", write a function that would return "true" if it finds two numbers in V that add up to Sum, and "false" otherwise.