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;
}
p {
font-family: tahoma;
}
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 Example
if 7 > 2:
print(“Seven is greater than two!”)
else:
print(“Seven is less than two!”)
Java Example
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
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': [1, 2, 3, 4, 7], 'col2': [4, 5, 6, 9, 5], 'col3': [7, 8, 12, 1, 11]}
df = pd.DataFrame(data=d)
print(df)
SQL Query
CREATE TABLE Student (
StudentID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
Course varchar(255)
);
SELECT * FROM Student;
PHP Example
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
C++ Example
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
Data Warehouse And Data Mining
Data Communication & Networking
Developed and maintained by
Karan Jaywant Ghodake & All Team.
©2024 Robondia Technologies all rights reserved.