Answer:
I think you have gone mad BTW.....
Answer:
Step by step explanation along with C++ code is provided below.
C++ Code:
#include <iostream>
using namespace std;
int main()
{
int numRows;
int numCols;
int r = 1;
cout <<"Please enter no. of rows"<<endl;
cin>>numRows;
cout <<"Please enter no. of columns"<<endl;
cin>>numCols;
cout<<"Seating arrangement in the theater:"<<endl;
for(int i = 0; i < numRows; i++)
{
char c = 'A';
for(int j = 0; j < numCols; j++)
{
cout <<r << c << " ";
c= c + 1;
}
r= r + 1;
}
return 0;
}
Explanation:
// the outer loop prints the rows
// counter r = r + 1 increments the rows
// the inner loop prints columns
// counter c = c + 1 increments the columns
// int r = 1 ensures that rows starts from 1
Output:
The program is tested multiple times and is working correctly for any number of rows and columns
Please enter no. of rows
2
Please enter no. of columns
3
Seating arrangement in the theater:
1A 1B 1C 2A 2B 2C
Answer:
Web server
Explanation:
A web server's main function is to process, store, and deliver web pages to clients. The Hypertext Transfer Protocol takes care of the communication between the server and the client. If a web server is malfunctioning, any website you try to open on your browser would display a "page not found" error on your screen.
Answer:
ASCII85 is the most efficient coding system – data size increases by just 20%. It has a couple of minor disadvantages. It uses a larger character set, and so it is only compatible with ASCII (unlike Base64, which supports various close relatives of ASCII). It is also slightly more demanding computationally, since it uses division rather than bit shifting. However, these factors are becoming increasingly irrelevant in the context of modern computer systems. The main reason that Base64 continues to be used more than ASCII85 is probably the simple fact that it has been around for longer.
Explanation:
Search has come to be one of the key features of mobile computing. Gone are the days of maps, phone books and a book shelf full of encyclopedias. The users want data at their fingertips and at all times and exploration is how that come to pass. Apple is on the rampage siri which agree to users to connect to yelp and wolfram alpha for searches. The facebook launched graph search which appeals its data from the site. These approaches will most likely never reach the popularity or efficiency of google but, they could succeed in reducing market share of google.