Search x-x-x-x-solve-for-x

X x x x solve for x

 
 

Top Questions

3.Show that the force field vec F =(2xy-4- 1 2 sin( x 2 )sin( y 2 )) hat i +(x^ 2 + 1 2 cos( ...

cos( x 2 )cos( y 2 )) hat j is conservative and obtain the potential function. Evaluate the work done by vec F in moving a particle along the curve C which is the portion of the circle centered at origin with radius 2 in the first quadrant with counter clockwise orientation, without using line integrals.
View More

4.Following a method) 4.3 x 10^8 + 2.5 x 10^7 Choose bigger number in 10 and add the first 2 numbers 4.3+2.5 ...

4.3+2.5 : 10^8, 6.8 6.8 x 10^8 But the answer is 4.5 x 10^8 How do i get 4.5?
View More

5.The cost of renting a car is $46 /wk plus $0.25 /mi traveled during that week. An equation ...

esent the cost would be y=46+0.25x , where x is the number of miles traveled. a. What is your cost if you travel 59 mi? The cost is $ 43.26 . b. If your cost was $66.25 , how many miles were you charged for traveling? You were charged for traveling 66.51 miles. c. Suppose you have a maximum of $100 to spend for the car rental. What would be the maximum number of miles you could travel? The maximum number of miles you could travel is Number
View More

6.CSE 1300 Problem Solving Practice Conditional Statements Question 1: Student Fees All KSU students pay fees in addition to their tuition. Using the code ...

nts pay fees in addition to their tuition. Using the code provided below as a starting point, write a conditional statement that determines how much a student will pay in fees. • Students registered for 1 – 4 hours pay $843 in student fees. • Students enrolled in 5 or more hours pay $993 in student fees. The program should also display a message to students who have not enrolled in any classes: “You are not enrolled in any classes right now.” NOTE: You must use the variables included in the code snippet get credit for this question. import java.util.Scanner; class Main { public static void main(String[] args) { int creditHours; int fees = 0; Scanner myScanner = new Scanner(System.in); System.out.print("Please enter the number of credit hours you are taking this term: "); creditHours = myScanner.nextInt(); myScanner.close(); //YOUR CODE GOES HERE } } Break the Problem Down Answer the following questions, then use the information to write your code. What are the inputs in the pseudocode above? (INPUT) What are we storing in the pseudocode above? (MEMORY) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 2: Block Tuition The cost of KSU’s tuition is determined by the number of credit hours a student enrolls in. Using the chart below, write a conditional statement (ONLY) that sets the value of a tuition variable to what that student will owe. NOTE: For this problem you can assume that all students are enrolled in a minimum of 12 hours. Number of Credit Hours 12 13 14 15 or more Cost (in USD) $2224 $2410 $2595 $2718 Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 3: Class Standing Undergraduate students will be classified based on the number of earned institutional hours. • Freshman: • Sophomore: • Junior: • Senior: 0 - 29 hours 30 - 59 hours 60 - 89 hours 90 hours or more Write a complete program that prompts the user for the number of credit hours they have completed. Write a conditional statement that prints out their class standing based on the information they provided. Sample Output Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) Please enter the number of credit hours you have earned: 29 You are a freshman. What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 4: Maximum Course Load KSU’s policy on maximum course loads during the academic year is as follows: A student in good standing may register for up to 18 hours. The Registrar may approve up to 21 hours for students with an institutional GPA of 3.5 or higher. Students Write a complete program that prompts the user for the number of credit hours they have signed up for. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy. Once the maximum number of hours is determined, display a message to the user that states “You may enroll in X credit hours this semester.” where X is the number of credit hours determined by your program. Sample Output Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) Please enter your GPA: 3.75 You may enroll in up to 21 credit hours this semester. What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java Problem 5: First-Year Seminar All first-year full-time students entering Kennesaw State University with fewer than 15 semester hours are required to complete a First-Year Seminar. Students with 30 or more credit hours are not eligible to enroll in a First-Year Seminar. Write a complete program that prompts the user for the number of credit hours they have completed. Write the necessary conditional statement(s) to address the stipulations in KSU’s policy. When you run your program, it should display one of the following messages to the screen: • You must enroll in First-Year Seminar. • You do not have to take First-Year Seminar. • You are not eligible for First-Year Seminar. Sample Output Break the Problem Down Answer the following questions, then use the information to write your code. What do we need to store? (MEMORY) Enter the number of credit hours have you completed: 30 You are not eligible for First-Year Seminar. What are the inputs in the problem statement above? (INPUT) What calculations are needed? (PROCESSES) What needs to be displayed to the user? (OUTPUT) How many conditions are there in your problem statement? What are they? Does something need to happen if the condition(s) are not met? What type of conditional statement do you need? Solution in Java
View More

7.1. One popular definition of economics is a). How firms maximize profits. b). How consumers maximize utility. c). The use of scarce ...

aximize utility. c). The use of scarce resources to satisfy our wants. d). The use of fiscal and monetary policies to achieve economic outcomes. Flag question: Question 2 Question 21 pts 2. In a capitalist economy a). The government plays the dominant role. b). Market forces coordinate most production activities. c). The prices of most goods and services are set by the government. d). All of the above are correct. Flag question: Question 3 Question 31 pts 3. In a capitalist economy a). Most producers are driven by the desire to make profit. b). The government regulates most economic activities. c). Foreigners play no role in the economy. d). The output of most goods are planned. Flag question: Question 4 Question 41 pts 4. In drawing the graph of two variables that are related a). The Y variable goes on the horizontal axis. b). The X variable goes on the vertical axis. c). The independent variable goes on the vertical axis. d). In most cases the dependent variable goes on the vertical axis.
View More

8.consider the titration of 197 ml of .935 M acetic acid, ch3cooh, ka=1.8 x 10^-5 with 1.521 M koh for ...

the next three problems. What is the pH of the solution when 73.87 mL of the 1.521 M KOH are added to the .935 M acetic acid solution? What is the pH of the solution at the equivalence point? What is the pH of the solution when 153.8 mL of the 1.521 M KOH has been added to the .935 M acetic acid solution?
View More