A leading global vendor of computer software, hardware for computer, mobile and gaming systems, and
cloud services. Its corporate headquarters is located in Redmond, Washington, and it has offices in more
than 60 countries
Apple
Microsoft
IBM
Global Impact

Answers

Answer 1

Answer:

Microsoft

Explanation:


Related Questions

Question # 2
Multiple Select
Which of the following statements are true regarding feedback? Select 3 options.

-Feedback is used exclusively for marketing purposes.

-Feedback includes only the unsolicited opinions of customers.

-Feedback can be gathered from everyday activities, like support calls.

-The type of feedback gathered, depends on the phase of the project and the goals for the feedback.

-Customer surveys can be used to ask specific questions.

Answers

The statement that are true regarding feedback are:

c. Feedback can be gathered from everyday activities, like support calls.

d. The type of feedback gathered depends on the phase of the project and the goals for the feedback.

e. Customer surveys can be used to ask specific questions.

What are feedbacks?

Feedbacks are the return compliments or suggestions that are given by customers after taking any service by any company. The business updates its products in response to client input.

He requested input from his employer. According to the sensors' feedback, the computer adjusts. The microphone was providing some input to us. These feedbacks are important for the company or any other person to improve herself.

Therefore, the correct options are c, d, and e.

To learn more about feedback, refer to the link:

https://brainly.com/question/26994432

#SPJ2

How to install windows 11 on unsupported hardware.

Answers

Answer:

It requires modification of the installation media to bypass compatibility checks

Explanation:

You should not do this as it could prevent your computer from not functioning properly. More details: https://support.microsoft.com/en-us/windows/installing-windows-11-on-devices-that-don-t-meet-minimum-system-requirements-0b2dc4a2-5933-4ad4-9c09-ef0a331518f1

Which option ensures that items in a text box or table cell will be in the absolute center of that element?

*i chose b. center, align, middle and got a 100 edg21

Answers

Answer:

Center, Align, Middle

Explanation:is correct. post protected

Fill in the blank with the correct answer.

Question 1 options:

1) options


2) view


3) selection


4) history


5) navigate

1.
The ______ panel records user operations and can be used to reverse changes made to an image.

2.
The ______ panel is used to pan an image and zoom in and out

3.
The ______ bar displays options available for selected tool.

4.
The Actual Size and Fit Screen options are available in the ______ menu.

5.
The Lasso, Marquee, and Wand tools are examples of ______ selection tools.

Answers

Answer:

1. history

2. view

3. Selection

4. options

5. navigation

Explanation:

Hoped this helped. I am un-sure of a few.

Is noreasters the kind of weather that a place has over a long period of time (true)or (false) ?

Answers

It is true hope this helps

Consider the following instance variables and method from a class: private String descriptor; public String makeSentence(int quant, boolean sign) { String s = "Object is "; if (!sign) { s += "not "; } for (int i = 0; i < quant; i++) { s += "very "; } return s + descriptor; } Suppose an object of this class is initialized so the value of descriptor is "regular". What would be returned by the call makeSentence(3, false) made on this object?

Answers

The call makeSentence(3, false) will return

"Object is not very very very regular"

The program fragment is:

///////////////////////////////////////////////////////////////////////////////////////////////////////////////

private String descriptor;

public String makeSentence(int quant, boolean sign) {

   String s = "Object is ";

   if (! sign) {

       s += "not ";

    }

   for (int i = 0; i < quant; i++) {

       s += "very ";

   }

   return s + descriptor;

}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////

descriptor is an instance field of the class. When makeSentence(3, false) is called, it does the following;

Initializes a local variable s with "Object is "

s now contains "Object is "

Since sign== false, the if block executes

s now contains "Object is not "

The for loop will execute 3 times to append "very " to s

s now contains "Object is not very very very "

Finally the return statement returns a concatenation of the contents of descriptor (descriptor=="regular") and s

s now contains "Object is not very very very regular"

Learn more about programs here: https://brainly.com/question/19625875

A business is having trouble keeping up with the competition. They cannot
respond to their customers like the competition. Which type of system will
likely be able to help them solve this issue?
A. Transaction processing system
B. Management communication system
C. Decision support system
D. Management information system

Answers

Answer:

Decision support system is the answer

Explanation:

_______________ is research in the design and the use of computer technology, which focuses on the interfaces between people and computers.

Answers

Answer:

______HUMAN- COMPUTER INTERACTION_________ is research in the design and the use of computer technology, which focuses on the interfaces between people and computers.

Explanation:

HOPE ITS HELP

In a complex formula, how does excel determine which calculation to perform first?.

Answers

