Task 01 - Guinea Assignment
Task 01 - Guinea Assignment
1. Python
Python is an interpreted, object-oriented, high-level programming
language with dynamic semantics developed by Guido van Rossum. It was
originally released in 1991. Designed to be easy as well as fun, the name
"Python" is a nod to the British comedy group Monty Python.
Advantages
Disadvantages
Syntax:
Hello, World!
References:
https://techvidvan.com/tutorials/python-advantages-and-disadvantages/
https://www.w3schools.com/python/python_syntax.asp
https://www.teradata.com/glossary/what-is-python
2. Java
Java is a widely used object-oriented programming language and software
platform that runs on billions of devices, including notebook computers,
mobile devices, gaming consoles, medical devices and many others. The
rules and syntax of Java are based on the C and C++ languages.
Advantages
Disadvantages
Syntax:
System.out.println("Hello World");
References:
https://techvidvan.com/tutorials/pros-and-cons-of-java/
https://www.w3schools.com/java/java_syntax.asp
https://www.ibm.com/topics/java
3. C#
Advantages
Disadvantages
Syntax:
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
References:
https://www.techtarget.com/whatis/definition/C-Sharp
https://www.sololearn.com/blog/c-plus-plus-or-c-sharp/
https://www.w3schools.com/cs/cs_syntax.php
4. C++
C++ (or “C-plus-plus”) is a generic programming language for building
software. It's an object-oriented language. In other words, it emphasizes
using data fields with unique attributes (a.k.a. objects) rather than logic or
functions. A common example of an object is a user account on a website.
Advantages
Disadvantages
Syntax:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
References:
https://www.w3schools.com/cpp/cpp_syntax.asp
https://www.coursera.org/articles/what-is-c-plus-plus
https://www.geeksforgeeks.org/advantages-and-disadvantages-of-cpp/
5. PHP
Hypertext Preprocessor (PHP) is an open-source, free server-side scripting
language widely used in web development. According to Web Technology
Surveys, PHP is used by 78.1% of all websites, including high-traffic
websites like Facebook and Wikipedia.
Advantages
Disadvantages
o It is not that secure due to its open-source, because the ASCII text
file is often easily available.
o It is not suitable for giant content-based web applications.
o PHP doesn’t allow change or modification in the core behavior of
online applications.
o While PHP may be a powerful tool supported by an outsized
community and plentiful reference documentation, there are
easier programming languages for web apps.
Syntax:
<?php
?>
References:
https://www.hostinger.ph/tutorials/what-is-php/
https://www.geeksforgeeks.org/advantages-and-disadvantages-of-php/
https://www.w3schools.com/php/php_syntax.asp