Answer:
B
Explanation:
This feels like an error on the question issuer's part.
Answer: IDK
Explanation: ummm I have no idea wut ur asking meh
Answer:
ummm
Explanation:
your on your own it doesn't makes since
Answer:
- def longest(L):
- for x in L:
- if(len(x) % 2 == 0):
- if(x.endswith("ing")):
- return x
- return ""
-
- print(longest(["Playing", "Gaming", "Studying"]))
Explanation:
The solution is written in Python 3.
Firstly, create a function longest that takes one parameter L as required by question (Line 1).
In the function, create a for loop to traverse through each string in L and check if the current string length is even (Line 2 - 3). If so, use string endwiths method to check is the current string ended with "ing". If so return the string (Line 4-5).
At last, test the function by passing a list of string and we shall get the output "Gaming".
Answer: jailbreaking
Explanation:
Jailbreaking is the process by which Apple users can remove software restrictions imposed on iOS and Apple products like the iPad, iPhone, iPod, and more. Jailbreaking allows root access to iOS. It lets users install applications, extensions, and other software applications that are not authorized by Apple’s App Store.