The internet can be compared to many stuff, such as a world wide web, or a huge box with stuff and you put in what you want and it comes out!
Answer: print("I can code")
Explanation:
luckily im a coder
1. Option 3
2. Option 2
3. Option 3
Answer:
Reference
Explanation:
Variables provide reference to the stored data value.
For example:
int i = 0;
Here i is a variable of type int with an initial value of 0. i is a reference to this stored value 0. Now if I want to update the data, I can do so using this reference.
i = 1;
Now the reference is used to manipulate the stored data and change it to 1. In a similar manner all updates to the value can be done using the variable reference.