Answer:
Flat web architecture
Explanation: A flat web architecture is a type of web Structure where to link chain exists, in this type of web architecture,users can access the web site with few number of clicks such as in one, two or three clicks with a maximum of four clicks.
One of the basic importance when dealing with web pages is the number of clicks before the page requested can be reached. The lower the number of clicks the better.
A scenario in which a router would send a resign message include the following: A. if a preempted active router fails, the standby router becomes the active router. If the preempted active router regains service, it sends a coup message. The current active router sends the resign message after receiving the coup message.
<h3>What is a router?</h3>
In Computer technology, a router can be defined as a network device (node) that is designed and developed to connect two (2) different computer networks together, in order to allow them communicate by forwarding and receiving encapsulated data (Ethernet frame) and packets.
<h3>What is a resign message?</h3>
In Computer networking, a resign message can be defined as a set of information that is typically sent by an active Hot Standby Router Protocol (HSRP) network device when it is preparing to go offline or whenever it wants to relinquish the active role due to some other reasons.
This ultimately implies that, a resign message instructs or informs a standby router to get ready to become the active router and take over the active role.
Read more on router here: brainly.com/question/24812743
#SPJ1
Scott first step is to ask people who are more educationally inclined in that filed about the work or use the internet or library to research on the topic or previous work that is done in that area.
<h3>What is a research paper?</h3>
This is known to be a kind of written essay on a topic that is done in depth.
Therefore, Scott first step is to ask people who are more educationally inclined in that filed about the work or use the internet or library to research on the topic or previous work that is done in that area.
Learn more about research paper from
brainly.com/question/25257437
#SPJ1
Answer:
The correct answer for the given question is option(A) i.e Global
Explanation:
The global variable is the variable which is declared outside the function The lifetime and scope of global variable in whole the program i.e "Globally" .They can be access anywhere in the program,however local variable are those which is declared inside the function .local variable are access inside that function only where it is declared.
Following are the example of Global variable.
#include <stdio.h> // header file
int t=9;// global variable declared outside the function
int main() // main function()
{
printf("%d",t); // display the value of t
return 0;
}
so the correct answer is Global.