Hi, I am quite excited to start the technical part of my blog! I hope so are you! Let's start with the Abc of computers that we all find a bit hard to put in to words. These are my own definitions made really simple and easy to understand! Computer: An electronic device that computes, stores, processes , manipulates and displays the data. Coined from the term "compute", means to calculate. Facts: First ever computer was used for mathematical calculations. Founder: Charles Babbage - The Father of computers - invented the first ever mechanical computer called "Babbage's Analytical Engine"! Features of a Computer / Advantages of computer over a calculator: Speed, Accuracy, Storage, Multi tasking, Diligence (and many more). A computer comprises of Software and Hardware (all the physical - internal or external components/peripherals that are connected to or a part of computer ex. Keyboard, Mouse, Cabinet, Joystick, USB - pen drive etc. that we c...
Here is the solution:
ReplyDelete= != == ;
equals to IS NOT EQUAL TO double equals
equals is used to assign a value to a variable
Ex. int a = 100;
int b = 200;
double equals to is used to check if two variables contain equal value.
ex. a = 10; b=20;
a==b returns false because a and b values are not equal
; is a statement terminator
very simple.....