The port that should be set as open to allow users to access this new server is port 443.
<h3>What is a Computer port?</h3>
In regards to computer hardware, a port is known to be a tool that helps to act as a kind of an interface that tend to exist between the computer as well as other computers or peripheral units or tools.
Note that the port connote the aspect of a computing device that is made available for connection to other forms of peripherals such as input.
Therefore, based on the work above, the port that should be set as open to allow users to access this new server is port 443.
Learn more about port from
brainly.com/question/28391396
#SPJ1
Answer:
return value =2.
Here the function f() returns the length of the substring we traversed before we find the same character at the equal index of two substrings.
Take the inputs s= “abcd” and t= “bccd”.
• Now, p1 points to s1, i.e., p1 points to the character ‘a’ of “abcd”. And similarly, p2 points to ‘b’ of “bccd”.
• Then we compare the values at p1 and p2, are not equal, so p1 and p2 both are incremented by 1.
• Now the characters ‘b’ and ‘c’ of “abcd” and “bccd” respectively are compared. They are not equal. So both p1 and p2 both are incremented by 1.
• Now, p1 points to ‘c’ of “ abcd” that is the element at index 2 of s. And p2 points to ‘c’ of “bccd” that is the element at index 2 of t. Here value at p1 and p2 becomes equal. So the break statement is executed. We stop moving forward.
• As p1 is pointing to index 2 and s is pointing to the base that is index 0, so p1-s = 2.
Explanation:
#include<stdio.h>
int f(char *s, char *t);
void main()
{
int k = f("abcd", "bccd");
printf("%d", k);
}
int f(char *s, char *t)
{
char *p1, *p2;
for(p1 = s, p2 = t; *p1 != '\0'&& *p2 != '\0'; p1++, p2++)
{
if (*p1 ==*p2)
break;
}
return (p1-s);
}
OUPUT is given as image
<span>Fixed Price Contracts, Cost Reimbursable Contracts, and <span>Time and Material Contracts are the three basic types. Not to mention </span></span>Sale contracts, Employment contracts, business contracts, and leases.
The answer is D
Explanation: none
<h3>Sorry if i'm wrong, but <u>I think</u> the right answer is option <u>"D"</u> because the website is not an online business or an online store where you can sell stuff is more like a wiki or blog website were people can share their ideas and pictures not sell them</h3>