Top answers


Question 14)http://ibdocuments.com/IB%20PAST%20PAPERS%20-%20SUBJECT/Group%204%20-%20The%20sciences/Computer_science_SL/2007%20November%20Examination%20Session/English%20Papers/Computer_science_paper_1_SL.pdf

a) With the word access modifier "private" we are declaring that the method will only be accessible within that class (i.e you can not call the method from an external class/file). b) Since the val...
RP
Answered by Raul P. Computing tutor
2116 Views

What is a network protocol and why do we need it?

In computer networking, in order for two end devices to communicate in some way, we need rules. These rules are called network protocols. Network protocols are predefined set of rules for effective communica...
TM
Answered by Toma M. Computing tutor
5897 Views

How do you convert a number between decimal and binary?

The number system we use to write numbers is called a positional system. Each digit of the number is a multiplier of the increasing powers of the base. So for binary: 1011 2 = 1 * 2 3 + 0 * 2 2 + 1 * 2 1 + 1...
KM
Answered by Kacper M. Computing tutor
2084 Views

Define how recursion works

Recusion works by creating a method which is defined in terms of itself. This effectively means that the method will make method calls to itself. It makes these calls using increasingly reduced problem sizes...
MK
1981 Views

The program I've written doesn't do what its supposed to! I don't have any errors, so I don't even know where to start looking for the problem. Where can I begin?

Learning strategies for isolating issues in non-trivial programs is essential for successful programming of any level. Unlike syntax or run-time errors which can often be looked up online or in a book, a pro...
BC
Answered by Brendan C. Computing tutor
2403 Views