write in a long paragraph about the challenges in collecting, managing ,storing, querying, and analyzing various form of big data. use ur own words
In: Computer Science
(python only)
Assignment: Guess a number
To get started, open IDLE and create a New File via the File
menu. We suggest you immediately save this file in the directory
managing all your 102 Python Labs this semester. Please save this
file with the following name: Week9A-guess_number.py.
In this lab, use while loops to create a game where the user of your program guesses a number between 1 and 100. The user keeps guessing until they get it right. You should structure your program as follows:
NOTE: You must use a seed with your random number generator. This will make the grader's life WAY easier.
print("Number to initialize the random generator:")
my_seed = int(input("SEED> "))
random.seed(my_seed)
Sample Execution
Number to initialize the random generator: 32
Enter a number between 1 and 100: 95
OUTPUT You're cold!
Enter a number between 1 and 100: 105
OUTPUT Please Enter a number between 1 and 100
Enter a number between 1 and 100: 41
OUTPUT You're lukewarm!
Enter a number between 1 and 100: 32
OUTPUT You're getting warm!
Enter a number between 1 and 100: 16
OUTPUT You're getting hot!
Enter a number between 1 and 100: 9
OUTPUT You're so close!
Enter a number between 1 and 100: 10
OUTPUT Congrats! You won!
In: Computer Science
equilateral" when all the sides are equal and print "isosceles" when
two sides are equal and print "scalene" when all the sides are
different
In: Computer Science
1. Explain, with the use of examples, when it would be appropriate to use trademarks and copyright to protect a firm’s intellectual property. Other than through the use of patents and copyright, how can a firm prevent its competencies from being imitated?
2. How can late entrants win the innovation race? Please give two examples.
3. Considering the case study, discuss some of the wider strategic reasons why firms may wish to enter a strategic alliance. What are some of the risks involved?
In: Economics
A new golf ball design is being evaluated. A random sample of 100 pro golfers and 100 weekend golfers use the new golf ball for two months. After two months, the golfers in each sample were asked whether they preferred the ball they were testing to the balls they had played with previously. 84% of the pro sample said yes, while 65% of the weekend sample said yes. Build a 90% confidence interval estimate of the difference in the proportion of golfers in the two categories who would say that they prefer the new ball. Report the upper and lower bound for your interval.
In: Math
This week, we are focusing on Management and Motivation (Chapter
3). Be sure to read chapter 3 before participating in this week's
discussion board.
Our discussion board is going to focus on the Case Study entitled
"Seaside Convalescent Care Center". You can download this case by
clicking on this link:
Week 2.pdf
Actions
Please read through the case very carefully and then think about
the issues covered in the case in light of the information that you
learned in Chapters 3 and 4. Next, read through the questions at
the end of the case -- This will get you thinking about the various
issues. Lastly, answer the following question in your initial
post:
Does Mindy have the right idea? Why or why
not? Explain what should be done to handle
the problems at hand at Seaside Convalescent Care Center.
In: Operations Management
A 2.00 m long horizontal uniform beam is supported by a wire as
shown in the figure. The wire makes an angle of 20.0 degrees with
the beam. A 40.0 kg signboard is attached to the beam 1.40 m from
the wall . What is the tension in the string if the beam has 20.0
kg mass?
In: Physics
State two reasons why it is advisable to place the transaction log on a separate disk device from the actual data?
In: Computer Science
( Posting the same question for third time. Can I please get answer in C++.( and not in C or Java) ..... Please Try and Provide me a complete programm Answer. not just one or two function)
* Declare a single dimensional array of 65 characters. Convert each character into an integer and store it in a linked list. Manipulate the linked list by completing the following task:
Create an additional linked list call greater_List, using the original linked list copy all number greater than 100 into the greater_list and give a total count of the numbers greater than 100. Create an additional array called less_array, copy all the numbers less than or equal to 100 in the original list into less_array give a total count of the numbers that are less than or equal to 100.
In: Computer Science
Write a Java program to do the following with your name. This can all be done in the main() method.
1. Create a String variable called myName and assign your personal name to it. Use proper capitalization for a legal name. I.e. String myName = "Billy Bob";
2. Load myName with the upper case version of itself and display the result.
3. Load myName with the lower case version of itself and display the result.
4. Capitalize the first letter of each given name in the lowercased name and display the result. Load the result into myName. Hint: This is not a single method call. You will need a loop to perform this. Hint: The substring method will be very helpful as you should likely build a new string result. Avoid magic number references. This solution should work with any proper name.
5. Using the value of the variable myName from step 4:
a.Display the Initials of the name. ( This may require a
Loop)
b.Use the trim methd on myName and store the results into
myName.
c.Display the size of the name
// Using Billy Bob as the name - here are the expected results:
My name in upper case is BILLY BOB.
My name in lower case is billy bob.
My name capitalized is Billy Bob.
My initials are BB.
The length of my name is 9.
In: Computer Science
When preparing government-wide statements, which of the following is not true?
Multiple Choice
Entries are necessary to adjust revenues to the accrual basis, record expenses not recognized under the modified accrual basis.
Entries are necessary to eliminate fiduciary funds.
General capital assets, general long-term debt, and internal service funds are added through worksheet journal entries.
Worksheet entries eliminate elements of the modified accrual basis fund statements that do not conform to accrual accounting, such as expenditures for capital assets and principal repayments.
In: Accounting
Hawaiian
In: Other
A merry-go-round is spinning around a frictionless axle at its center with a person standing at the edge. The person then begins to walk toward the center. Will the merry-go-round spin faster or slower as a result? Explain your answer.
In: Physics
Im writing a matlab script called vecadd that deals with vectors and is converting them between polar and rectangular coordinates. It is supposed to function based upon the following parameters:
vecadd adds two vectors and outputs the resultant vector.
vecadd(A,B) assumes A and B are both in rectangular form. The first element of each vector is the "x" component and the second element is the "y" component. The resultant is output in rectangular form.
vecadd(A,B,'p') assumes A and B are both in polar form. The first element of each vector is the magnitude and the second element is the angle in degrees. The resultant is output in polar form.
vecadd(A,B,'r') is equivalent to vecadd(A,B).
vecadd(A,B,'p','r') assumes A is in polar form and B is in rectangular form. vecadd(A,B,'r','p') assumes A is in rectangular form and B is in polar form. The resultant is output in rectangular form.
vecadd(A,B,'p','r','p') outputs the resultant in polar form.
vecadd(A,B,'p','r','r') is equivalent to vecadd(A,B,'p','r').
[RES, FORM] = vecadd(A,B,'p','r','p') outputs the resultant and the format of the resultant vector ('polar' if the last input argument is 'p' and 'rectangular' if the last input argument is 'r').
I need some help getting on the right track. Anything will do. Thanks
In: Computer Science
Write a program, using C#, windows forms, that will find the mean and standard deviation of a number of data points. The ONE PROGRAM should allow the user to enter data manually OR via a text file. The program should be very easy to use.
I will also need a step by step how to set up window for the answer. Please and thank you!!
In: Computer Science