Top answers


How would you check if a number is palindrome using a looping algorithm in any programming language ?

A palindrome number is one which remains the same when its digits are reversed. For example 121, if you write 121 backwards its still 121. The algorithm involves a really simple loop which just reverses the ...
YR
11842 Views

Project Euler Question 3: What is the largest prime factor of the number 600851475143?

To answer this question you must first fully understand what prime factors are. Any positive integer number can be 'split' down into a product of its prime factors, that is, the number can only be made by mu...
TE
Answered by Tom E. Computing tutor
4476 Views

What is the difference between a data structure and a data type?

A data structure is a way of describing a certain way to organize peices of data so that operations and alogrithms can be more easily applied. For example tree type datastructures often allow for efficient s...
TB
Answered by Tom B. Computing tutor
30691 Views

Which are the parts of a compuer?

Hard drive output devices such as printer, screen processor CD/DVD driver input devices such as keyboard, mouse
PQ
Answered by Pablo Q. Computing tutor
2350 Views

What is 55 using 8-bit unsigned binary?

Answer: 00110111 Thinking: Two possible ways of answering this question expected for A Level and even at GCSE, let's start with the most common. - Method one - consider the column headers for binary numbers....
JC
Answered by Joseph C. Computing tutor
22095 Views