Answer:
#HERE IS CODE IN PYTHON
#function to find length of shortest and longest string in the array
def fun(list2):
#find length of shortest string
mn=len(min(list2))
#find length of longest string
mx=len(max(list2))
#return both the value
return mn,mx
#array of strings
list2 = ['Ford', 'Volvo', 'BMW', 'MARUTI','TATA']
# call the function
mn,mx=fun(list2)
#print the result
print("shortest length is:",mn)
print("longest length is:",mx)
Explanation:
Create an array of strings.Call the function fun() with array as parameter. Here min() function will find the minimum string among all the strings of array and then len() function will find its length and assign to "mn". Similarly max() will find the largest string and then len() will find its length and assign to "mx". Function fun() will return "mn" & "mx".Then print the length of shortest and longest string.
Output:
shortest length is: 3
longest length is: 5
The main characteristic of a company with suggests that it operates with an informal work culture is flexible working hours. With this kind of work culture, <span>workers are allowed to alter their workday start and finish times; and are not required to strictly follow the traditional work arrangements of the standard 9 a.m. to 5 p.m</span>
Answer: A. OAuth
Explanation:
OAuth is one of the process by which different applications basically the third party applications can have access to account details of the end users. Here the process is completely governed by the principles of authorization protocols. Similarly in OAuth the access to the details of the end users are maintained by the process of a token. The third party upon access of the token is able to access the end users account information.
OAuth was established in 2007 and works on the framework of the open source federation.
So in this regard IIya would be recommended OAuth technology for her federal system technology.
Answer:
Internal Hardware - Internal hardware is the hardware within the computer that you can physically see and touch if you were to take apart the computer.
Internal Software - Internal software is software within the computer that you cannot physically touch. It is a collection of programming code installed on your computer's hard drive.
Explanation:
The flight code of the tsg airlines is an illustration of computer coding
The code of the flight is AayvC
<h3>How to determine the code of the flight?</h3>
From the question, we have the following parameters:
- UK = A, Europe = B, Asian = C, and the Americas = D.
- Flight between 10 pm and 6 am = (a,b,c, and d)
- Male passengers = X; Female passengers = Y.
- Children under 16 = (x.y)
- Vegetarian Meal = v; Beef = b, Children = K
- First Class = A, Business Class = P; Economy = C
To code the flight of the girl, we have the following parameters:
- Destination =UK; UK code is A
- Time = 5AM; UK flight before 6AM is coded a
- Female children under 16 is coded y
- Meal = vegetarian; The code for this is v
- Economy class is coded C
Hence, the code of the flight is AayvC
Read more about coding at:
brainly.com/question/24735155