Learn To Code With

Robondia Technologies

HTML Example

<!DOCTYPE html>
<html>
<head>
<title>www.robondia.com</title>
</head>
<body>

<h1>This is a heading tag.</h1>
<p>This is a paragraph tag.</p>

</body>
</html>

CSS Example

body {
  background-color: orange;
}


h1 {
  color: green;
  text-align: center;
}


{
  font-family: tahoma;
}

Javascript

The language for Programming web pages.

Javascript Example

<button onclick=”myFunction()”>Click Here!</button>

<script>
function myFunction() {
  let x = document.getElementById(“DemoExample”);
  x.style.fontSize = “18px”;
  x.style.color = “orange”;
}
</script>

Discover Your Journey With Us

Python

A Popular Programming Language.

Python Example

if 7 > 2:
  print(“Seven is greater than two!”)

else:
  print(“Seven is less than two!”)

Java

A Most Popular Programming Language.

Java Example

public class Main {
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}

C Language

A Procedural Programming Language.

C Language Example

#include <stdio.h>

int main() {
  printf("Hello World!");
  return 0;
}

C# (.NET)

C# is a Programming Language Runs On The .NET Framework.

C# Example

using System;

namespace DemoApp
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello World!");    
    }
  }
}

Data Science

Study of data to extract meaningful insights for business.

Data Science Example

import pandas as pd

d = {'col1': [12347], 'col2': [45695], 'col3': [7812111]}

df = pd.DataFrame(data=d)

print(df)

SQL

A Language For Accessing Database.

SQL Query

CREATE TABLE Student (
    StudentID int,
    LastName varchar(255),
    FirstName varchar(255),
    Address varchar(255),
    Course varchar(255)
);

SELECT * FROM Student;

PHP

A Web Server Programming Language.

PHP Example

<!DOCTYPE html>
<html>
<body>
 
<?php
echo "My first PHP script!";
?>

</body>
</html>

C++

C++ is a Popular Programming Language.

C++ Example

#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!";
  return 0;
}

Data Warehouse And Data Mining


Data Communication & Networking


Rating With Us

Contact Us

    Developed and maintained by
    Karan Jaywant Ghodake & All Team.

    ©2024 Robondia Technologies all rights reserved.

    Scroll to Top