Print(companions);
Print(companions);
Print(companions);
Print(companions);
<u>Answer</u>:
<u>EXAMPLES:</u>
Primary domain name could be “bestwebdesigner.com,”
subdomain to that domain called “blog.bestwebdesigner.com.”
<u>Explanation</u>:
Essentially, a subdomain is a separate part of your website that operates under the same primary domain name.
Answer:
Php. 1050
Explanation:
Total Room sales for Room 101:
Rate = 350
Number of times occupied = 3
Total sales per room : (number of times room was occupied * rate of the room.)
Hence, total sales for room 101:
Php. 350 * 3
= Php. 1050
Microsoft windows was his first
Answer:
"double tax_rates[5]= {0.10, 0.15, 0.21, 0.28, 0.31};" is the correct answer for the above question.
Explanation:
- An array is a user-defined data type that is used to define the multiple variables of a single type in a continuous storage location.
- In the C-programming language, When the user wants to declare an array he needs to define with the help of data type and size of the array with the help of the following syntax-- "Data_type variable_name [size_of_the_array];".
- When the user wants to initialize the static value in the array then he can do that by the help of following syntax: "Data_type variable_name [size_of_the_array]={first_value,second_value,....,last_value};
- The above question asked to defined the array of tax_rates name of type double with the above-defined value then he can do that with the help of above-defined syntax (which is defined in the answer part).