hmmmm
This page lists questions and answers that were posted by visitors named hmmmm.
Questions
The following questions were asked by visitors named hmmmm.
change equations to polar form: 1) y= -1 2) x^2 + y^2 = 4 how would i do these questions? thank u to convert to polar, you use the relationship: x = rcos(theta), and y = rsin(theta) 1) rsin(theta) = -1, r = 1-/sin(theta) 2)try this yourself by substitutin...
19 years ago
put these polar equations into cartesians form: 1) theta=135 degrees 2)rcostheta=-1 for #1 is it like: (-1,1)? and for #2, X=-1, but i cant find y, any help is appreciated The slope should be sin(theta)/cos(theta) and the intercept is the origin. x=r*cos(...
19 years ago
Which of the following is a classic algorithm applied to modern cryptography? a. linear search b. binary sort c .modular arithmetic d. pseudorandom number generator
2 years ago
Jennifer is writing an algorithm to analyze a play that she is reading. What type of algorithm would be appropriate for this application? a. graphing algorithm b. greedy algorithm c. machine learning algorithm d. linear programming algorithm
2 years ago
Some students are watching a movie on a streaming service. The movie finishes, and they are shown recommendations for what to watch next. What type of algorithm is this most likely an example of? a. graphing algorithm b. greedy algorithm c. linear program...
2 years ago
Suppose you are discussing a program with your learning coach, and you want to know why anyone would ever use linear search in a program when it is so inefficient. Which of the following reasons might the learning coach give? a. Linear search is perfect i...
2 years ago
Suppose a piece of code from an application is given to you, and you recognize that it is trying to order the data by swapping adjacent data points all the way through the list. What algorithm does this represent? a. merge sort b. bubble sort c. quick sor...
2 years ago
You are given a sorted list of book titles and are asked to locate a title within the data and report on the author. What would be the most appropriate algorithm to use? a. merge sort b. linear search c. binary search d. bubble sort
2 years ago
1. Which of the following Big O notations is appropriate for the complexity of a search algorithm? a. O(n2) b. O(1) c. O(logn) d. O(n) 2. Which of the following Big O notations is appropriate for the complexity of a sort algorithm? a. O(n) b. O(1) c. O(lo...
2 years ago
Which of the following is a correct description of object-oriented programming (OOP)? a. OOP facilitates encapsulation allowing all the relevant information and functions to be kept in one package. b. Any language that uses functions and variables is an O...
2 years ago
Which of the following is to analyze and observe parts of code and their syntactic roles? syntax integrated editor parse Visual Basic
2 years ago
Consider a variable var with some value in it. How can we achieve an output of this format: "This is the value of variable one: <value of variable>"? a. print(‘This is the value of variable one:’) b. print(‘This is the value of variable one:’, var), c. pr...
2 years ago
Which of these is described as a discrete piece of code that is part of a program and contains one or multiple routines? a. function b. Python c. string d. module
2 years ago
Which of these is a method or mathematical process for designing algorithms for problem solving? A. binary B. input C. algorithm design D. supervisor program
2 years ago
What are basic building blocks used to control computer programs, which are a sequence of words or symbols in a valid language and can be understood by the computer? programming constructs compiler string programmer
2 years ago
What is a return value? A. a value altered by a function B. a value sent to a function C. a value received by a function D. a value sent back from a function
2 years ago
User In the following piece of code that calculates the temperature in Fahrenheit, which piece would be most appropriate to develop a function for? c = 100 print(c * 9/5 + 32) c = 0 print(c * 9/5 + 32) c = 30 print(c * 9/5 + 32) a. print b. c = 0 c. c * 9...
2 years ago
What is the most appropriate structure for handling code that is repeated multiple times in a program? a, function b. queue c. recursion d. stack
2 years ago
How does a computer request a service from the kernel of the operating system? a. compiler b. system calls c. string d. array
2 years ago
Which of these is a sequence of instructions carried out by another program opposed to the processor? stack string array script
2 years ago
Which of the following is an Application Programming Interface (API) that is referred to as “representational state transfer,” and is the approach for communications in web services? a. composite API b. partner API c. internal API d. REST API
2 years ago
You are trying to get a current forecast of weather from a specific location in the world. There are a couple open API sites that allow you to extract the data. What request should you be using to acquire this data? a. print b. if c. else d. get
2 years ago
Which of the following is a quoted string which contains data in a format that is interchangeable between multiple different coding languages? a. head b. JSON c. module d. post
2 years ago
Which of the following is a method request that the entity is to be stored or put at a specific URL? a. post b. put() c. get d. head
2 years ago
What is the objective of the testing phase in a software development life cycle? a. to develop a software efficiently b. to check whether a software is working as intended c. to write the program for software d. to design a software
2 years ago
What is a functional test? a. a set of instructions executed to verify a particular artifact b. a test that checks a specific feature within a program c. a test that checks the logically integrated modules d. a test that checks individual units of code
2 years ago
What is the difference between unit tests and integration tests? a. In unit tests, each module is checked independently, whereas, in integration tests, all modules are combined and checked. b. Unit tests are automated, whereas integration tests are done m...
2 years ago
Under what condition would a unit test be applied? a. when we want to verify each unit independently b. when we want to verify the type of data accepted by our system c. when we want to check logically integrated modules d. when we want to decide if the s...
2 years ago
When is an integration test needed? a. when we want to determine if we are getting the right output b. when we want to verify each unit independently c. when we want to check a specific feature within a program d. when we intend to check logically integra...
2 years ago
Which of the following is a statement in Python that helps detect problems early on, acts as an internal self-check by declaring conditions and is a debugging aid? a. conditional statement b. statement c. assert statement d. declarative statement
2 years ago
What is the process of testing out the smallest parts of a code separately before integrating them? a. power supply testing b. disk fragment testing c. unit testing d. API testing
2 years ago
How can we visualize datasets with three variables that are of focus? a. We cannot generate visualizations based on three variables. b. We can perform partial visualization on the dataset. c. We can do it by transforming the data into two variables. d. We...
2 years ago
Is data visualization a necessary part of data science nowadays?(1 point) a.No, data visualization can be exempted, and analysts could do just fine without it. b. Yes, data visualization has become a necessary part of data science. c. Yes, data visualizat...
2 years ago
Suppose you are writing a program to convert numeric grades to letter grades: print("Enter numeric grade: ") avg = int(input()) if avg >= 90 and avg <= 100: print("Your Grade is A") elif avg >= 80 and avg < 90: print("Your Grade is B") elif avg >= 70 and...
2 years ago
Explain why or why not communication between all involved departments is important for the development of an effective troubleshooting plan. a. Communication between all departments is not important, and interdepartmental interaction between the quality a...
2 years ago
For a gaming application with graphics-intensive processes, what aspect of the troubleshooting plan would be most important? a. The most important aspect for a gaming application is the development process rather than the troubleshooting. b. The most impo...
2 years ago
A group of users is installing an application on a laptop computer and encounters a problem. No documentation was attached while downloading the application; only the installation file is available. They believe that they have done something wrong. What i...
2 years ago
A user is making a list of all the steps that they have taken to try to correct a problem with an application. What is the name of this process? a. commenting b. README c. troubleshooting d. runbook
2 years ago
After completing all the troubleshooting steps in a README file, a user decides to call technical support to see if they can help them with the problems they are having with the application. The user gets frustrated with the technical support person becau...
2 years ago
A user is trying to run an application that another user has given them. The code keeps giving them an error when they input data. Which part of the README might they look at to find a solution to this problem? a. troubleshooting instructions b. operating...
2 years ago
How can Raleigh’s “The Nymph’s Reply to the Shepherd” be considered an anti-pastoral? A. It pokes fun at love and romanticism. B. It describes country living from a realistic perspective. C. It dismisses the beauty of nature as boring and conventional.
1 year ago
Which set of lines from "The Nymph's Reply to the Shepherd" best reflects the speaker's feelings about nature? A. The flowers do fade, and wanton fields / to wayward winter reckoning yields B. A honey tongue, a heart of gall / is fancy's spring, but sorro...
1 year ago
Which of the following examples is NOT a metaphor? A. Love's not time's fool B. My state, like to the lark at break of day arising from sullen earth C. I love to hear her speak, yet well I know that music hath a far more pleasing sound.
1 year ago
Find a polynomial function whose graph passes through (5,13),(10,-11), and (0,3). y= (Simplify your answer. Round to three decimal places as needed.)
1 year ago
solve the inequality 2x-10 is less than or equal to 52
1 year ago
solve the inequality 4/5n-12>24
1 year ago
Since the late 1700's, human activity has increased the concentration of carbon dioxide and other greenhouse gases. We tend to forget that there are natural sources of atmospheric carbon dioxide . Can you identify the statements that correctly describe th...
1 year ago
Matter is constantly cycled between living and nonliving parts of the environment. Processes like photosynthesis and respiration allow the carbon cycle to regenerate needed substances by recycling Earth's atoms. A diagram of the carbon cycle is shown. Eac...
1 year ago
Based on the graphic shown, which two important natural processes release carbon into our atmosphere? Responses A photosynthesis and decompositionphotosynthesis and decomposition B decomposition and respirationdecomposition and respiration C photosynthesi...
1 year ago
Answers
The following answers were posted by visitors named hmmmm.
V2=(R_2*epsilon)/(R_1+R_2) in both V2 options
12 years ago
not this question . but done 80% of others
12 years ago
V1/V2=1+2*R_1/R_2 and V1/v2=100+101*(R_1/R_2)
12 years ago
(a)((R_1*epsilon)/(R_1+R_2))+(epsilon)
12 years ago
(b)((R_1*epsilon)/(R_1+R_2))+(100*epsilon)
12 years ago
sorry i slept so couldn't reply i missed that part too.
12 years ago
c)0.0001386
12 years ago
link is not allowed here, please search it by abdul rahman name on Tuesday, April 9, 2013 at 2:30pm.
12 years ago
anyone for part b please,clearly
12 years ago
i used this getting wrong answer
12 years ago
did u get it right FLU?
12 years ago
a) R/L and 1/LC
12 years ago
ans: 0.657
12 years ago
a) 15.705 , b) 350 c) 55.714 d) 0 other parts still working on it
12 years ago
ist part ans is 5.823e8
12 years ago
B=(meu not*N*I)/((2*pi*R/km) +d)
12 years ago
ans=1.44 for people with other values use this B=(meu not*N*I)/((2*pi*R/km) +d)
12 years ago
this was for question 4
12 years ago
sorry it is meu_0 and I is given in question meu=4*pi*1E-7 as mentioned by other friends
12 years ago
radiation pressure qn a) 5.823e8 b) 3.56e22
12 years ago
formula for question 2 a)B=meu_0*N*I/l b)L=meu_0*N^2*A//l c)I=V/R d)U=1/2(LI^2)
12 years ago
pi*r^2
12 years ago
and in neumerator I its current and in denominator its l length
12 years ago
yes FLu you are doing it wrong L=(mu_0*A*N^2)/L send me your values i'll post your answer
12 years ago
FLu your ans of 2b is 1.69e-4
12 years ago
Yep the correct answers are 1.B 2.A 3.B 100% Thanks XD and _ilovepink__24
9 years ago
Yea buddy
6 years ago
whats #3?
4 years ago
what about multiple choice questions 20 and 21?
4 years ago
and 22
4 years ago
I HAVE THE CORRECT ANSWERS IS WRONG!!!!!!!! DON'T LISTEN TO HIM!!!!!!!!!! I JUST GOT 4/22 WITHOUT THE MULTIPLE CHOICE QUESTIONS!!!!!!!!!!!!!!
4 years ago
I think its
4 years ago
I think its 11.
4 years ago
No I will Not find the domain of the composition >:( how DARE you tell me what to do ~samantha~ for I will SUE you. >:((((
4 years ago
is it multiple choice?
4 years ago
or are those all the questions.
4 years ago
yup is still correct 2022
3 years ago
for what reason is it that you decided to lie? ^^^
3 years ago
Hey so fun fact y'all, the $50,000 reward was true! The guy who owned the paper actually offered it.
2 years ago
solve the inequality 4x+53 is greater than or equal to 69
1 year ago
solve the inequality 10w+213 is greater than or equal to 299
1 year ago
It is not how the plants will die it is how the plants will adapte
1 year ago