Answer:
A = False, B = True
Explanation:
|| is equal OR. To the expression be true, you need one of them to be true or both.
A = TRUE, B = FALSE
Returns true
A = FALSE, B = FALSE
Returns true
A = TRUE, B = TRUE
Returns true
Using the knowledge of computational language in python it is possible to write a code that tries to organize the names in an assorted way and any name can be included.
<h3>Writing code in python:</h3>
<em>names_list = []</em>
<em>for i in range(0, 5):</em>
<em> names_list.append(input("Name: "))</em>
<em>sorted_last_names = sorted([name.split()[-1] for name in names_list])</em>
<em>print(sorted_last_names)</em>
See moer about python at brainly.com/question/18502436
#SPJ1
Answer: An application software is a type of software that the user interacts with, while a system software is a type of software that the system interacts with.
Hope this helped you :)