Answer:
phone !!
Explanation:
since it's a mobile app, that would apply to a handheld device !!
i hope this helps !!
Word-processing software includes basic applications designed for casual business or home users and powerful, advanced applications capable of meeting the most-demanding needs of businesses. Many word-processing applications are designed for use as part of a suite or integrated group of word-processing, spreadsheet, and presentation programs
Answer:
Choose internet is the right answer
Answer:
char str[5][100]
Explanation:
See attachment for options:
From the options, we can see that the programming language is C language.
The syntax to store an array of m strings with a maximum of n elements in C is:
char array-name[m][n]
In this case:
--- Number of strings in the array
--- Maximum character in each string
Assume the array name is str, the syntax can be expressed as:
char str[5][100]
Answer:
Percent encoding is the mechanism for encoding the information in the URI (Uniform resource identifier) that basically transmitted the special variable or characters in the URI to the cloud platform.
It is also used in various application for transferring the data by using the HTTP requests.
Percent encoding is also known as uniform resource locator (URL) encoding. The percent encoding basically used to convert the non ASCII characters into URL format which is basically understandable to the all the web server and browsers. In percent encoding the percent sign is known as escape character.