Answer:
T
Explanation:
just finished the assignment on edge
Answer:
Start
Input n, 2
Calculate if (n%2==0) then is divisible else not divisible
Output number is divisible or not
Stop
Explanation:
Answer:
userInput = str(input("Enter your sentence here.\n")).upper()
def getPigLatin(userInput):
splitInput = userInput.split(" ")
newList = []
for word in splitInput:
firstLetter = word[0]
if len(word) == 1:
word += 'AY'
newList.append(word)
else:
word = word.strip(word[0])
word += firstLetter
word += 'AY'
newList.append(word)
print(*newList, sep= " ")
getPigLatin(userInput)
Explanation:
This solution is done in Python
First the user is prompt to enter a statement, the statement converted to string and also capitalize using str and upper() built-in function. The user input is assigned to userInput variable.
The getPigLatin function is defined and it accept a string as parameter. Inside the getPigLatin function, the userInput is splitted and assigned to splitInput variable.
An empty list is also initialized and assigned to newList. Next, we loop through the splitInput. During the loop; we first check if the length of an element is one, then we just add 'AY' to the element and add the element to the newList. Else, if the element length is more than one; we strip the first letter from the word and also re-assign it to word, then the stripped first letter is added to the end of the word. Next, 'AY' is added to the word and the element is add to the newList.
The last line of the getPigLatin function display the entire element of the list using a space seperator.
The last line of the entire solution call the function passing in the userInput as argument.
The order that the transmission control protocol (tcp) generally send all segments is a sequential order.
<h3>What is a transmission control protocol?</h3>
It should be noted that the transmission contol protocol simply means a communication standard that enables application programs to exchange messages over a network
In this case, the order that the transmission control protocol (tcp) generally send all segments is a sequential order.
Learn more about transmission contol protocol on:
brainly.com/question/14219758
#SPJ12