Seninar 7

Python
Python is a programming language. It is well known in the programming business because it can program anything that requires to be progrmed. Examples that Python is used for are websites, in gaming, and apps like Instagram.


SQL
SQL is a programming language that is designed to manage data held in a relational database management system. It is also for stream processing in a relational data stream management system.


C++
C++ is a programming language used globally. C++ makes programs/applications to use. It can be used in making CGI scripts and console-only DOS programs.


C
C a programming language similar to C++, but it does not support classes and objects like C++ does. C is a computer and general purpose language. It operates a lot of functions like embeded hard work programs.


Greetings assingment

print("Hi! This is my first assignment using Javascript!(but used in python right now.)")

Equstions Assignment

1)
num1 = 2
num2 = 8
total = float(num1) - float(num2)
print('The sum of {0} and {1} is {2}'.format(num1, num2, total))


2)
num3 = 7
num4 = 8
total2 = float(num3) + float(num4)
print('The sum of {0} and {1} is {2}'.format(num3, num4, total2))


3)
num5 = 5
num6 = 4
total3 = float(num5) * float(num6)
print('The product of {0} and {1} is {2}'.format(num5, num6, total3))


4)
num7 = 49
num8 = 9
total4 = float(num7) / float(num8)
print('The quotient of {0} and {1} is {2}'.format(num7, num8, total4))