Technical Videos and queries!


VIDEO TUTORIALS

1. C programming Language Tutorial-2

 a) C programming tutorials by thenewboston(Bucky Roberts!) -15 videos



b) C Programming language youtube playlist by DEREK BANAS


2. programming with C++ for beginners(playlist) by thenewboston(Bucky Roberts!) -73 videos




3. Introduction to linux(playlist) by eli the computer guy!-9 videos





4. Java tutorial -2

 a) java beginner programming tutorials by thenewboston(Bucky Roberts!) -87 videos



b) Java language youtube playlist by DEREK BANAS



5.Introduction to Networking(playlist) by eli the computer guy!-29 videos






6. Learn xhtml & CSS- 2

a) xhtml and css tutorial with thenewboston(Bucky Roberts!)-46 videos




b) css, xhtml and html youtube playlist by DEREK BANAS



7. Learn the basics of JavaScript -2 

a) javascript with thenewboston(Bucky Roberts!) -40 videos



b) javascript youtube playlist by DEREK BANAS



8. Learn HTML5(playlist) with thenewboston(Bucky Roberts!) -53 videos




NAMES OF LARGE NUMBERS::
This article lists and discusses the derivation of names of large numbers. The long and short scales are two of several different large number naming systems used throughout the world for integer powers of ten.Many countries, including most in continental Europe, use the long scale whereas most English-speaking countries use the short scale. In all such countries, the number names are translated into the local language, but retain a name similarity due to shared etymology. Some languages, particularly in East Asia, have large number naming systems that are different from the long and short scales.
Long scale(Continental Europe, Archaic British, and India) is the English translation of the French term échelle longue. It refers to a system of large number names in which every new term greater than million is 1,000,000 times the previous term: billion means a million millions (10^12), trillion means a million billions (10^18), and so on.
Short scale(USA and Modern British) is the English translation of the French term échelle courte. It refers to a system of large number names in which every new term greater than million is 1,000 times the previous term: billion means a thousand millions (10^9), trillion means a thousand billions (10^12), and so on.Given Image is of a short scale large numbers.

1 comment:

  1. what is the difference between these 2 programs?

    int i=5;
    printf("%d",i++*i--);

    O/P:30

    int i=5,j;
    j=i++*i--;
    printf("%d",j);


    O/P:25

    ReplyDelete