Answer:
Option c is the correct answer for the above question.
Explanation:
View states are a mechanism that is used in c# programming language, It is used on only one page on which the user or programmer is working currently. It does not hold the records when the control goes to the other page.
The above question also wants which is described above. Hence option c is the correct answer while the other is not because:-
- Option a states about the query string which is not any technique to hold the record.
- Option b states about cookies which are used to hold the record of all page.
- Option d states about the session which is used to hold any record and can be accessed on any page.
Answer: a slide with a size 18 font and five images
Explanation:
the text isnt that big to overpower the images and vise versa
The process that determines how bits are represented on the medium is called encoding. It is the process of converting a certain data into a particular format that is required for a certain processing need like program execution, data transmission or file conversion.
An operating system like windows or linux
Question:
Write a function that adds together all values from 0 to a given value and returns the final number. For example, if the given value is `4`, you would add 0 + 1 + 2 + 3 + 4
Answer:
In Python:
def add_to_value(n):
sum = 0
for i in range(n+1):
sum = sum + i
return sum
Explanation:
This line defines the function
def add_to_value(n):
This line initializes sum to 0
sum = 0
The following iteration adds from 0 to n
<em> for i in range(n+1):</em>
<em> sum = sum + i</em>
This line returns the calculated sum
return sum