Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 2482 points

Syah

Favorite Answers23%
Answers81
  • what are the steps to understands network?

    i want to learn networking with online tutorials, i've reads some of articles about networking such as the wikipedia, etc. But its doesn't work, there are some of terms that i just dont know what the meaning of the terms they use within those articles are. Yes, they provide links on the terms, but its same as the previous article with the terms that i dont know what they are. And it make me can't understands those articles. Can you please tell me what are the steps/structure to networking so i can learn them before i learn networking, thanks

    1 AnswerComputer Networking8 years ago
  • python: How to understanding what port, protocol, and socket are?

    i have two smartphones, one of my phone's screen was broken, and it still work. I have an idea to make the broken device to be my server, so i can read and sending sms, and play mp3 within the broken phone with python program on another phone with bluetooth connection. I have try to connect the great phone to the broken phone with bluetooth, but it has been show me that "no ports found". I don't know what the port is. Then i browse to google, i've been reads the port articles, but i can't understands. within the articles i've found new words; "socket" and "protocol", all of these stuffs make me so confuse. Please, make me understand the port, socket and protocol above. I will very appreciate it. Thanks..

    1 AnswerProgramming & Design8 years ago
  • What is the best language ever?

    i just thingking that what the best language is.

    everything that i see are objects, my question is object, your answer is object, the process of process is object, you type your keyboard while you within a program is object, the html page is object.

    html e.g.

    We needs a server to make dinamic page.

    We needs a client to read a page.

    When client type something within, we can make something happen in server.

    how to handle two sides (client/server) with just one language. What is the best language to do so?

    thanks..

    5 AnswersProgramming & Design8 years ago
  • Python: How to make 000000 filename?

    I want to write the zero's like this: a=000000

    so i can make it being a file name using "while loop".

    I've try to make a thousand of simple .txt files by while loop using

    a=0

    while a < 999:

    a += 1

    mycreatefile()

    and it was success.

    but, when i forget the law of math and try to make a file name with variable:

    a = 000000

    of course it will result '0'.

    but i just dont know how to make 000000 being a variable, and variable can be used to do 'while loop'

    a = 000000

    000000 < 999999:

    a += 1

    print a

    how?

    thanks

  • Python: which is the right code?

    the "_" sign below are identation (space)

    a = u"it's "

    b = 0

    while b < 10:

    ____b = b + 1

    ____print a, b

    if b == 5:

    ____a = u"the number is "

    the code's must be print:

    it's 0

    it's 1

    it's 2

    it's 3

    it's 4

    it's 5

    the number is 6

    the number is 7

    the number is 8

    the number is 9

    the number is 10

    but, its not print like that, whats wrong?

    1 AnswerProgramming & Design8 years ago
  • Python: whats wrong with this code?

    first code

    a = 0 while a < 10 :

    a = a + 1

    print a

    #second code

    a = 0

    while a < 10 :

    print a

    a = a + 1

    first code, its work.

    but the second code, it just print a in one time (the loop doesn't work) can you tell me the reason. Thanks

    1 AnswerProgramming & Design8 years ago
  • where the place that i can learn english?

    hi there.. Glad to meet you here.. ^_^

    i wanna learn english language by online, but i don't know where the right place is.

    i'd like to learn english in an english learning forum that i can keep conversation up with another members, so i can make a lot of new friends too..

    Would you like to tell me where the forum is?

    1 AnswerLanguages8 years ago
  • Can i put a lot of javascript in single file?

    HTML:

    <!DOCTYPE html>

    <head>

    <link rel="stylesheet" type="text/css" href="example.css" />

    <script type="text/javascript" src="example.js"></script>

    <title>example</title>

    </head>

    <body onload="myBody()">

    <div id="content1" onload="ContentOne">

    </div>

    <div id="content2" onload="ContentTwo()">

    </div>

    <div id="content3 onload="ContentThree()">

    </div>

    </body>

    </html>

    JAVASCRIPT:

    function myBody()

    {

    bla bla;

    }

    function ContentOne()

    {

    bla bla;

    )

    function ContentTwo()

    {

    bla bla;

    }

    function ContentThree()

    {

    bla bla;

    }

    /* and so on till the hundreds of functions */

    i've try it on my browser, firstly, i put 3 functions and its work, and then i put lot of functions and it isn't work.

    so, whats wrong??

    please help.. :(

    1 AnswerProgramming & Design8 years ago