“Computer Code Reference Page”.

“In HTML, we can represent programming code, variables, keyboard input, and system responses using special tags.”


Code Examples

HTML Program:


    <html>
  <body >
    <p>Hello World>
  </body>
</html>

C programming

    
#include stdio.h>

int main()
{
    printf("Hello World");

    return 0;
}
    
    

Java script programming

    
       console.log("Hello World"); 
    

Keyboard Input Examples

To copy text: Ctrl + C  
To paste text: Ctrl + V  
To save a file: Ctrl + S 
To Back the file: ctrl + Z 

Variables in Mathematics

    Area of Circle = π × r2  
Speed = d / t  



System Messages

Examples1:

Input: 4+3

Output: 7

Examples2:

Command: dir

Output: List of files displayed here


[Back to Top]