19
loading...
This website collects cookies to deliver better user experience
Types of Programming Languages: There are two types of Programming
languages.
Assembler: It is a program which will translate Assembly language programs to Machine language.
Compiler: It is a program which will translate a High level language program to Machine language.
Interpreter: It is a program which will translate and execute a High level language program one statement at a time.
Source Program : It is a High level language program or Assembly language program given to the Compiler or Assembler as Input.
Object Program : It is a Machine language program generated by the Compiler or Assembler as Output.
Algorithm : It is a step by step procedure written in our own language for solving the problem.
Flow Chart : It is a pictorial representation of steps for solving the problem.
cent=float (input("Enter temperature in centigrade: "))
fahr=cent * 180/100 + 32
print ("\nThe temperature in Fahrenheit is ", fahr)