Answer:
function predicting vertical
def predict_vertical(triple):
# using least squares model parameters
ls_vertical = ls_slope*triple + ls_intercept
return ls_vertical
# Johnathan Edwards prediction
triple = 18.29 # m
vertical = predict_vertical(triple)
print("Edward's vertical jump prediction would be {:.2f} meters.".format(vertical))
plt.legend(['linear regression','least squares','data'])
plt.grid()
plt.show()
Explanation:
How does Accenture view automation?
Answer:
The description of the given question is summarized below.
Explanation:
These organizations retrained, retooled, and empowered our employees amongst all organization's internal management operating areas throughout order to create an increased automation attitude.Accenture's Innovative Software department was indeed adopting a concept called Human Plus technology, which includes this type of training.Compare and contrast the android and windows operating systems
Create union floatingPoint with members float f, double d and long double x. Write a program that inputs values of type float, double and long double and stores the values in union variables of type union floatingPoint. Each union variable should be printed as a float, a double and a long double. Do the values always print correcly? Note The long double result will vary depending on the system (Windows, Linux, MAC) you use. So do not be concern if you are not getting the correct answer. Input must be same for all cases for comparison Enter data for type float:234.567 Breakdown of the element in the union float 234.567001 double 0.00000O long double 0.G0OO00 Breaklo n 1n heX float e000000O double 436a9127 long double 22fde0 Enter data for type double :234.567 Breakdown of the element in the union float -788598326743269380.00OGOO double 234.567000 long double 0.G00000 Breakolon 1n heX float 0 double dd2f1aa0 long double 22fde0 Enter data for type long double:
Answer:
Here the code is given as follows,
#include <stdio.h>
#include <stdlib.h>
union floatingPoint {
float floatNum;
double doubleNum;
long double longDoubleNum;
};
int main() {
union floatingPoint f;
printf("Enter data for type float: ");
scanf("%f", &f.floatNum);
printf("\nfloat %f ", f.floatNum);
printf("\ndouble %f ", f.doubleNum);
printf("\nlong double %Lf ", f.longDoubleNum);
printf("\n\nBreakdown in Hex");
printf("\nfloat in hex %x ", f.floatNum);
printf("\ndouble in hex %x ", f.doubleNum);
printf("\nlong double in hex %Lx ", f.longDoubleNum);
printf("\n\nEnter data for type double: ");
scanf("%lf", &f.doubleNum);
printf("float %f ", f.floatNum);
printf("\ndouble %f ", f.doubleNum);
printf("\nlong double %Lf ", f.longDoubleNum);
printf("\n\nBreakdown in Hex");
printf("\nfloat in hex %x ", f.floatNum);
printf("\ndouble in hex %x ", f.doubleNum);
printf("\nlong double in hex %Lx ", f.longDoubleNum);
printf("\n\nEnter data for type long double: ");
scanf("%Lf", &f.longDoubleNum);
printf("float %f ", f.floatNum);
printf("\ndouble %f ", f.doubleNum);
printf("\nlong double %Lf ", f.longDoubleNum);
printf("\n\nBreakdown in Hex");
printf("\nfloat in hex %x ", f.floatNum);
printf("\ndouble in hex %x ", f.doubleNum);
printf("\nlong double in hex %Lx ", f.longDoubleNum);
return 0;
}
match the following. dont answer if you dont know please.
Answer:
instructions= command
the background screen on a computer= desktop
an organized system= folder
list of commands= GUI
performing more then 1 task= multi tasking
an object that contains multiple files= dictionary
graphical user inference= menu
Explanation:
hope this help :)
Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string. The output should include the input character and use the plural form, n's, if the number of times the characters appears is not exactly 1. Ex: If the input is: n Monday the output is: 1 n Ex: If the input is: z Today is Monday the output is: 0 z's Ex: If the input is: n It's a sunny day the output is: 2 n's Case matters. Ex: If the input is: n Nobody the output is: 0 n's n is different than N.
Answer:
The program in Python is as follows:
char = input("Character: ")[0]
string = input("String: ")
kount = string.count(char)
print(kount,char,end="")
if kount!=1:
print("'s")
Explanation:
This gets character input
char = input("Character: ")[0]
This gets string input
string = input("String: ")
This counts the occurrence of char in string
kount = string.count(char)
This prints the number of occurrence and the character
print(kount,char,end="")
This prints 's, if kount is other than 1
if kount!=1:
print("'s")
employees information system source code ..please
Answer:
def greetuser(username)
you get a call from a customer who says she can't access your site with her username and password. both are case-sensitive and you have verified she is entering what she remembers to be her user and password correctly. what should you do to resolve this problem?
a. have the customer clear her browser history and retry
b. look up her username and password, and inform her of the correct information over the phone
c. have the user reboot her system and attempt to enter her password again
d. reset the password and have her check her email account to verify she has the information
Answer:
answer would be D. I do customer service and would never give information over the phone always give a solution
In order to resolve this problem correctly, you should: D. reset the password and have her check her email account to verify she has the information.
Cybersecurity can be defined as a group of preventive practice that are adopted for the protection of computers, software applications (programs), servers, networks, and data from unauthorized access, attack, potential theft, or damage, through the use of the following;
Processes.A body of technology.Policies.Network engineers.Frameworks.For web assistance, the security standard and policy which must be adopted to enhance data integrity, secure (protect) data and mitigate any unauthorized access or usage of a user's sensitive information such as username and password, by a hacker, is to ensure the information is shared discreetly with the user but not over the phone (call).
In this context, the most appropriate thing to do would be resetting the password and have the customer check her email account to verify she has the information.
Read more: https://brainly.com/question/24112967
hi, solution, help me please.
Answer:
5hujjibjjjjjnNkzkskskwjejekekdkdkeeioee9
Answer:
is it infinity ? let me know
Sergio has been asked to make a set of data that was once restricted now available to any users. What data type will Sergio apply to this set of data
The data type Sergio will apply to this set of data that was once restricted to become available to all users is: Public.
A database can be defined as a structured or organized collection of data that are stored on a computer system and usually accessed electronically.
A data type refers to the content of both structured and unstructured data while organizing them into categories based on specific criteria, especially for access or usage, easy retrieval, sorting, and storage by users.
In Computer and technology, the three (3) main data type with respect to restrictions on its access or usage are:
PrivateProtectedPublicA public data is typically made up of variables that are visible and accessible to all classes or users.
In conclusion, Sergio should make the data a public data, in order to make them available to all users.
Read more: https://brainly.com/question/13889633
Write a method, including the method header, that will receive an array of integers and will return the average of all the integers. Be sure to use the return statement as the last statement in the method. A method that receives an array as a parameter should define the data type and the name of the array with brackets, but not indicate the size of the array in the parameter. A method that returns the average value should have double as the return type, and not void. For example: public static returnType methodName(dataType arrayName[]) 3 The array being passed as a parameter to the method will have 10 integer numbers, ranging from 1 to 50. The average, avgNum, should be both printed in the method, and then returned by the method. To print a double with 2 decimal points precision, so use the following code to format the output: System.out.printf("The average of all 10 numbers is %.2f\n", avgNum);
Answer:
The method is as follows:
public static double average(int [] arrs){
double sum = 0,avgNum;
for(int i = 0;i<arrs.length;i++){
sum+=arrs[i];
}
avgNum = sum/arrs.length;
System.out.printf("The average of all numbers is %.2f\n", avgNum);
return avgNum;
}
Explanation:
This defines the method
public static double average(int [] arrs){
This declares sum and avgNum as double; sum is then initialized to 0
double sum = 0,avgNum;
This iterates through the array
for(int i = 0;i<arrs.length;i++){
This adds up the array elements
sum+=arrs[i]; }
This calculates the average
avgNum = sum/arrs.length;
This prints the average to 2 decimal places
System.out.printf("The average of all numbers is %.2f\n",
avgNum);
This returns the average to main
return avgNum; }
Which of the following is an example of a long-term goal?Developing a lifetime savings plan
Answer:
Retirement fund/plan ?
Explanation:
Feiya has several computing devices around the home that are connected to the Internet:
A smart home assistant (connected via wireless)
A laptop computer (connected via wireless)
A desktop computer (connected via Ethernet)
Which of her devices use the Internet Protocol (IP) when sending data through the Internet?
Answer:
roaming
bluetooth
Explanation:
its right
The device that use the Internet Protocol (IP) when sending data through the Internet is every device she is using.
What is internet protocol?The Internet Protocol (IP) is a protocol, or set of rules, that is used to route and address data packets so that they can travel across networks and arrive at their intended destination.
Data traveling across the Internet is split up into smaller slices known as packets.
Essentially, it enables linked gadgets to interact with one another despite differences in internal processes, structure, or design.
Network protocols enable easy communication with people all over the world and thus play an important role in modern digital communications.
The Internet can be accessed by a wide range of computing devices. To send data over the Internet, all devices must use the Internet Protocol.
Thus, all the given device will use the Internet Protocol (IP) when sending data through the Internet.
For more details regarding internet protocol, visit:
https://brainly.com/question/27581708
#SPJ2
Consider the relational schema below: Students(sid: integer, sname: string, major: string) Courses(cid: integer, cname: string, hours: integer) Enrollment(sid: integer, cid: integer, grade: real) Write a relational algebra expression that satisfies this query? Find the distinct names of all students that take at least three courses and major in "Philosophy".
Solution :
Here, we need to perform JOIN operation of the students and registration.
Use NATURAL JOIN operator [tex]\Join[/tex] and so no need to specify Join condition.
Also we need to selection operator tp select only those course whose major in "philosophy".
Finally we projection operator π to project only distinct students name who took at least three courses.
[tex]$\pi [\sigma_{\text{student's nam}e} [ \sigma(\text{three courses}) \Join \text{"Philosophy"}]]$[/tex]
A new printer has recently been installed in the office, but it does not print. What is the first source to check for information about the problem? *
The manufacturer's website
Tech support forums
The OS website
POST card
which technique is the best to help you manage time better
Answer:
Make a schedule and select certain times to do certain things so that you could have time for more things.
Explanation:
I did the same thing now I can make time for myself.
An ATM allows a customer to withdraw maximum amount of 500
Answer:
true
Explanation:
how do you format a cd or a DVD
Using Java:
Background
Markdownis a formatting syntax used by many documents (these instructions, for example!) because of it's plain-text simplicity and it's ability to be translated directly into HTML.
Task
Let's write a simple markdown parser function that will take in a single line of markdown and be translated into the appropriate HTML. To keep it simple, we'll support only one feature of markdown in atx syntax: headers.
Headers are designated by (1-6) hashes followed by a space, followed by text. The number of hashes determines the header level of the HTML output.
Examples
# Header will become Header
## Header will become
Consider the following JavaScript code fragment:var greeting = function ( name ) {console.log ( name )}The best answer for what is wrong with this code is:Group of answer choices
Answer:
name is a reserved word in JS and cannot be used as an identifier
Explanation:
From the group of answer choices provided the only one that may be a problem would be using the word name as a parameter. Although name is not a reserved word per say in JS it is in HTML, and since JS targets HTML it could cause some errors. This however does not prevent this code from running correctly. JS does not require semicolons anymore, and the opening and closing braces for a body of code does not need to be on their own lines. Also, variable names are not Strings and do not need to be inside quotes, even for console.log()
Which type of research source lets a technical writer observe how a product works?
Answer:
Research to Support Your Technical Communication
As a buyer for a clothing retailer, for example, you might need to conduct research to help you determine whether a new line of products would be successful in your store. As a civil engineer, you might need to perform research to determine whether to replace your company's current surveying equipment with 3D-equipped stations. And as a pharmacist, you might need to research whether a prescribed medication might have a harmful interaction with another medication a patient is already taking
Explanation:
Hope it helps
Please mark as brainliest
why SSTF disk scheduling is not practically feasible?
Answer:
There is a lack of predictability because of the high variance of response time. Additionally, SSTF may cause starvation of some requests. Starvation is possible for some requests as it favors easy to reach requests and ignores the far-away processes.
SSTF disk scheduling is not practically feasible because it makes an external call and is forced to wait for I/O to complete, thereby giving up its first-place position.
What is SSTF disk scheduling?Shortest Seek Time First (SSTF) is a disc scheduling algorithm that is abbreviated as SSTF. Before moving the head away to service other requests, it selects the request that is closest to the current head location.
Because of the high variance in response time, there is a lack of predictability. Furthermore, SSTF may cause some requests to be denied. Some requests may experience starvation because the system prioritizes nearby requests and overlooks distant operations.
Therefore, because it makes an external call and is obliged to wait for I/O to complete, SSTF disc scheduling is not viable because it loses its first-place status.
To learn more about SSTF disk scheduling, refer to the link:
https://brainly.com/question/23552555
#SPJ2
The tax calculator program of the case study outputs a floating-point number that might show more than two digits of precision. Use the round function to modify the program to display at most two digits of precision in the output number.
Answer:
Explanation:
The following code is written in Python. The tax calculator program was not provided, therefore I created a tax calculator that takes in the total price as an input and adds a 7% tax to it. Then it uses the round() function to make sure that the total is outputted as a decimal with two decimal digits at most.
def taxCalculator(price):
total = price * 1.07
formattedTotal = round(total, 2)
return formattedTotal
In the welding operations of a bicycle manufacturer, a bike frame has a long flow time. The set up for the bike frame is a 7 hour long operation. After the setup, the processing takes 6 hour(s). Finally, the bike frame waits in a storage space for 7 hours before sold. Determine the value-added percentage of the flow time for this bike frame. Round your answer to the nearest whole number for percentage and do NOT include the "%" sign in the answer. For example, if your answer is 17.7%, please answer 18. If your answer is 17.4%, please answer 17. No "%" sign. No letter. No symbols. No explanation. Just an integer number.
Answer:
Bike Frame Flow Time
The value-added percentage of the flow time for this bike frame is:
= 46.
Explanation:
a) Data and Calculations:
Bike Frame Flow Time:
Setup time = 7 hours
Processing time = 6 hours
Storage time = 7 hours
Flow time of the bike frame = 13 hours (7 + 6)
Value-added percentage of the flow time for this bike frame = 6/13 * 100
= 46%
b) Flow time represents the amount of time a bicycle frame spends in the manufacturing process from setup to end. It is called the total processing time. Unless there is one path through the process, the flow time equals the length of the longest process path. The storage time is not included in the flow time since it is not a manufacturing process.
Chất xơ có nhiều trong thực phẩm nào?
Answer: rau củ quả đều có lượng chất xơ nhiều hơn so với các loại thực phẩn khác
Explanation:
slide transition can be defined as ____ of one slide after another
Answer:
visual effect
Explanation:
A slide transition is the visual effect that occurs when you move from one slide to the next during a presentation. You can control the speed, add sound, and customize the look of transition effects.
What unit of measurement is used for DIMM read and write times?
Answer:
Nanosecond
Explanation:
Nanosecond is used for measuring DIMM read and write times.
A trace table is used for
Answer:
Trace tables are used to allow programmers to trace the value of variables as each line of code is executed.
Explanation:
The values of the variables are displayed in a table and assist the programmer in identifying any potential errors.
Answer:
Trace tables can enable a programmer to trace the values of variables as each line is executed/processed/ran through the program. And yes, can aid programmers to identify potential errors in the code.
Explanation:
Write a program that prompts the user to enter a positive integer and displays all its smallest factors in decreasing order.
Answer:
<fact>[ZRjKt9sw6V(gh6E)ehNM3]<zip>
Explanation:
10. Question
What are the drawbacks of purchasing something online? Check all that apply.
Explanation:
1) the quality of purchased good may be low
2) there might me fraud and cheaters
3) it might be risky
4) we may not get our orders on time
There are many drawbacks of purchasing online, some of them are as follows,
Chance of pirated item in place of genuine product.Chances of fraud during digital purchase and transaction.Product not deliver on time as expected.Not getting chance to feel the product before purchase.These are some of the drawbacks of purchasing something online.
Learn more: https://brainly.com/question/24504878
Which of the following Access objects provides a user-friendly data entry method?
Select one:
a. query
b. table
c. form
d. report
Answer:
Table
Explanation:
Microsoft Access uses an object called a _____ to enter and organize data.
The answer is table.