Answer:
There is Name resolution failure
Explanation:
This normally occurs when the computer can't access the host (your server). It can be caused by several factors, such as:
-Internet connectivity is down
-The client does not have DNS servers configured or is configured with the incorrect DNS server IP addresses.
-The DNS servers are failing.
The administrative value of distance of the route refer to the exhibit, for the router r1 to reach the destination ipv6 address of 2001:db8:cafe:4::a is 120. !220 is the administrative distance value of the route between the router r1 to reach the destination of ipv6 address.
The answer is prism, The atmosphere can produce the same effects<span> as a </span>prism<span> when the </span>Sun is low in the sky<span>. </span>
A Command is an instruction for a computer to perform a specific task.
Answer:
#include<iostream>
using namespace std;
//main function
int main(){
//initialize the variables
int n = 5;
int j=1;
// for loop
for(;j<=n;j++){
cout<<"*"; //print the '*'
}
}
Explanation:
Create the main function and declare the variable n with the value 5 and initialize the variable j with zero.
take a for loop for executing the statement again and again until a condition is not false.
Syntax for loop:
for(initialize; condition; increment/decrement)
{
statement;
}
we can initialize the variable outside as well but the semicolon always present in the loop otherwise compiler gives the error.
for example:
int i=0;
for(; i<4; i++){
statement;
}
The condition put in the original code is j <= n and n has the value 5. so, the loop executes 5 times and inside the loop, write the print statement for print the character '*'.