1. HTML Boilerplate: This is the basic HTML Boilerplate Code
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    <body>
        
    </body>
    </html> 
  2. C Boilerplate: This is the basic C Language Boilerplate Code
    // C program to demonstrate the boilerplate code
    
    #include <stdio.h>
    int main() {
        // printf() displays the string inside quotation
        printf("Hello, World!");
        return 0;
    } 
  3. C++ Boilerplate: This is the basic C++ Boilerplate Code
    // C++ program to demonstrate the boilerplate code
    
    #include <iostream>
    using namespace std;
    
    // Driver Code
    int main()
    {
        return 0;
    } 
  4. Java Boilerplate: This is the basic Java Boilerplate Code
    // Save the above file as Simple.java.
    
    public class Simple{  
        public static void main(String args[]){  
            System.out.println("Hello Java");  
        }  
    }  
  5. Python Boilerplate: This is the basic Python Boilerplate Code
    # You can give any name to the file. However, the file name should end with .py (For example, hello.py) 
    
    print("Hello, World!")
    
  6. JavaScript Boilerplate: This is the basic JavaScript Boilerplate Code
    // We will use these three ways to print 'Hello, World!'.
    //1. console.log()
    console.log('Hello World');
    
    //2. alert()
    alert("Hello, World!");
    
    //3. document.write()
    document.write('Hello, World!'); 
  7. C# Boilerplate: This is the basic C# Boilerplate Code
    namespace HelloWorld
    {
        class Hello {         
            static void Main(string[] args)
            {
                System.Console.WriteLine("Hello World!");
            }
        }
    }
  8. PHP Boilerplate: This is the basic PHP Boilerplate Code
    <!DOCTYPE html>
    <html>
    <body>
    
    <h1>My first PHP page</h1>
    
    <?php
    echo "Hello World!";
    ?>
    
    </body>
    </html> 
  9. Ruby Boilerplate: This is the basic Ruby Boilerplate Code
    #The .rb file extension is a common convention for specifying the language of the file
    
    puts "Hello World!"
  10. TypeScript Boilerplate: This is the basic TypeScript Boilerplate Code
    //The extension of a TypeScript file is .ts
    
    let message: string = 'Hello, World!';
    console.log(message);