In a complex formula, the way excel determines which calculation to perform first is that; It follows the order of operations.

When carrying out calculations in excel, if we don't bracket certain operations, excel will use the order of operation called BODMAS to determine which operation to carry out first.

For example, if excel wants to solve 3 × 4 + 7 - 2;

The acronyms in BODMAS stand for;

B - Brackets

O - Orders (powers/indices or roots)

D - Division

M - Multiplication

A - Addition

S - Subtraction

Now, it means that the first action it will perform is Bracket while the last will be subtraction.

In our example, excel will first use the multiplication sign to get;

(3 * 4) = 12

Then addition; 12 + 7 = 19

Then subtraction; 19 - 2 = 17

Read more on BODMAS at; https://brainly.com/question/16788360

How to make headers without bootstrap angular.

Answers

Answer:

The idea is page should be fixed and cannot be scroll. Header and footer always stick to top and bottom. the middle part is content which is scroll-able only. contents should not be overlapped by header and footer. Layout should work with different type of devices and screen.

Explanation:

help me.............

Answers

Answer:

Explanation:

Sure

10 toes? Is that what you asked?

5 oceans entirely in the world.

300 bones in a baby and 206- In an adult body

The area of the spreadsheet highlighted in red is the _____.

cell C1

formula bar

row C

column C

Answers

A spreadsheet is a software application which is used to display numerical data in a tabular form. It has further functions which includes organizing, displaying, calculating data, etc where the data can be viewed at a glance and retrieved from memory.

There are different types of spreadsheet which includes:

G00gle SheetMicrosoft ExcelLibreOfficeSmartsheet, etc.

Data can be arranged in rows and columns.

Please note that your question is incomplete so I gave you a general overview to help you get a better understanding of the concept.

Read more here:

https://brainly.com/question/22101774

Answer:

column C

Explanation:

i got it right

Recursive functions are ________ iterative algorithms. as efficient as less efficient than more efficient than impossible to compare to

Answers

Based on computer programming, Recursive functions are less efficient than iterative algorithms.

Recursive Function vs. Iterative Algorithm

During implementation, the Recursive functions require the module to call itself multiple times till the base condition is satisfied, thereby making the line of codes longer and slower to execute.

In contrast, the Iterative algorithm utilizes looping statements such as for LOOP, WHILE LOOP, or DO-WHILE LOOP to repeat the same steps, thereby making the line of codes shorter and faster to execute.

Hence, in this case, it is concluded that the correct answer is "less efficient than."

Learn more about Recursive Functions here: https://brainly.com/question/25647517

Yahoo Messenger is an example of a/an __________ service on the Internet.

Answers

Answer:

Yahoo Messenger is an example of a service on the Internet.

INSTANT MESSAGING SERVICE, which includes text messaging, voice calling and file sharing.

Pls name me brainliest!!! ;D

Select the correct answer.
Which option would you use to insert two line breaks in your document?
A.<2br>
B.

C.


D.

Answers

Answer:

yes, I agree.

Explanation: ,

What happens as a blog's audience grows?
A. It acquires more insurance.
B. Its influence widens.
O C. Its HTML becomes longer.
O D. It acquires more domain names.

Answers

Answer:

ᴀ. ɪᴛ ᴀᴄǫᴜɪʀᴇs ᴍᴏʀᴇ ɪɴsᴜʀᴀɴᴄᴇ.

Explanation:

Hᴏᴘᴇ Iᴛ's Hᴇʟᴘ

Explanation:

[tex]a \: it \: acquiresmore \insurance[/tex]

A. it's acquires more insurance

In any and every instance when the Federal Government provides recovery support, all six Recovery Support Functions will be activated. A. TRUE

Answers

Answer:

what?

Explanation:

what are the questions lol

Question 8 of 10
When is a table the most effective way to present information?
O A. When graphs are more expensive to create.
O B. When you want to show the parts of a whole.
O C. When you want to show how parts fit together.
O D. When you want to make many details available in an organized
way.

Answers

Answer:

C

Explanation:

Tables and figures are particularly effective when large amounts of information have to be presented and discussed in an effective way.

Answer:

D. When you want to make many details available in an organized way.

Explanation:

Identify the link element that accesses a style sheet file named output. Css only when the device is a printer or a projection device.

Answers

There are different types of link element. The link element that accesses a style sheet file named output is:

<link href="output.css" media="print, projection" />

Style sheets often shows a key growth for Web page designers, widening their ability to boast the appearance of their pages.

In the web environments, people are very concerned with the content of their documents than the way it was presented.

There are techniques that often work for some of the people but not for all of the people and there is need therefore to make new techniques.

Learn more about link element from

https://brainly.com/question/25608430

4. Each mobile device described in this chapter requires that the user have a/an ____________________ associated with services offered by the publisher of the mobile OS in use on the device.

Answers

All mobile devices requires that end users have an account that is associated with services offered by the publisher of the mobile operating system (OS) installed on the device.

A mobile device can be defined as a small, portable, programmable electronic device that is designed and developed for the transmission and receipt of data signals (messages) over a network. Thus, a mobile device must be designed as a handheld device with communication capabilities.

Additionally, mobile devices such as smartphones have a mobile operating system (OS) installed on them, so as to enable them perform various tasks such as:

Taking pictures and creating video files.Typing and sending both text and multimedia messages.Browsing the Internet.Making both audio and video calls.

As a general rule, all mobile devices requires that end users have a registered account associated with the services offered by a publisher of the mobile operating system (OS) installed on the device. This registered account serves as a unique identifier and it connects an end user with the publisher of the mobile operating system (OS).

Read more: https://brainly.com/question/4922532

________ software consists of operating systems, utilities, device drivers, and language translators.

Answers

Answer:

"System"

Explanation:

System software consists of operating systems, utilities, device drivers, and language translators.

(not much explanation as it was a fill in the blank which explains itself haha)

Have a nice day!

    I hope this is what you are looking for, but if not - comment! I will edit and update my answer accordingly. (ノ^∇^)

- Heather

Project: On Assignment as a Web Developer
Assignment Directions:

Create a web page for a fictitious company: Widgets Inc. has hired you to make a mock-up for their new website. They are on a budget and only want to have a presence on the Internet. They do not need any fancy bells and whistles. They have sent you an email message with the basic parameters of the site.

The site should have at least three pages. They should include the landing page (commonly named index.htm), a contact page, and a "Meet the Company" page.
Each page should have an identical header containing the company name and motto: "We make widgets fun!"
Each page must include navigation back to the home page (without needing to use the Back button on the browser).
All font styles and alignment must be performed with inline CSS.
The company mascot is a dog, but there is no logo provided in this project. Any picture of a dog will do. Make sure it is prominently displayed on each page.
Each page should display in a web browser with a title.
All employees on the "Meet the Company" page can be random people's photos from the Internet. Please include Jack Sprat, President, Tom Thumb, Vice President, Sally Flag, Treasurer, and Monty Fuller, Secretary.
All text for these pages can be fake. See this website to create filler paragraphs.
Make up email addresses, but use the mail to: command as a hyperlink and display the person's name and not the actual address.
Each page should have a link to the other pages.
Link to at least three remote web pages. One of these should be formatted in an iframe.
The main page should have a sample product table including the following information:
Name Size Color Lead time Price Discount (for 10)
W-1 1X1 Blue 1 week $200.00 10%
R-2 2X2 Green 1 week $1,200.00 15%
D-2 2X3 Red 2 weeks $12,000.00 20%
Assignment Guidelines:

Projects will be assessed on following the requirements and style. Use color (creatively), at least two typefaces, headings, bold and italics, images, background colors, and so on to make your pages.

Submission Requirements:

Standard HTML

Question # 1

File Upload

Ensure that you fulfill all requirements, then upload your final web page project.

Answers

Answer:

It is not possible to upload files .html files here

In Super Mario 64, a character called Lakitu follows Mario around on a cloud, filming him with a camera as though he were shooting a news broadcast. What type of character perspective is this an example of?

Second-person perspective
First-person perspective
third-person perspective
over-the-shoulder perspective

Answers

Answer:

A second person prespective

Explanation:

Answer:

i had dat gam i think its 3rd person but i am not positive... i have never even heard of over the shoulder perspective.

RDP connection from outside the network to a server inside the network. Which network device will a network administrator MOST likely configure to allow this connection? Hub Switch Firewall

Answers

Answer:

Firewall

Explanation:

The firewall might block the Remote Desktop Protocol (RDP) connection. This is because hackers could use open connections to brute force passwords or control an infected computer. The firewall ensures that only authorised connections occur.

​A(n) ________ is an excellent tool for representing a​ system's component processes and the flow of data among them.

Answers

A(n) DFD is an excellent tool for representing a system's component processes and the flow of data among them.

Can you make a phone app with angular?.

Answers

Answer:

yes

Explanation:

TCP and the User Datagram Protocol (UDP) provide _________ between processes on any two of those hosts. A. address translation B. reliable transport C. data transport D. performance enhancements

Answers

TCP is known to be a type of a connection-oriented protocol, while UDP is a connectionless protocol. TCP and UDP provide data transport between hosts.

TCP and UDP are known for their speed, as TCP is slower and can retransmit lost data packets than UDP. UDP is said to be faster, simpler, and efficient protocol.

Data transport is simply known to be an the energy problem. It is the amount of energy needed to transport a bit from the closest neighbor.

Data Transport Service gives  a reliable connection for moving large amounts of data at very fast speeds.

Learn more from

https://brainly.com/question/17695822

HELP ME!!!!!!! %) select all the correct answer. What will be the output of using the element in the given HTML code? 1011 2 A. 10112 B. 10112 C. 21011 D. 21011

Answers

Answer:

A or B

Explanation:

I'm not sure I used HTML a bit but I am not a pro on it so this might be not correct

Tell me if I'm wrong :)

Answer:

The answer is B: 1011 with the two under

Explanation:

I got it correct on my test.

codehs python 4.7.6 Powers of Two
it says I'm wrong because I need

Answers

[tex]\huge\fbox\orange{A} \huge\fbox\red{N}\huge\fbox\blue{S}\huge\fbox\green{W}\huge\fbox\gray{E}\huge\fbox\purple{R}[/tex]

[tex]\huge\underline\mathtt\colorbox{cyan}{in attachment}[/tex]

Following are the program to calculate the power of two:

Program Explanation:

Defining an integer variable "i" that hold an integer value.Defining a for loop that checks "i" value in between 20, inside this it calculates power of two.At the last use print method to print its value.

Program:

i=1#holding integer value in i

for i in range(20):#defining a for that starts 1 to 20    

   i = 2 ** i#calculate power of 2 in i variable

   print(i)#print value

Output:

Please find the attached file.  

Learn more:

brainly.com/question/23170807

What devices do not need device drivers to be manually installed, and start to function as soon as they are connected to a computer?.

Answers

Plug-and-play devices are electronic devices that do not require any device driver to be manually installed on the host device (computer) and as such they start functioning immediately they are connected to the host device (computer).

Plug-and-play (PnP) can be defined as a technology that is designed and developed to allow an operating system (OS) of a computer to automatically detect and configure a peripheral (input and output device) as soon as they are connected to the computer.

On a related note, a plug-and-play device is an electronic device that do not require any device driver to be manually installed on the host device (computer) and as such it start to function immediately it is connected to the host device (computer).

In Computers and Technology, some examples of a plug-and-play device include the following:

External hard-driveComputer monitorKeyboardWeb-camMouse

Find more information: https://brainly.com/question/17402566

Other Questions
HEELP PLEASE!What is a cardiac style??? nepalese people have maintained religious tolerance justify 400.0 mL of a 0.425 M solution of NaCl is diluted to 900.0 mL. What is the new concentration of the solution There is a bag with only red marbles and blue marbles. The probability of randomly choosing a blue marble is 5\12There are 84 marbles in total in the bag and each is equally likely to be chosen. Work out how many red marbles there must be. Which of the following statements apply to leukocytes? Select all that apply.Multiple select question.They eject major organelles when mature.They are capable of protein synthesis.They live approximately 120 days.They retain their organelles throughout their life time.They are not uniform in form and function. Translate the following phrase into an inequality:"A number n minus 3.5 is less than or equal to 4." PLEASE HELP I HAVE 6 MATH MISSING ASSIGNMENTS, I HATE HIGH SCHOOL choose all the pairs of lines that are parallel.1. line UV and line VY2.line UX and line WZ 3.line VY and line WZ4.line YZ and line WZ5.line UV and line WZ6.line XZ and line VW 7.line XY and line YZ hsbhjbhfbghwebfhdfbghef gbhbr ghb erhjtgb Which form of the verb ALLER fits correctly in the following sentence?" Ellesweekend."au cinma leO A. vaOB. vaisO C. vontO D. allons how are the functions of the endocrine system and nervous system similar? What does this quote mean?The only thing I can think of is the man in front of me. A million questions roll through my mind. I want to run to him and wrap my arms around him, hold on and never let go. I want to sink my knife into his heart and make him suffer like I've suffered. But most of all I want to know why. can someone sent some gravity questions 5. When argon was discovered, it was placed between chlorine and potassium, even though the periodictable at that time was organized by increasing atomic weight. Why did scientists choose to place argonbefore potassium? When do you like to go to the garden? ? Please help and only answer if correct! Find the domain of the function.f(x) = -5x + 3 What is 25/9 as a mix fraction? write two example in which chemical energy is converted into heat energy Heres a TOUGH one guys, when your mom goes through ur phone and gets mad no screams at u and takes ur phone and everything else u have FOREVER. What would you do?? 9. Which was not cited as one of the downsides of Black Friday?