answersLogoWhite

0

taha ua tolu fa nima ono fitu valu hiva hongofulu

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you count backwards from 1 to 10?

you cna you can only count backwards form 10-1


How long does it take to count from 1 to 10 sextillion?

It depends with your speed but it can take you 10^18 light years to count from 1 to 10 sextillion.


How do you write a program in c that will count from 1 to 10 and its square for each count?

int i; for (i=1; i<=10; i++) printf ("%d %d\n", i, i*i);


How do you write 10 times 10 times 10 times 10 times 10 times 10?

Locate 6,1Input "Your Name Please ",Nam$LOCATE 8,1FOR Count=1 to 10Print TAB(5) Count " > ";Nam$Next Count


Different betbeen while dowhileloop?

public class DoWhileLoopDemo {public static void main(String[] args) {int count = 1;System.out.println("Printing Numbers from 1 to 10");do{System.out.println(count++);}while( count


What is 1 1 1 1 1 1 1 1 1 1?

it is 10. First, you need to count how many 1's there are. 1,2,3,4,5,6,7,8,9,10! There are 10.


How do you count from 1-10 in Afrikaans?

1 2 3 4 5 6 7 8 9 10


How many squares are there from 1 to 100?

there are 10 squares if you count 100


What does the tongan shield repersents?

the tongan shield repersents Tonga and the tongan creation and salotes death


What are the ratings and certificates for Count Duckula - 1988 Castle Duckula Open to the Public 1-10?

Count Duckula - 1988 Castle Duckula Open to the Public 1-10 is rated/received certificates of: Australia:G


What is 100000000 in exponential form?

Count the zeroes. 10000000000 = 1 x 10^10 (the ^ means exponent).


What is the maximum number that you can count up to using 10 bits14 bits and count up to a maximum of 511 63?

Using n bits, you can count to 2n - 1. This is for unsigned integers. So 10 bits = 210 - 1 = 1023 14 bits = 214 - 1 = 16383 To count to 511 you need log2(511+1) = log2(512) = 9 bits. To count to 63 you need log2(63+1) = log2(64) = 6 bits.