Homework Answers

Math 51397 50414
Physics 44335 44333
Chemistry 40988 40988
Economics 30646 30644
Programming & Computer Science 26878 26876
English 10084 10084
Biology 8111 8109
Management 6239 6239
Engineering 6056 6056
History 3490 3489
Psychology 2129 2129
Sociology 1858 1858
Geography 1574 1574
Marketing 1443 1443
Philosophy 1001 1001
Political Science 892 891
Law 876 876
French 438 438
Other 199 199

Questions: 238 634

Answers by our Experts: 237 641

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

If a voltage is induced it will create a current. What is the use of this current that was produced? Begin to _______



A. recharge the inductor


B. discharge the inductor


C. recharge the capacitor


D. discharge the capacitor

how many turns of solenoid is required to produce a magnetic field having magnitude of 3.0 T upon the application of 600A current if the solenoid is 8.50 m long and is having 4500 turns.  (note: \mu _(0)=4\pi x10^(-7)T. m/A).


determine the magnitude of a magnetic force produced on a straight wire 60.0 cm long when a 10.5 A current flow on it while being exposed on a 27.5 T magnetic field acting 90.0^(0) on the wire.


How much faster does He atom effuse than N₂ molecule at the same temperature? (MMHe = 2g, MMN₂ = 28g)


Find the integral of x2 dx dy. Use inner limits = 0 to 2y and outer limits = 0 to 2. (5 points)

Double Indicator Titration

A groundwater sample was analyzed for its total alkalinity (assume that the alkaline constituents come from Na2CO3, NaHCO3 and NaOH, either alone or a permissible combination). For the analysis, a standardized 0.101M HCl solution was used.

Suppose a 30.0-ml sample required 13.2 ml of the titrant to reach phenolphthalein end point. Another 20.0 ml of the same water sample was titrated using methyl orange indicator and used 24.7 ml of the same titrant.

a. Determine the alkaline components of the sample

b. What are the molar concentrations of each component?

c. If the analyst did not boil the distilled water used to standardize the titrant in the problem, what will be the effect on the percentages of each component? Why?


Instructions:

  1. Input two integer values. The first one shall accept any integer from 0-9 and the other one shall take a non-zero positive integer.
  2. Using a while loop, count how many of the first integer (0-9) is present in the digits of the second inputted integer and print the result (see sample input and output for example).
  3. Tip #1: You have to use your knowledge from the previous problems in looping through the digits of a number: % 10 to get the rightmost digit, while / 10 to remove the rightmost digit. Make sure to solve the previous problems first.


Input


1. First integer

2. Second integer

Output

The first line will contain a message prompt to input the first integer.

The second line will contain a message prompt to input the second integer.

The last line contains the number of times the first integer occurred in the digits of the second integer.

Enter·the·first·integer·(0·-·9):·2
Enter·the·second·integer:·124218
Occurrences·=·2

Instructions:

  1. Input a non-zero positive integer.
  2. Using the same concept as the previous problem, figure out how to separate the digits of a number and determine which of the digits is the largest one, using a while. Afterwards, print the largest digit.
  3. Tip #1: Create another variable that will hold the largest digit. Initial its value to a negative integer, like -1, outside the loop.
  4. Tip #2: Everytime you get the rightmost digit, check if it is greater than the current largest digit. If it is, set it as the new largest digit.


Input


1. An integer

Output

The first line will contain a message prompt to input the integer.

The second line contains the largest digit of the integer.

Enter·n:·214
Largest·digit·=·4

Instructions:

  1. Input a non-zero positive integer.
  2. Using while loop, print out each digit of the inputted integer in separate lines, starting from its rightmost digit until the leftmost digit of the number.
  3. Tip #1: Use % 10 to get the rightmost digit. For example, if you do 412 % 10, then the result would be the rightmost digit, which is 2.
  4. Tip #2: On the other hand, use / 10 to remove the rightmost digit. For example, if you do 412 / 10, then the result would be 41.
  5. Tip #3: You'd have to repeat Tip #1 and Tip #2 inside the while() loop for this problem while the inputted integer is not yet 0.


Input


1. An integer

Output

The first line will contain a message prompt to input the integer.

The succeeding lines contain the digits of the integer.

Enter·n:·214
4
1
2

After the success of Doctor Strange in the Multiverse of Madness UCP movie club decided to display this movie on a bigger screen in UCP auditorium. But you have to buy a ticket for the show. Following are the rates of tickets:

Type of Ticket (1, 2, 3) Price Tax

Student= 100 and 17%tax

Faculty= 200 and 17%tax

Staff= 150 and 17%tax

Write a C++ program in which, ask user about how many tickets they want to buy? And which type of ticket they want to buy. Calculate total bill and display it on console.



LATEST TUTORIALS
APPROVED BY CLIENTS