Answer:
Answered below
Explanation:
Data values in a program are held in variables. Variables are like containers for holding different types of data. A variable can be identified depending on the kind of data it holds. Variables can hold data types of integers, strings, arrays, lists, sets, Boolean etc. They hold unique data types and a can not hold different data types. Different rules exist for naming variables in different programming languages. A variable name should start with lowercase letters and be descriptive of the data it holds.
Answer:
You can open a HTML document in internet explorer usually browsers can open HTML files.
The example where the alarm of the house set up, delivery updated should be provided, etc should represent the function example of the artificial intelligence.
The following information related to artificial intelligence is:
- It refers to the human intelligence where the machines could be treated as humans and according to this, the actions should be mimic.
- It should be used for any kind of machine where the traits should be associated along with the mind of the human-like for learning & problem-solving purpose.
Therefore we can conclude that The example where the alarm of the house set up, delivery updated should be provided, etc should represent the function example of the artificial intelligence.
Learn more about the machine here: brainly.com/question/2555822
Answer:
Colon(:) is the correct answer.
Explanation:
The colon(:) is used to contain those fields which is calculated in the queries. In other words, the colon is used to insert the name for that field which is calculated then, the user uses the colon(:) and after that, he uses the expression in the columns or the field row. So, That's why the following option is true.
Answer:
value=int(input("Enter the number up-to the user wants the Fibonacci series: "))
a=0
b=1
c=1
for x in range(value):
print(c,end=" ")
c=a+b
a=b
b=c
Output :
- If the user input 5, then the output is "1 1 2 3 5".
- If the user input 10, then the output is "1 1 2 3 5 8 13 21 34 55".
Explanation:
- The above defined a python program which is used for the Fibonacci series.
- The first line of the program is used to instruct the user and take the input from the user.
- Then the for loop executes up-to that range value.
- Then in the for-loop, the two variable needs to store the current value and previous value which is used to give the series after addition.