Answer:
what is the question and answers?
Answer:
//Below are the function which the user needs to add on the place of the "Your solution goes here".
double KelvinToCelsius(double valueKelvin)
{
double valueCelsius;
valueCelsius = valueKelvin - 273.15;
return valueCelsius;
}
Explanation:
Missing information : The above question is missing which states to define one function which name is "KelvinToCelsius" and which takes one argument and changes the kelvin value into Celsius value. One header file syntax is also missing on the above question.
- The above question wants to add a function to the place of the "Your solution goes here" and the work of the function is defined on the question.
- So the above-defined function is used to return the value of Celsius if the user passes the value of kelvin.
- The above-question also holds one function which takes the value of kelvin and returned Celsius, which returns value "283.15".
- So if a user passes "283.15 for the kelvin value, then he got 10 which is defined as Celsius value on the question".
Answer:
The answer is "SUBSTITUTE(D1,"c","C",1)"
Explanation:
In the given question, some information is missing, that is an option so, the correct option can be described as follows:
- Many of us use the Bulletin feature, which is available in MS-Excel. In these function the SUBSTITUTE is a method, that is used in Builtin to aim the functions to locate a string or character and to replace with the selected module.
- In the case of the end-user, it would like to replace "c" with a capital letter "C." And displays cell shifts in D1. This method uses 4 parameters, in which first describes cell reference, second string to located, third replacing string, and fourth its length.
Answer:
The correct answer to the following question is option c.) time zone barriers.
Explanation:
When the maximum length of voice mails is set then, the calls that are sent to the voice mail will only recorded up to the that limit. We can also specify the any value from 1 to 60 minutes.
Note: When the voice mails transcription option is enable then, we can specify the any value between from 1 and 2 minutes.
Answer:
hope this helps
Explanation:
import java.util.Scanner;
public class Problem3 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Enter start value: ");
int start = in.nextInt();
System.out.print("Enter end value: ");
int end = in.nextInt();
if (start > end) {
int temp = start;
start = end;
end = temp;
}
for (int i = start; i <= end; i++) {
if (i % 2 == 1) {
System.out.print(i);
if (i == end || i + 1 == end) {
System.out.println();
} else {
System.out.print(", ");
}
}
}
}
}