Top answers


What is the denary equivalent of the hexadecimal number A7?

Let's start by looking at the denary (i.e. base 10) number system. In base 10, you have a column for each digit in a number. For example, with the number 5,867 you have a 5 in the 1,000' s column, an 8 in th...
HB
Answered by Henry B. Computing tutor
27201 Views

What are the differences between a stack and a queue?

Both the stack and the queue are data structures, i.e. ways of storing data. It is important to know the differences between how these two data structures operate so that you know when to use one or the othe...
ED
2835 Views

What is method "Overloading" in object-oriented programming (OOP) ?

Method or function overloading allows a method with the same name to be declared more than once given that they have different input parameters. For example, there is a method to calculate the area of shapes...
AS
Answered by Argha S. Computing tutor
28058 Views

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 su...
CD
Answered by Chris D. Computing tutor
5024 Views

What is the difference between local and global variables?

Local variables are defined within a subroutine. Their scope/visibility ends when the cursor leaves the subroutine. Global variables on the other hand are variables that exist outside of all the subroutines ...
CD
Answered by Chris D. Computing tutor
8895 Views