Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 13

Group Presentation

 Topic should be computer related.


 Topic shall be finalized after discussion with the instructor.
 Not more than 4 members in a group.
 It will play a major role in your mid grading
 Every member should have Sound Knowledge of Topic.
 Marking will be individual as well as group based.
Flow chart
A graphical representation of the steps to be performed sequentially for
solving a specific problem
Start

Process

Decision

End
1. Low Level Language vs High Level Language

2. Compiler Vs Interpreter
Programming
Giving sequential
instructions to computer for
performing a specific task
Syntax of programming language
 Rules that defines the structure of a language.
 E.G. English sentences usually follow the
form: Subject - verb - Object

 if we do not follow the syntax ?


#include <stdio.h>

int main() {

printf ( “My first line of code” );

}
Print something
on screen
Variables
Names given to computer memory location used to store some values
Data Types
What type of values an object can take, and what type of operations
can be performed on them
Declaring a variable

DataType VariableName
Program to add two numbers
Number 1 = Store in memory at location L1
Number 2 = Store in memory at location L2

You might also like