What the hell is the point of this, just to waist people's time?
Answer TCP/IP is the most common protocol in Local Area Networks.
Answer:
Explanation:
The constant function is useful in algorithm analysis, because it characterizes the number of steps needed to do a basic operation on a computer, like adding two numbers, assigning a value to some variable, or comparing two numbers. Executing one instruction a fixed number of times also needs constant time only.
Answer:
Singleton pattern is the pattern for design that is build using the global variables which creates a lot of drawback in the designing. Singleton pattern are considered with the global variable and thus cannot be bound into single unit which complexes the components in design.
They have a loose coupled variables in design and also does not show the property of the multi-threading .These feature are responsible for the decrement in the performance and thus are not highly preferred choice for the pattern.So, it is known as the "anti- pattern".
Answer:
Written in Python
word = input("Word: ")
if(word[0]=='a' or word[0]=='e' or word[0]=='i' or word[0] =='o' or word[0]=='u'):
print(word+"ay")
else:
a = word[1:]
print(a+word[0]+"ay")
Explanation:
<em>The program was written in Python and I've added the explanation as an attachment; where I used comments as explanations</em>