Answer:
Command Interpreter
Explanation:
A command interpreter allows the interaction between users and programs. Just like modern day Graphical user interface where users interact with the programs. Although, they are not as attractive as GUI but they are handy when memory constraints arise.
A command interpreter understands and process various commands exchanged by users in the form of text. Users enter their queries and get results from the command interpreter. Whereas in the case of GUI, users have all the information and icons to select the desired option and get the results.
A network of people and services with which we share ties and which provide support is social support.
<h3>What is Social support?</h3>
This is known to be a form of “support that is opened to any body as a result of social ties to other people, groups, and the bigger community.
Note that A network of people and services with which we share ties and which provide support is social support.
Learn more about social support from
brainly.com/question/7463943
#SPJ1
Answer:
rsort()
Explanation:
the sorting function is used to sort the elements in the array.
the sorting can be increasing or decreasing, depends on the function used.
let discuss the option:
a. sort()
this is the sorting function, it used to sort the array in ascending order.
b. arsort()
this is also sorting function, it used to sort the associated array in descending order according to the value.
d. asort()
this is also sorting function, it used to sort the associated array in ascending order according to the value.
c. rsort()
this is the sorting function, it used to sort the array in descending order.
Therefore, the correct answer is rsort().
Answer:
It assigns the two values in the initialization list to the first two elements and default values to the other elements.
Explanation:
Given
The array initialization
Required
Interpret the statement
double gallons[6] implies that the length/size of the array gallons is 6.
In other words, the array will hold 6 elements
{12.75, 14.87} implies that only the first two elements of the array are initialized
; the remain 4 elements will be set to default 0.