// writing c++ function
int maximum ( int a , int b){
if(a>b)
return a;
else
return b;
}
//when this function will be called it will return the max of the integers sent.
//for example
int max = maximum ( 3,4)
//max variable will have 4 returned by the function
Any file with the extension .xlsx is a Microsoft Excel Open XML Format Spreadsheet file. You would expect a spreadsheet when you open it.
Answer:
central server
Explanation:
This is client-server technology, where the centralized computer with the printing device is playing the role of the central server, and the multiple remote users are the clients. Thus a client-server architecture is established. And this enables remote users to share the same printing device, which is possessed by the central server. Hence, the correct answer here is the central server.
Answer:
The answer is "C"
Explanation:
In the computer system, the data which separates a data object into relevant concepts is known as data representation. In the representation of data, it uses the binary digits, that are in the form of '0 and 1'. It is used by computers to store information and these numbers are also known as bits, and wrong choices can be defines as follows:
- In option A, It is wrong because when we see the file details it shows both.
- In option B, It's incorrect because the smallest unit of data representation is bits.
- In option D, It is incorrect because bits includes only "0 and 1".
Answer: 678,363,840
Explanation:
Hi!
The "bg" part of the string could be in 7 possible positions within the string. If we number the characters in the string from 0 to 7, the "b" of "bg" could be in positions 0 to 6.
We need to count the possibilities for the other 6 characters. They can be any of the 26 lower-case letters, but not b nor g, because no letters can be repeated. So we can choose 6 letters from 24 letters, without repetition, and the order is important. The number of such combinations is:

For the total number of strings, we have to multiply with the 7 possible position of "bg". Then, the final number is 678,363,840