Other Engineering Answers

Questions: 881

Answers by our Experts: 418

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

A unit positive charged moves in an electric field E, along the path xyz, the voltage between point x and z ?
An object placed in front of a convex mirror of radius 20cm produces an erect image which is one-fifth the size of the object. How far is the object from the mirror?
How far should an object be from a concave mirror of radius 30cm to form a real image 1/6 of its size?
1. Print "Crew" n times. (For loop is required)
2. The Sum of 10 nos. (For loop is required)
3. Generate the sequence 1, 2, 4, 7, 11, 16, 22... Until n. (For loop is required)
4. Generate the series 1, 4, 9, 16, 25, 36, 49, 64, 81, 100. (For loop is required)
5. Generate the series 3, 6, 9, 2, 5, 8, 1, 4, 7, 0. (For loop is required)
1. Interest in compounded annually at 10% by a certain bank. Create a flowchart and the program that would input the amount and the number of years and output how much was the original amount after that period.

2. Exponentiation may also be done using a loop. Recall that a raise to the power of b is equal to a multiplied by itself b times.

3. The factorial of n is an integer is defined to be 1 if n is 0 and 1*2*3*...*n if n is positive and non zero integer. Input n and ensure it is non negative and output it's factorial.
1. Draw the flowchart and write a c program that accepts n country names and population. Print the country's name and it's population and at the end print the total no of countries entered and it's population.
2. Suppose someone pays 100.00 during the first year and that yearly payments keeps on doubling. Display the year where yearly payments is greater than 50,000.00
1. Draw the flowchart and write a c program that reads in a number n and then outputs the sign off the square from 1 to n

Ex. If n=3, output should be 14 because 1²+2²+3²=1+4+9=14

2. In a class of n students print the total no of female students and the total no of male students and at the end print the total no of total no of students in n class both males and females.
A bank wants you to create a GUI app that will allow bank employees to view the clients’ information. The app
should prompt the user to enter first name, last name, account number and account balance. It should provide
options to allow the bank manager to search through each client’s information backward and forward. Create a
Customer class to represent the client with first name, last name, account number and account balance. The
application should use an array of Customer objects to store customer information. DO NOT use any collection
classes such as ArrayList, LinkedList, HashSet etc. You can only use the following statement that assumes the
maximum number of customers is 100
Customer [] customerList = new Customer[100];
Standard telephone keypads contain the digits zero through nine. The numbers two through nine each have
three letters associated with them. Many people find it difficult to memorize phone numbers, so they use the
correspondence between digits and letters to develop seven-letter words that correspond to their phone
numbers. For example, a person whose telephone number is 686-2377 might use the correspondence
indicated in Fig. 7.29 to develop the seven-letter word “NUMBERS.” Every seven-letter word corresponds to
exactly one seven-digit telephone number. A restaurant wishing to increase its takeout business could surely
do so with the number 825-3688 (that is, “TAKEOUT”)
Use a one-dimensional array to solve the following problem: A company pays its salespeople on a commission
basis. The salespeople receive $200 per week, plus 9% of their gross sales for that week. For example, a
salesperson who grosses $5,000 in sales in a week receives $200 plus 9% of $5,000, a total of $650. Write an
app (using an array of counters) that determines how many of the salespeople earned salaries in each of the
following ranges (assuming that each salesperson’s salary is truncated to an integer amount): $200–299,
$300–399, $400–499, $500–599, $600–699, $700–799, $800–899, $900–999 and over $999.
Write an application that prompts the user to enter the sales for each employee, then it calculates the
salesperson’s salary. The process repeats until the user finishes entering all employees' information. When the
user is done entering this information, it displays how many of the salespeople earned salaries in each of the
above ranges.
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS