Which of the following tells the computer hardware what to do? A Information B) Software Procedures D People
Answer: A.
Explanation:
DESCRIPTION
Zomato is a restaurant aggregation and meal delivery service based in India. It is currently operating in several countries across the world. Zomato provides thorough information about numerous eateries as well as consumer reviews. Zomato's owners aim to find hidden irregularities in their company's data. The ultimate goal of this project is to examine the data in such a way that they can accurately assess their business performance.
The data (sample) is currently accessible in the form of a few Excel files, each of which contains information about multiple restaurants operating in a certain continent. The clients want to construct a consolidated and interactive Power BI report that will allow them to do the following:
Derive data on the total number of restaurants worldwide, including continents, countries, and cities
View data on a global scale with the capacity to drill down to a granular level
Derive data on the restaurants with the highest average customer ratings
Discover the restaurants with the lowest average costs
Filter and view information on the restaurants based on:
Their geographical dimensions such as continent, country, and city.
The service they provide, such as online ordering or reservation services
The average rating slab by the color.
6. Identify the restaurants with the most cuisines served
7. Design a multi-page report that suits Zomato's theme with easy navigation across
sections.
8. Allow Zomato users to be able to access this information from both a web browser
and a mobile device.
Aim of the project:
The aim is to construct a consolidated and interactive PowerBI report that will allow Zomato to quickly assess the required data.
Steps that will help in the completion of the project:
1. Import the data from all available Excel files
2. Data transformation:
Make sure the City column names are corrected
For example:
Notes
Community
Help
Certificate
Learning Track
Self Learning
100% Completed
Assessment
Minimum 1 project & 1 test must be completed/passed as a part of certification unlocking criteria
Power BI Test Paper
Best Score: 82%2/3 Attempts
Data Manipulation and Reporting with Power BI
Power BI and Data Set.
Reference Materials
Project 2 Dataset
E-Books
Power Bi installation doc
Data Manipulation and Reporting with Power BI
Course-end Project 1
DESCRIPTION
Zomato is a restaurant aggregation and meal delivery service based in India. It is currently operating in several countries across the world. Zomato provides thorough information about numerous eateries as well as consumer reviews. Zomato's owners aim to find hidden irregularities in their company's data. The ultimate goal of this project is to examine the data in such a way that they can accurately assess their business performance.
The data (sample) is currently accessible in the form of a few Excel files, each of which contains information about multiple restaurants operating in a certain continent. The clients want to construct a consolidated and interactive Power BI report that will allow them to do the following:
Derive data on the total number of restaurants worldwide, including continents, countries, and cities
View data on a global scale with the capacity to drill down to a granular level
Derive data on the restaurants with the highest average customer ratings
Discover the restaurants with the lowest average costs
Filter and view information on the restaurants based on:
Their geographical dimensions such as continent, country, and city.
The service they provide, such as online ordering or reservation services
The average rating slab by the color.
6. Identify the restaurants with the most cuisines served
7. Design a multi-page report that suits Zomato's theme with easy navigation across
sections.
8. Allow Zomato users to be able to access this information from both a web browser
and a mobile device.
Aim of the project:
The aim is to construct a consolidated and interactive PowerBI report that will allow Zomato to quickly assess the required data.
Steps that will help in the completion of the project:
1. Import the data from all available Excel files
2. Data transformation:
Make sure the City column names are corrected
For example:
“Sí£o Paulo” should be corrected to “São Paulo”
Ensure the city name isn't ambiguous
For example:
“Cedar Rapids/Iowa City” should be corrected to “Cedar Rapids”
“ÛÁstanbul” should be corrected to “Istanbul”
3. Remove any columns that aren't being used
4. Create two columns to display the Restaurant Name and Restaurant Address
5. Make a separate table for the list of the cuisines that each restaurant serves
6. As it's a dimension table, the Country-Code table must only include unique and non-blank values
Steps to use DAX in the project:
Answer:
Zomato is a restaurant aggregation and meal delivery service based in India. It is currently operating in several countries across the world. Zomato provides thorough information about numerous eateries as well as consumer reviews. Zomato's owners aim to find hidden irregularities in their company's data. The ultimate goal of this project is to examine the data in such a way that they can accurately assess their business performance.
Explanation:
What is the best way to deal with a spam
Simply ignoring and deleting spam is the best course of action. Avoid responding to or engaging with the spam communication because doing so can let the sender know that your contact information is still live and invite additional spam in the future. Additionally, it's critical to mark the email as spam using your email program or by reporting it to the relevant authorities. Make careful to report the spam to the proper authorities for investigation if it appears to be a phishing scheme or contains hazardous content.
Benjamin's company has asked him to start migrating the company's office productivity suite and e-mail to a cloud-based solution. He knows this means that users need to be able to log into the cloud platform, but doesn't want them to have to use a separate account to do so. Which of the following could he configure to meet that goal?
The protocol that translates between IP addresses and MAC addresses on a network is
?
Answer: Address Resolution Protocol
Explanation: ARP is the Address Resolution Protocol, used to translate between Layer 2 MAC addresses and Layer 3 IP addresses. ARP resolves IPs to MAC addresses by asking, “Who has IP address 192.168. 2.140, tell me.” An example of an ARP reply is “192.168. 2.140 is at 00:0c:29:69:19:66.”
Write code in MinutesToHours that assigns totalHours with totalMins divided by 60
Given the following code:
Function MinutesToHours(float totalMins) returns float totalHours
totalHours = MinutesToHours(totalMins / 60)
// Calculate totalHours:
totalHours = 0
Function Main() returns nothing
float userMins
float totalHours
userMins = Get next input
totalHours = MinutesToHours(userMins)
Put userMins to output
Put " minutes are " to output
Put totalHours to output
Put " hours." to output
Answer:
Function MinutesToHours(float totalMins) returns float totalHours
// Calculate totalHours:
totalHours = totalMins / 60
return totalHours
End Function
80. A .......... is used to read or write data.
A. CD B. VDU C. ROM D. RAM
Answer:
Depending on exactly what they mean by read and write, both A and D are valid. In fact, if you read that as "read or write" as being a logical OR and not the logical AND that the sentence probably intends, then all four answers could be correct.
What they probably mean to say though is "..... is used as a read/write storage medium", in which case A is the correct answer.
A. Data can be written to or read from a CD. This is probably the "right" answer
B. A human can "read" data from a Visual Display Unit, and the computer "write" it. That of course is not the intended meaning though.
C. Data can be read from Read Only Memory, but not written to.
D. Data can be both read and written to Random Access Memory, but not retained after the computer is powered off.
HTML, the markup language of the web, specifies colors using the RGB model. It uses a two-digit hexadecimal (that is, base 16) representation for each component of the vector, and concatenates the three numbers together to form one large, six-digit number. For instance, the HTML color code #80FF3B has red component 80, green component FF, and blue component 3B. In hexadecimal, the digits 0 through 9 have their usual meanings, but the letters A through F also function as digits, and have the meanings 10 through 15, respectively. Because hexadecimal means base 16, a two-digit number such as 3B thus has the meaning 16⋅3+11=59. The 16 is used because the 3 is in the 16s place, and the 11 is the meaning of the digit B. (If you found this introduction to hexadecimal notation too brief, consult the web for more details.) What is the maximum number representable with two hexadecimal digits?
Solution :
It is given that :
The digits 0 through 9 in hexadecimal have their usual meanings. But letters A through F function like the digits and it means digits 10 through 15, respectively.
Now the base of a hexadecimal is 16.
Now we know from 0 to 9 \($\rightarrow$\) A, B, C, D, E, F
Now the maximum two digits hexadecimal numbers are = F F
So, F F \($= 16 \times 15 + 16^0 \times 15$\)
= 255
Which of the following is the best example of a purpose of e-mail?
rapidly create and track project schedules of employees in different locations
easily provide printed documents to multiple people in one location
quickly share information with multiple recipients in several locations
O privately communicate with select participants at a single, common location
Answer:
The best example of a purpose of email among the options provided is: quickly share information with multiple recipients in several locations.
While each option serves a specific purpose, the ability to quickly share information with multiple recipients in different locations is one of the primary and most commonly used functions of email. Email allows for efficient communication, ensuring that information can be disseminated to multiple individuals simultaneously, regardless of their physical location. It eliminates the need for physical copies or face-to-face interactions, making it an effective tool for communication across distances.
Explanation:
Brainly account. How to open?
Which guidelines should be used to make formatting tasks more efficient?
Answer:
Use pasted text only; this does not keep the original formatting.
Explanation:
How many passes will it take to find the four in the list 4,5,6,7,8,9,10
Answer:
1
Explanation:
Which company is producing laptops nowadays? *
Cute
Aspire
Dell
Innovative
Answer:
dell
thanks for points
Why is it important to update website-based information?
It is important to maintain appearances.
It helps to draw users to the website.
It does not matter.
It can reduce calls made to the organization.
Answer:
it helps to draw users to the website
Which technology is making quantum computing easier to access and adopt
The technology that is making quantum computing easier to access and adopt is known to be option c: cloud.
What technologies are used to build quantum computers?A lot of Efforts is known to be used in creating a physical quantum computer that is known to be based on technologies such as transmons, ion traps and others
Cloud computing is seen as a kind of an on-demand presence of computer system resources, and it is one that is made up of data storage and computing power, and it is one where there is no direct active management by the user.
Hence, The technology that is making quantum computing easier to access and adopt is known to be option c: cloud.
Learn more about quantum computing from
https://brainly.com/question/28082752
#SPJ1
See full question below
Which technology is making quantum computing easier to access and adopt?
a. Edge Computing
b. Virtual Reality
c. Cloud
d. Blockchain
XYZ Medicomplex hospital have recently installed a large computer system having a high performance processor and about 25 PCs attached with the processor through a Local Area Network (LAN). You have been selected as Information System Auditor and are asked to perform an audit ffor the hospital. What are the important steps you have to go through for this audit? Write your answer in maximum 200 words.
An IT audit is required to guarantee that your system is secure and not exposed to assaults. An IT audit's major goal is to assess the availability of computer systems, the security, and confidentiality of information within the system, and if the system is accurate, reliable, and timely.
What should an IT Audit Include?Depending on the size of your firm, you may do a single comprehensive IT audit or examine particular sections of your infrastructure. The aim is to identify the risks associated with your IT systems and discover strategies to minimize those risks, whether by resolving current issues, improving staff behavior, or deploying new technologies.
An IT audit must involve the following steps:
Determine the goal of the IT audit.Create an audit plan to meet those goals.Collect and analyze all relevant IT controls' data and information.Execute tests like data extraction or a thorough software analysis.Any discoveries should be reported.Follow-UpLearn more about IT Audit:
https://brainly.com/question/14277768
#SPJ1
1 Refer to the plan below and write a Java program called PrintSum which outputs the sum of the (10 marks) ..umbers from 0 up to n, where n is input by the user: Plan Initialise total and counter to 0 Get n from the user
WHILE the counter is <=n
update the total
add 1 to counter print total
The java program that called "PrintSum" that follows the provided plan is given below.
What is the Java program?import java.util.Scanner ;
public class PrintSum {
public static void main(String[] args){
int total =0;
int counter = 0;
Scanner scanner = newScanner(System.in);
System.out.print("Enter a number (n):");
int n = scanner.nextInt();
while (counter <= n) {
total += counter;
counter++;
}
System.out.println(" The sum of numbers from 0 to " +n + " is: " + total);
}
}
How does this work ?This program prompts the user to enter a number (n),then calculates the sum of numbers from 0 to n using a while loop.
The total variable is updated in each iteration of the loop,and the counter is incremented by 1. Finally, the program outputs the calculated sum.
Learn more about Java at:
https://brainly.com/question/26789430
#SPJ1
why are protocols needed
Answer:
Network protocols are needed because it include mechanisms for devices to identify and make connections with each other, as well as formatting rules that specify how data is packaged into messages sent and received.
https://www.celonis.com/solutions/celonis-snap
Using this link
To do this alternative assignment in lieu of Case 2, Part 2, answer the 20 questions below. You
will see on the left side of the screen a menu for Process Analytics. Select no. 5, which is Order
to Cash and click on the USD version. This file is very similar to the one that is used for the BWF
transactions in Case 2, Part 2.
Once you are viewing the process analysis for Order to Cash, answer the following questions:
1. What is the number of overall cases?
2. What is the net order value?
Next, in the file, go to the bottom middle where you see Variants and hit the + and see what it
does to the right under the detail of variants. Keep hitting the + until you see where more than a
majority of the variants (deviations) are explained or where there is a big drop off from the last
variant to the next that explains the deviations.
3. What is the number of variants you selected?
4. What percentage of the deviations are explained at that number of variants, and why did you
pick that number of variants?
5. What are the specific variants you selected? Hint: As you expand the variants, you will see on
the flowchart/graph details on the variants.
6. For each variant, specify what is the percentage of cases and number of cases covered by that
variant? For example: If you selected two variants, you should show the information for each
variant separately. If two were your choice, then the two added together should add up to the
percentage you provided in question 4 and the number you provided in question 3.
7. For each variant, how does that change the duration? For example for the cases impacted by
variant 1, should show a duration in days, then a separate duration in days for cases impacted
by variant 2.
At the bottom of the screen, you see tabs such as Process, Overview, Automation, Rework, Benchmark,
Details, Conformance, Process AI, Social Graph, and Social PI. On the Overview tab, answer the
following questions:
8. In what month was the largest number of sales/highest dollar volume?
9. What was the number of sales items and the dollar volume?
10. Which distribution channel has the highest sales and what is the amount of sales?
11. Which distribution channel has the second highest sales and what is the amount of sales?
Next move to the Automation tab and answer the following questions:
12. What is the second highest month of sales order?
13. What is the automation rate for that month?
Nest move to the Details tab and answer the following questions:
14. What is the net order for Skin Care, V1, Plant W24?
15. What is the net order for Fruits, VV2, Plant WW10?
Next move to the Process AI tab and answer the following questions:
16. What is the number of the most Common Path’s KPI?
17. What is the average days of the most Common Path’s KPI?
18. What other information can you get off this tab?
Next move to the Social Graph and answer the following questions:
19. Whose name do you see appear on the graph first?
20. What are the number of cases routed to him at the Process Start?
1. The number of overall cases are 53,761 cases.
2. The net order value of USD 1,390,121,425.00.
3. The number of variants selected is 7.4.
4. Seven variants were selected because it provides enough information to explain the majority of the deviations.
5. Seven variants explain 87.3% of the total variance, including order, delivery, credit limit, material availability, order release, goods issue, and invoice verification.
10. January recorded the highest sales volume, with 256,384 items sold for USD 6,607,088.00. Wholesale emerged as the top distribution channel, followed by Retail.
12. December stood out as the second-highest sales month,
13. with an automation rate of 99.9%.
14. Notable orders include Skin Care, V1, Plant W24 (USD 45,000.00) and
15. Fruits, VV2, Plant WW10 (USD 43,935.00).
17. The most common path had a KPI of 4, averaging 1.8 days.
18. This data enables process analysis and improvement, including process discovery, conformance, and enhancement.
19. The Social Graph shows Bob as the first name,
20. receiving 11,106 cases at the Process Start.
1. The total number of cases is 53,761.2. The net order value is USD 1,390,121,425.00.3. The number of variants selected is 7.4. The percentage of the total variance explained at 7 is 87.3%. Seven variants were selected because it provides enough information to explain the majority of the deviations.
5. The seven specific variants that were selected are: Order, Delivery and Invoice, Check credit limit, Check material availability, Order release, Goods issue, and Invoice verification.6. Below is a table showing the percentage of cases and number of cases covered by each variant:VariantPercentage of casesNumber of casesOrder57.2%30,775Delivery and Invoice23.4%12,591Check credit limit5.1%2,757
Check material availability4.2%2,240Order release4.0%2,126Goods issue2.4%1,276Invoice verification1.7%9047. The duration of each variant is as follows:VariantDuration in daysOrder24Delivery and Invoice3Check credit limit2Check material availability1Order release2Goods issue4Invoice verification1
8. The largest number of sales/highest dollar volume was in January.9. The number of sales items was 256,384, and the dollar volume was USD 6,607,088.00.10. The distribution channel with the highest sales is Wholesale and the amount of sales is USD 3,819,864.00.
11. The distribution channel with the second-highest sales is Retail and the amount of sales is USD 2,167,992.00.12. The second-highest month of sales order is December.13. The automation rate for that month is 99.9%.14. The net order for Skin Care, V1, Plant W24 is USD 45,000.00.15.
The net order for Fruits, VV2, Plant WW10 is USD 43,935.00.16. The number of the most common path’s KPI is 4.17. The average days of the most common path’s KPI is 1.8 days.18. Additional information that can be obtained from this tab includes process discovery, process conformance, and process enhancement.
19. The first name that appears on the Social Graph is Bob.20. The number of cases routed to Bob at the Process Start is 11,106.
For more such questions deviations,Click on
https://brainly.com/question/24251046
#SPJ8
ProjectSTEM CS Python Fundamentals - Lesson 3.3 Question 2 - RGB Value:
Test 6: Using 256 for all inputs, this test case checks that your program has no output. / Examine the upper condition for each color.
Test 10: This test case sets the input for blue beyond the limit, while red and green are below. It checks if your program's output contains “Blue number is not correct”, but not “Red number is not correct”, or “Green number is not correct” / Check that you output the correct phrase when the number is outside the range. Make sure that only the incorrect color phrases are output.
While CMYK is frequently used to print out colors, RGB is utilized when the colors need to be presented on a computer monitor (such as a website).Make the variable "alien color" and give it the values "green," "yellow," or "red." To determine whether the alien is green, create an if statement.
How does Python find the RGB color?Colors can only be stored in Python as 3-Tuples of (Red, Green, Blue). 255,0,0 for red, 0 for green, and 255,0 for blue (0,0,255) Numerous libraries use them. Of course, you may also create your own functions to use with them.The rgb to hex() function, which takes three RGB values, is defined in line 1.The ":X" formatter, which automatically converts decimal data to hex values, is used in line 2 to construct the hex values. The outcome is then returned.Line 4 is where we finally call the function and supply the RGB values.Verify the accuracy of the RGB color code provided. While CMYK is frequently used to print out colors, RGB is utilized when the colors need to be presented on a computer monitor (such as a website).To learn more about Python refer to:
https://brainly.com/question/26497128
#SPJ1
Review the return policies at your favorite retailer, then
answer this question. What information systems do you think
would need to be in place to support their return policy?
To support a retailer's return policy, information systems such as inventory management, customer relationship management, and point of sale systems may need to be in place to accurately track and process returns, maintain customer information and purchase history, and handle transactions.
What is a return policy?A product return in retail is the process of a customer returning previously purchased products to a retailer and getting a refund in the original mode of payment, an exchange for another item, or a shop credit.
A return policy's goal is to specify the particular rules for how, when, and under what conditions customers can return their purchased things. A return policy also shows that you care about your clients and their pleasure with your products and services.
Learn more about Return Policies:
https://brainly.com/question/14337606
#SPJ1
who was the first inventor of computer
Answer:
Explanation:
English mathematician and inventor Charles Babbage is credited with having conceived the first automatic digital computer. During the mid-1830s Babbage developed plans for the Analytical Engine.
Answer:
Charles Babage is the first inventor of computer.
Assemble a Server computer based on your budget (state the amount in Ghana Cedis), discussing the type of components (giving their exact names, model numbers, types, cost, architecture, etc.) you would need and give reasons why you need them.
Answer:
Following are the answer to this question:
Explanation:
The server would be generally a powerful processor instead of a desktop pc. It must choose the Dell server browser to choose a server for industrial applications.
Dell Poweredge R730 has been its pattern. There should be the reason whether these servers are efficient, available, flexible, and support the concept of even a virtual environment. Its same servers are easy to use, as well as the memory will be connected to this server is 8 TB.What are the core steps to add revisions or features to a project?(1 point)
Responses
Evaluate feasibility of the goals, create a list of functionality requirements, and develop the requirements of the feature.
Evaluate feasibility of the goals, develop programming solutions, and evaluate how well the solutions address the goals.
understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature.
Communicate with the client, create a sprint backlog, develop the project, and evaluate how well the solution fits the requirements.
The core steps to add revisions or features to a project are ""Understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature." (Option C)
How is this so?
The core steps to add revisions or features to a project include understanding the goals,evaluating the impact on the project, creating a list of functionality requirements,and developing the requirements of the feature.
These steps ensure that the goals are clear, the impact is assessed, and the necessary functionality is identified and implemented effectively.
Learn more about project management at:
https://brainly.com/question/16927451
#SPJ1
Draw a flowchart or write pseudocode to represent the logic of a program that allows the user to enter a value for hours worked in a day. The program calculates the hours worked in a five-day week and the hours worked in a 252-day work year. The program outputs all the results.
Answer:
i think its 2131
Explanation:
c
Which part of the Result block should you evaluate to determine the needs met rating for that result
To know the "Needs Met" rating for a specific result in the Result block, you should evaluate the metadata section of that result.
What is the Result blockThe assessment of the metadata section is necessary to determine the rating of "Needs Met" for a particular outcome listed in the Result block.
The metadata includes a field called needs_met, which evaluates the level of satisfaction with the result in terms of meeting the user's requirements. The needs_met category usually has a score between zero and ten, with ten implying that the outcome entirely fulfills the user's demands.
Learn more about Result block from
https://brainly.com/question/14510310
#SPJ1
What happens if you have two values with no operator between them
In Computer programming, if you have two values that has no operator between them, you would experience a syntax error.
What is a syntax error?A syntax error can be defined as a type of error that typically occurs due to mistakes in the source code of a program such as:
Spelling of words.Punctuation errorsIncorrect labelsSpacingThis ultimately implies that, a misplacement of punctuation or spacing in a command during programming that causes the source code of a program to stop running is most likely a syntax error.
In conclusion, we can infer and logically deduce that if you have two values that has no operator between them, you would experience a syntax error in computer programming.
Read more on computer programming here: brainly.com/question/25619349
#SPJ1
Which of the following sorting algorithms could be implemented on a doubly-linked list WITHOUT making the asymptotic worst-case complexity even worse? You must perform the sorting in-place, you CANNOT just copy to an array and then use the normal algorithm
I. Bubble sort
Il. Selection sort
IlI. Insertion sort
IV. Quicksort
V. Heapsort
A. I, II, and IlIl only
B. IV and V only
C. I and II only
D. Iand Il only
E. All except V
Answer:
C. I and II only
Explanation:
Doubly-linked list is used for sorting algorithms. To sort doubly-linked lists first sort the nodes current and nodes index then compare the data of current and index node. Bubble sort and Selection sort can be used for algorithm sorting without asymptotic complexity. Bubble sort can be created when adjacent nodes are in ascending order.
Question 10 of 10
What should you do to make your MakeCode micro:bit program respond to a
false start?
OA. Scrap the program and start over from the beginning with different
users.
OB. Use the input variable block to replace the "true" value in the If-
then condition.
C. Create a Boolean variable and control structure to make the
program skip the rest of the reaction test.
OD. Drag the entire "reaction Time" equation back into the set
reaction Time to block.
The thing you would have to do to make your MakeCode micro:bit program respond to a false start is B. Use the input variable block to replace the "true" value in the If- then condition.
What is a False Start?This refers to the term that is used in programming circles and terms to show the start of a variable or program without all the required things available,
Hence, it can be seen that in order to make your given program in MakeCode micro:bit program respond to a false start, you would have set the value of the variables false_start which means replacing the true value in the conditional statement to false, which means that no time elapsed
Read more about false starts here:
https://brainly.com/question/10818465
#SPJ1
Which of the following statements accurately reflects how consumers can add more memory to their laptop
or PC?
O They can add more internal memory for a price, but that is the only option.
They cannot easily do this-it is advisable just to purchase an entirely new computer.
O They cannot add more internal memory, but they can use an external storage device.
They can add more internal memory or use an external storage device.
Save and Exit
Next
Submit
Answer: The statement that accurately reflects how consumers can add more memory to their laptop or PC is: "They can add more internal memory or use an external storage device."
Adding more internal memory, such as installing additional RAM, is a common method of increasing a computer's memory capacity. This can usually be done by purchasing compatible RAM and installing it into the computer's available memory slots.
Alternatively, consumers can also use an external storage device, such as an external hard drive or USB drive, to increase the amount of storage space available to them. While this method doesn't directly increase the computer's internal memory, it does provide additional storage space that can be used to store files and applications.
Explanation: :)