Search this-problem-is-an-exercise-in-theodore-shifrin-differential-geometry-a-first-course-in-curves-and-surfaces-p-please-solve

This problem is an exercise in theodore shifrin differential geometry a first course in curves and surfaces p please solve

 
 

Top Questions

1.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

2.In this problem and the next one, we’re going to make a very simple spam checker program by just looking ...

ooking at how likely a given email is to be spam based on the words it contains. In particular, in this problem we’re going to count how often words are present in spam emails within some set of training data (which here means a set of emails that have already been marked as spam or not spam manually). We have already started to write a function spam_score(spam_file, not_file, word), which takes in two filenames, along with a target word (a lowercase string). Both filenames refer to text files which must be in the same directory as hw07.py (we’ve provided several such files in hw07files.zip). The text files contain one email per line (really just the subject line to keep things simple) - you can assume that these emails will be a series of words separated by spaces with no punctuation. The first file contains emails that have been identified as spam, the second contains emails that have been identified as not spam. Since you haven’t learned File I/O yet, we’ve provided code that opens the two files and puts the data into two lists of strings (where each element is one line - that is, one email). You then must complete the function, so that it returns the spam score for the target word. The spam score is an integer representing the total number of times the target word occurs across all the spam emails, minus the total number of times the word occurs in not-spam emails. Convert all words to lowercase before counting, to ensure capitalization does not throw off the count.
View More

3.I have a question about how to work through this problem. This problem derives from the SpringBoard Geometry book. "In this ...

Geometry book. "In this figure, [measure of angle] 3 = x+18, [measure of angle] 4 = x+15, and [measure of angle] 5 = 4x+3." In the diagram, there is also an "angle 1." Angle 1 = Angle 3.
View More

4.This first part of the Individual Research Project is an Outline and Annotated Bibliography. The Outline should provide a very brief ...

tline should provide a very brief overview of what you think you will do in the Policy Brief. The Annotated Bibliography requires you to summarize at least three peer-reviewed scholarly sources you will cite in the Policy Brief. This assignment is designed to get you thinking about your topic in a way that clearly anticipates the writing you will do for the Policy Brief. We want you to brainstorm and do a bit of research well in advance of the deadline for the Policy Brief and, most importantly, we want you to put your ideas down on paper so that we can give you feedback before writing the actual Policy Brief. In other words, we are asking you to submit an Outline and Annotated Bibliography so that we can help you write the best Policy Brief possible. Your Outline should be divided into the following five sections and should be written in complete sentences: I. Audience: Identify the audience you are addressing and consider what that audience is interested in. Who are you talking to in the Policy Brief and what does this suggest about the approach you should take? (75-100 words). II. Problem: State how you know the issue exists. What is the proof that students need to improve this skill? (125-150 words). III. Importance of Problem: Indicate why this problem matters. What are the consequences of the problem not being addressed? Why do students need to improve this skill? (100 words) IV. Solution: Identify your preferred solution. What solution will work in your context and why? (75-100 words) V. Alternative Solution: Identify at least one other possible solution. What other solutions did you consider? (75-100 words) The total length of the Outline should be between 450 and 550 words. When you submit your Outline, you must also include an Annotated Bibliography. An Annotated Bibliography is an alphabetical list of research sources that provides bibliographical data (the title, author, date, publisher, etc.) and a short summary or annotation of the source. Your Annotated Bibliography should contain a minimum of three scholarly or peer-reviewed sources, each with an accompanying annotation that is between 150 and 250 words long. The annotations must summarize the research question or thesis, research methodology, results, and conclusion. Annotations must include summaries and paraphrased information, NOT quotations. A good annotation will include two separate paragraphs: 1) a paragraph summarizing the research question or thesis, research methodology, results and conclusion; and 2) a paragraph commenting on why this source is relevant for your research.
View More

6.Respond to ALL FOUR QUESTIONS. Each question carries 5 marks. Response to each question attempted should be at least 500 ...

