Questions: 1 680

Answers by our Experts: 1 680

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

In C,which of the following variables are created at the time of a function call and destroyed when the function returns?
(a) integer variables(b) parameters to the function (c) static variables declared within the function (d) extern variable
I think that the answer (c). True or not?
Please advice for me related MCQ C web site.. Thanks a lot..
what is the value of x?

x = 6 ["computer"] ;
Write a function called removeString to remove a specified number of characters from a character string. The function should take three arguments: the source string, the starting index number in the source string, and the number of characters to remove. So, if the character array text contains the string "the wrong son", the call
removeString(text,4,6);
has the effect of removing the characters “wrong“ (the word “wrong” plus the space that follows) from the array text. The resulting string inside text is then "the son".
Write a function called removeString to remove a specified number of characters from a character string. The function should take three arguments: the source string, the starting index number in the source string, and the number of characters to remove. So, if the character array text contains the string "the wrong son", the call
removeString(text,4,6);
has the effect of removing the characters “wrong“ (the word “wrong” plus the space that follows) from the array text. The resulting string inside text is then "the son".
Write the flowchart the national earthquake information center has the following criteria to determine the earthquake’s damage. Here are the given richter scale criteria and their corresponding characterization. The richter scale serves as the inoput data and the characterization as output information.
Richter Number (n) Characterization
N<5.0 Little Or No Damage
5.0>=N<5.5 Some Damage
5.5>=N<6.5 Serious Damage
6.5>=N<7.5 Disaster
Higher Catastrophe
The national earthquake information center has the following criteria to determine the earthquake’s damage. Here are the given richter scale criteria and their corresponding characterization. The richter scale serves as the inoput data and the characterization as output information.
Richter Number (n) Characterization
N<5.0 Little Or No Damage
5.0>=N<5.5 Some Damage
5.5>=N<6.5 Serious Damage
6.5>=N<7.5 Disaster
Higher Catastrophe
Write a function which will return true if and only if a passport holder satisfies following conditions:
1. A passport holder should not be a criminal.
2. A passport holder must have only one nationality and it should be "Indian".
3. A passport holder must be living at current address for more than 12 months.
4. A valid passport holder must hold at least two degrees from the list: "High School". "Intermediate", "Graduate", "Professional"


boolean isValidPassportHolder(boolean isCriminal, String[] nationalities, float livingMonths, String[] qualifications);
use this
You have a block of platinum that can be exchanged in your bank either for cash
or for smaller blocks of platinum. If you exchange a block of m grams, you get
three blocks of weight m/2, m/3 and m/4 grams each. You don't get any fractional
part, as the division process rounds down the value. If you exchange the block of
platinum for cash, you get m units of currency. You can do any number of
exchanges for smaller blocks or currency.Given the value of a block in grams as input, write a program that would print the largest possible currency value that you can receive as the output. Assume that
the maximum value of a block that can be given as an input is 1,000,000,000
grams and the minimum value is 2 grams.
a prgram which takes input from user & test that number is prime number using functions?
Write a program that uses a two-dimensional array to store the highest and lowest temperatures for each month of the year. The program should output the average high, average low, and the highest and lowest temperatures for the year.
LATEST TUTORIALS
APPROVED BY CLIENTS