[solved] – Question 73110

I am having trouble reading array values from the input file i have declared empty arrays x[ ] y[ ] z[ ] in my codes but it gives an error when i do x[i] error goes away but it doesn’t read input from the input file. I just wanna know how to pass input values to the arrays in my code

Expert Answer


[solved] – Question 73124

Suppose MultiSoft is a company working on multimedia development having its branches in different cities. These branches are connected through a computer network, which they use extensively to transfer multimedia contents (videos, photos, audio, images etc.) within these branches. Now, MultiSoft wants to setup a new mechanism for live video streaming to have live interaction between employees at different branches.
They need security as well as reliable video streaming services. Which OSI layer(s) is responsible for dealing with that need and which protocol(s) of that layer ensures secure and reliable communication. Justify your answer based on logical reasoning in 2 to 4 lines.

Expert Answer


[solved] – Question 73175

15: Write a code that will count all the even numbers up to a user defined stopping point.

16. Input 3 numbers and print either an “all 3 equal” or a “not all equal” message.

18.Input 3 numbers, and print the biggest

19. Input 10 numbers, and print their total.

20. Read in three numbers, call them A, B and C.
• If A is bigger than B, then if A is bigger than C, print out A, otherwise print out C.
• If B is bigger than A, then if B is bigger than C, print out B, otherwise print out C.

Expert Answer


[solved] – Question 73177

6. Create a flowchart to add two numbers together and display the result.

7. Write a program that determines the total resistance of a three resistor
parallel circuit.
R1 =
R2 =
R3 =
RT =

8. Write a program that converts ohms to kiloohms and vice versa.
Please enter the resistance :
You entered 10 Kiloohms.
10 Kiloohms is equal to 10000 ohms

9. Write a program that converts ampere to milliampere and ampere to microampere. Follow the display of number 8.

10.: Write a code that reads two numbers and multiplies them together and print out their product. Display the entered numbers and their product.
10 X 3 = 30

Expert Answer


[solved] – Question 73178

13: Write a code that performs the following: Ask a user to enter the exam score. If the score is between 0 and 69, write “ You failed the exam.” If the score is between 70 to 85, write “ Your grade is satisfacory.”, if the score is between 86 to 96, write “ Your grade is very satisfactory.”, if the score is 97 to 100 , write “ Your grade is excellent.”.

Expert Answer


[solved] – Question 73179

11: Write code that tells a user that the letter they entered is not a b or a c.

14: Write a code to print all multiples of 5 between 1 and 100 (including both 1 and 100).

15: Write a code that will count all the even numbers up to a user defined stopping point.

16. Input 3 numbers and print either an “all 3 equal” or a “not all equal” message.

18.Input 3 numbers, and print the biggest

Expert Answer


[solved] – Question 73214

write a function named vowel_words() which will segregate the words starting with vowels from the “first_file.txt”

Expert Answer


[solved] – Question 73218

A series of connected objects that will only allow one out of the multiple objects to be activated at the same time

Expert Answer


[solved] – Question 7328

Problem:
Write a program that prompts the user to input three numbers. The program should then output the numbers in ascending order.

Note:
I am having issue understanding how to fix this program using if/else statement and put the numbers in ascending order

Expert Answer


[solved] – Question 73318

Initialize an integer array of size 10; pass it to a function ‘arrIncrement’ using a pointer. The function should increment all elements of the array by one. Then display the updated array on screen.Give me code of this in c++

Expert Answer