ould be at least 500 words. The document should adhere to APA guidelines. Please state the question and then post your answer below the Question. Q1. How does marketing research help in the marketing planning process? Use a hypothetical business (e.g. a small sporting goods store, local hardware manufacturing small business, an independent publishing company, etc.) to discuss how market research helps in compiling market intelligence with regard to aspects such as product decisions, customer segmentation decisions, brand and pricing decisions, keeping stakeholders happy. Q2. NuVision Lens, a mail-order contact lens company has struggled to break even after being five years in the eyewear market. The company’s founders had thought that high demand would exist for mail-order supply as a low-cost alternative to purchasing contact lenses at optical outlets. However, the market share of NuVision continues to be much less than the retail stores. NuVision Lens has hired you as their marketing consultant. Outline the steps that you will take to formulate a problem statement and research objective on the above situation. Q3.  Your friend, Ms.Destiny Brown is the CEO and founder of ‘Hide and Chic’ an upscale leather goods store based in Houston, Texas. Ms. Brown is actively considering to expand her company’s product line to include sports accessories including golf gloves, premium quality leather grips for tennis, squash, racquetball, badminton rackets, leather sports bags, etc. She has hired you to undertake a marketing research study to determine whether a market exists among retail outlets and sporting goods distributors in Houston, for these specialty items under the ‘Hide and Chic’ brand name. Define and describe the target population for this study? Discuss the sampling methods that could be used in this study. Recommend, with reasons, the most optimal sampling procedures for this study. Q4. Farm Fresh Grocery’ (FFG) has always used paper bags for sacking groceries. However, management has noticed that some competitors are offering reusable bags to their customers. FFG management has asked you to find out if its current customers would prefer bringing the reusable bags every time they visit the FFG store. A) Select two projective techniques to use in your research. Give reasons for your choice. B) Describe in detail how your two chosen techniques would be applied to this research problem.
View More

7.students are expected to research and compose a paper based on the application of concepts and theories examined in class. ...

ies examined in class. This paper is not a literature review, though a literature review is part of your work. As this course takes place in a compressed timeline, I provided some suggestions for research topics. Feel free to use one of these as a springboard or propose your own. At the end of the second week of class, students submit a three-page research paper prospectus. A research prospectus is a preliminary plan for conducting a study. This is not a detailed and technical research proposal, but rather, an analysis of the issues likely confronted in such a study. In essence, it is a preliminary proposal of work. Research Paper Prospectus Elements To complete the Research Paper Prospectus, consider the following elements. While the prospectus is limited to three pages of body content, remember, students must cover each of these areas as relevant to the plan for research: Research Problem. What is the research problem? A problem is a situation when left untreated, produces a negative consequence for a group, an institution, or a(n) individual(s). What makes it a problem? For whom? Who says so? Assumptions. On what assumptions is the work based? Which assumptions are verifiable in literature? Which assumptions are speculative? Theoretical Issues. What theoretical issues arise from the study? For example, "theoretically," how is the problem and suspected results explained to other scholars? Is there a behavior view? A social systems view? Are there other theoretical orientations to consider in the study's design? Literature Review. What, in general, does the literature say about the topic? While more development is expected for the final paper, a review of major theories, research, and writers in the field is needed. Research Questions. Based on the problem, what are the research questions to be answered? How and why will answering the questions contribute to solving the research problem? Remember....a research question can only be answered with empirical data or information. General Research Plan. In general, what research is necessary to answer the research question. What kind of data is needed? Specify the type, such as surveys, observations, or interviews. Who is to be studied and why? How is the data reduced and made sense of? How is the quality of the data assured? Anticipated Difficulties and Pitfalls. What kind of difficulties and pitfalls are expected in a study of this nature? What can be done to prevent them or minimize their effects? Anticipated Benefits. Who will benefit from the fact this research is undertaken? How? Why? Who might be disturbed by this proposed study? How? Why? Paper Format Requirements The Research Paper Prospectus is presented in standard APA 7 format, with a cover page, running head, body, and references list. The cover page and references do not count toward the three-page requirement. The body uses headers and in-text citations in the manner prescribed by APA. Students should include any references they know at the time they submit the prospectus, though it is expected the references may change or increase in number. Full and complete adherence to APA is required. APA Basics As APA format is the rule, remember the formatting rules shown on the Sample Paper (Links to an external site.): Times New Roman, 12pt 1" margins on all sides Double spaced, with extra line spaces removed (see below) Page numbers in the upper right Two spaces after concluding punctuation 150-250 word abstract with keywords APA-style in-text citations and quote format. Use the Purdue OWL in-text citation information (Links to an external site.)to help you. Alphabetical (by author) reference page with correct reference format. DO NOT trust the reference generator in your word processing program. It is WRONG! Use the Purdue OWL references information (Links to an external site.)to correctly structure references and do so manually.
View More

8.I have 7 minutes to solve this PROBLEM please help it is CHEMISTRY A student is running an experiment in ...

iment in which 36.6 grams of BeSO4 is needed, but the only jar of reagent in the lab is labelled beryllium sulfate tetrahydrate. How many grams of the hydrate must the student weigh out in order to get the desired amount of the anhydrous compound?
View More

1.AU MAT 120 Systems of Linear Equations and Inequalities Discussion

mathematicsalgebra Physics