Answer:
She needs a responsive design
Explanation:
The website needs to detect what kind of device the user is using. It could be by the window size (not very accurate), or a piece of code to figure out the device being used. Once it knows what device is being used, and the size of the page, it should change its layout to fit the design.
Answer:
sum, price, count
Explanation:
Programmers should use significant names for the variables.
Not only it makes it easier for them to remember what kind of information is stored in each variable, but it also makes life simpler for anyone who would read the code later.
Names like sum, price and count are significant names ( assuming they actually hold this kind of data), and will make the re-reading of the program code much easier.
Answer:
client
server
Explanation:
The browser is the client, and the system that sends you the web page is known as the server. And these together form the client-server architecture. A perfect example of a client-server model is, however, a video game that has an app for the client, and a server. And as an example, such set up is established using the socket programming or the SignalR in dot net. Various other technology does support socket programming. And you can find it in fact on all the platforms.