Answer:
<em>sorry</em><em> </em><em>I </em><em>don't</em><em> </em><em>know</em><em> </em><em> </em><em>I </em><em> </em><em>can't</em><em> </em><em>will</em><em> </em><em>your</em><em> </em><em>help</em>
Your question is poorly formatted
<em>#include <stdio.h>
</em>
<em>int main(void) {
</em>
<em>int i, t[4];
</em>
<em>t[3] = 0;
</em>
<em>for (i = 1; i >= 0; i--)
</em>
<em>t[i] = t[3] * i;
</em>
<em>printf("%d", +t[1]);
</em>
<em>return 0;
</em>
<em>}</em>
Answer:
It outputs 0
Explanation:
I'll start my explanation from the third line
This line declares an integer variable i and an array of 4 elements of type integer
<em>int i, t[4];
</em>
<em />
This line initialize the 3rd index element to 0
<em>t[3] = 0;
</em>
<em />
The next two lines is an iteration;
The first line of the iteration iterates the value of i in descending order from 1 to 0
<em>for (i = 1; i >= 0; i--)
</em>
<em />
This line of the iteration calculates t[1] as t[3] * i and t[0] as t[3] * i; Since t[3] is 0; both t[1] and t[0] will be 0
<em>t[i] = t[3] * i;
</em>
<em />
This line prints t[1] which is 0
<em>printf("%d", +t[1]);
</em>
Answer: B) Lack of caption
Explanation:
All the given options are important in terms of quality of a well design websites except lack of caption. As, lack of caption may result in reduce efficiency and quality of the content.
Caption is define as title in the content of any website, which basically describe the brief description about the whole content. It illustrate the content briefly in the website. Therefore, this feature is important for designing the website.
Therefore, option (B) is correct.
Answer:
i= 1
for i in range(1,n):
if i * i < n:
print(2* i + 1)
i += 1
else:
print('Hakuna Matata')
Explanation:
First, there's a need to rewrite the code segment in your question (because of indentation)
<em>i= 1</em>
<em>while i*i < n:</em>
<em> print(2* i + 1)</em>
<em> i += 1</em>
<em>else:</em>
<em> print('Hakuna Matata')</em>
<em />
The explanation of the equivalent of the above while loop is as follows
This line initializes i to 1
i= 1
This line iterates from 1 to n-1
for i in range(1,n):
This line checks if i * i is less than n
if i * i < n:
The following line is executed if the above condition is satisfied; otherwise, nothing is done
print(2* i + 1)
The value of i is incremented by 1 using this line
i += 1
The following is executed at the end of the iteration
else:
print('Hakuna Matata')
<em>Note: Assume any value of n, both programs display the same output</em>
On windows go to your file explorer right click on an empty space then click new text file. Type what you want on the text file then click at the top left of that window “file” then “save as” then in the typing bar at the bottom of the new window rename whatever was there to “cyber security” then change where you want to place that file and click enter