ENTERING INSIDE A COMPUTER WITH
ADITYA BHARDWAJ
VON NEUMANN architecture : It explains the basic working of a computer that is -
1) Taking input from user
2) Processing on input which means performing different operations on input.
3) Returning output to user.
Meomry-
Computer has its own memory where data given by user is stored generally called as memory cells.The variables which we declare in our programmes are stored in these memory cells.The location of these memory cells is the name which we give to our variables,
suppose,I write INT a=20;
Here, a memory cell will be given a name a and 20 will be stored in it.
Operators-
Different operators are used to perform various tasks,some of these are,
1) Arithmetic operators-(+,-,*,/,%)-(%-is the modulus operator and returns remainder.
2)Logical Operators
3)Relational Operators
Apart from these a lots of other operators are there which we will learn with time.
Comments
Post a Comment