1. 1.
    0
    2)

    a keyword is a reserved word, used by the programming language to establish actions or commands. for example, in the line:

    while (value < 100) {
    //block of code
    }

    "while" is a keyword, used to indicate iteration (loop) of what's inside the block of code.

    variables are user-defined words that are able to hold values. in the previous case, "value" can be thought as a variable.
    ···
   tümünü göster