lcons are normally displayed on​

Answers

Answer 1
home scream of a computer

Related Questions

Fred is explaining to their client, Foodoko, that the user journey is a complex one when it comes to creating a conversion. Which phases of the user journey does what's described as the "messy middle" include?

Answers

Answer:

The answer is "The exploration and evaluation phase".

Explanation:

The expedition is a trip or an exploration. The deep-sea trip to find new sea lives is an instance of a journey of discovery. That's the search or travel via a site to find information and resources; exploring takes place throughout all non-sessile animal species, including humans. This is also an exploration.

The assessment design is the period of the marketing funnel wherein clients decide not whether they intend to buy that product. This is the time in ABM advertising whenever the sales department works closely with decision-makers to guide & close a sales process.

spreadsheets: what is a row

Answers

Answer:

Rows run horizontally across the worksheet and ranges from 1 to 1048576. A row is identified by the number that is on left side of the row, from where the row originates. Columns. Columns run vertically downward across the worksheet and ranges from A to XFD - 1 to 16384.

Explanation:

waluigi for smash who agrees ​

Answers

Answer:

I do

Explanation:

Well, if i didnt, i wouldn't be part of the internet, now would I?

(can i get brainliest? pls?)

totally i agree-even tho i dont really play anymore

How many values can a binary digit store?
A
A binary digit can store two values at a time.

B
A binary digit can store ten values at a time.

C
A binary digit can store one of two values (0 or 1).

D
A binary digit can store one of ten values (0-9).

Answers

Answer:

A.) A binary digit can store two values at one time

Explanation:

A single bit can only represent two different values. That's may not be very much, but that is still enough to represent any two-valued state.

Web design incorporates several different skills and disciplines for the production and maintenance of websites. Do you agree or disagree? State your reasons.

Answers

Answer:

Yes, I do agree with the given statement. A further explanation is provided below.

Explanation:

Web design but mostly application development were most widely included throughout an interchangeable basis, though web design seems to be officially a component of the wider website marketing classification.Around to get the appropriate appearance, several applications, as well as technologies or techniques, are being utilized.

Thus the above is the right approach.

F1: 2^14 formula ....................................................................

Answers

Answer:

=POWER(2,14)

Explanation:

The complete question is to write the given formula in cell F1

We have:

[tex]F1 = 2^\wedge {14}[/tex]

The above formula implies 2 raised to the power of 14.

In Excel, this can be achieved using the power function

And the syntax is:

=POWER(m,n)

which means m^n

So, 2^14 will be entered in cell F1 as:

=POWER(2,14)

Multiple
Choice
What will be the output?
class num:
def __init__(self,a):
self. number = a
def_mul__(self, b)
return self.number + b.number
numA = num(5)
numB = num(10)
product = numA * numb
print(product)
50
O 5
an error statement
15

Answers

Answer:

15

Explanation:

Edge 2021

A goal should be___.

A difficult to achieve

B an undefined dream

C simple

D realistic

Answers

Answer:

D

Explanation:

so its D you should always make a goal realistic to you dont over go overboard and bite off to much to chew but push yourself. lastly make it fun

Hope I helped

-scav

write any two web browers​

Answers

Answer:

G00gle and bing

Explanation:

Why do you think there is a difference between good, clean designs compared to the bad, cluttered designs below?.

Answers

Answer:

Good, clean designs depicts the logic link of the company and easy to remember as compared to the bad, cluttered designs

Explanation:

The major difference between the good, clean designs and the bad, cluttered designs is that the good, clean designs depicts the logic link of the company and it is easy to remember such symbols but in case of bad, cluttered designs it is not that easy to find the logic link and also it is difficult to remember the logo.


Calvin needs to design a simple yet professional interface for his users. Which option should he implement?

Answers

Answer:

switchboard

Explanation:

The option that he should implement would be a switchboard interface design. These design structures for graphic user interfaces use a single main page, large icons/buttons, a fixed navigation menu, and all the necessary functionality right in front of the user. This design is made with simplicity in mind in order to make it as easy as possible for a new user to pick up and efficiently and intuitively navigate the user interface. Therefore, since Calvin needs a simple yet professional design, this would be the best implementation.

Answer:

switchboards is the correct answer

Explanation:

just did the test

Tommy loves taking care of homing pigeons. He sent a note to his crush who lives 24.0 km away from his house. These birds fly at a rate of 48.2 km/h. How long will the note reach Tommys crush?​

Answers

Answer:

0.5 hours or 1800 seconds.

Explanation:

Given the following data;

Distance = 24km

Speed = 48.2 km/h

To find the time;

Time = distance/speed

Time = 24/48.2

Time = 0.50 hours

Converting the time to seconds;

1 hour = 3600 seconds

0.5 hour = 1800 seconds

Therefore, it would take 1800 seconds or 0.5 hours for the note to reach Tommy's crush.

Using the speed - distance relationship, it will take the pigeon about 29.88 minutes to reach Tommy's crush.

Given the Parameters :

Speed of pigeon = 48.2 km/hr

Distance to be covered = 24 km

Recall the Time taken relation :

Time taken = (Distance ÷ Speed)

Time taken = (24 ÷ 48.2) = 0.4979253 hours

Converting to minutes :

0.4979253 × 60 = 29.875 minutes

Therefore, it will take the pigeon about 29.88 minutes to reach her destination.

Learn more : https://brainly.com/question/23313999

A cycle merchant allows 15% discount on the marked price of a bicycle and still he makes a profit

of 20%. Write a program to calculate Marked price and Cost price of cycle if the he offers Rs. 600 as

discount to the customer.
in java program
please do it​

Answers

Answer:

The program in Java is as follows:

public class Main{

public static void main(String[] args) {

 double discount_percent = 0.15;

 double discount_amount = 600;

 double profit = 0.20;

 double marked_price = discount_amount/discount_percent;

 double cost_price = marked_price/(1 + profit);

 System.out.println("Marked Price: "+marked_price);

 System.out.println("Cost Price: "+cost_price);

}}

Explanation:

For explanation purpose, let

[tex]MP \to[/tex] Marked Price

[tex]\%D \to[/tex] Percentage discount

[tex]D \to[/tex] Discounted amount

[tex]\%P \to[/tex] Percentage Profit

[tex]C \to[/tex] Cost Price

The marked price (i.e. selling price) is calculated discount using:

[tex]MP = \frac{D}{\%D}[/tex]

The derived formula of the cost price from percentage profit and Marked Price is:

[tex]C = \frac{M}{1 + \%P * 100}[/tex]

So, the explanation is as follows:

The next three lines declare and initialize the given parameters

 double discount_percent = 0.15;

 double discount_amount = 600;

 double profit = 0.20;

Calculate marked price

 double marked_price = discount_amount/discount_percent;

Calculate cost price

 double cost_price = marked_price/(1 + profit);

Print marked price

 System.out.println("Marked Price: "+marked_price);

Print Cost price

 System.out.println("Cost Price: "+cost_price);

8. A boy leaves his house at 9.30 a.m. for his
school. The school is 2 km away and classes start at
10.00 a.m. If he walks at a speed of 3 km/h for the
first kilometre, at what speed should he walk the
second kilometre to reach just in time?​

Answers

Answer:

i would say 4km

Explanation:

chnology
Submit Test
Reader Tools
35
Select the correct answer.
For an entry-level worker in the web and digital communications pathway, which educational qualification would be needed to move to the
position of a multimedia designer or web developer?
A. high school diploma
B. certificate diploma
C. associate's degree
D.
doctoral degree
E.
bachelor's degree
Undo
Next

Answers

Answer:

Option B

Explanation:

For an entry level worker in the web and digital communications pathway, a certificate course is only required.

Graduation, post-graduation and doctoral degrees are required for higher roles and research works.

Hence, option B is correct

Claudette is shocked to discover that her company's data has been stolen, and their Web site shut down, by a malicious ex-employee. She had thought their security was airtight! Two recent changes they made were migrating their database to a private, on-premises cloud and installing IoT devices that communicate with the database continually. What most likely occurred

Answers

Answer:

The answer is "Ex-employee hack IoT firms from Claudette to access them".

Explanation:

Computer system hacking is only a breach between both the access as well as the stealing or misuse of critical information between both computer software from the target system. In this sense, a malicious attacker uses a computer device or even a network to access or illicitly exploit information.

Which computer specifications would be best suited for the following scenario? The marketing department wants to buy two new computers. One computer will be used for their graphic artist to create graphics and videos for the Web, and a second one for the secretary to keep track of billing and hours. What would you advise the department to purchase? Two computers with identical specifications A computer with a high-capacity CMOS RAM chip for the graphic artist and a computer with multiple sockets for the secretary A computer with a large power supply for the graphic artist and a computer with multiple internal buses for the secretary A computer with a multicore, high-speed processor for the graphic artist and a computer with a slower processor for the secretary

Answers

Answer:

A computer with a large power supply for the graphic artist and a computer with multiple internal buses for the secretary.

100 POINTS
When the Find and Replace dialog box is open to the Replace tab and you want to replace an underlined phrase, how can you access the dialog box that lets you tell Word to find the underlined instances of the phrase?
Select the phrase in the “Find what” field, then click More, then click Format, and then click Font.
Select the phrase in the main document, then click Spelling and Grammar, and then click AutoCorrect.
Click the “Replace with” field, then click Options, then click Special, and then click Symbols.
Click the Go To tab, then click Styles, and then click Find Styles.

Answers

Answer:

Select the phrase in the “Find what” field, then click More, then click Format, and then click Font.

Explanation:

Just the right answer

PLEASE HELP WITH MY COMPUTER
this thing is popped up and it's annoying. I'm on a HP laptop how do i get rid of it?​

Answers

Answer:

Escape or turn it off then back on??

Explanation:

I'm not very sure what is going on but idfk

true or false: erosion takes very long to happen.​

Answers

the answer is true. erosion takes place over time

Answer:

True

Explanation:

By definition, erosion is the gradual destruction or diminution of something.

1) Erosion can take many forms

2) The 3 main types of erosion are water, wind, and ice

3) The process of erosion can take up to thousands of years

4) Erosion affects humans because it creates dust that pollutes the air and on average carries around 20 different diseases including anthrax and tuberculosis

In a voice over IP setup (VoIP), what kind of device converts signals from a campus's analog phone equipment into IP data that can travel over a phone company's analog telephone lines

Answers

Answer:

VoIP gateway

Explanation:

A VoIP stands for the voice over IP. The VoIP gateway is defined as a hardware device which is used to convert the telephony traffic into the packets of data that is used for transmission over the internet. It acts as the bridge and connects the VoIP with the worlds of the legacy telephony.

In a VoIP setup, the signals form the analog phone of the campus equipment  are converted to the IP data which can travel over the analog telephone lines of the phone company.

On the Direct Marketing worksheet, create appropriate range names for Design Fee (cell B8), Cost Per Ad (cell B9), Total Clicks (cell B10), Profit Per Click (B11), and Gross Profit (cell B12).

Answers

Answer:

See explanation below

Explanation:

Named ranges are a very important tool in Microsoft Excel. It is used in assigning a name to a particular number of cells. It is great for automation and makes formula much easy to understand and use.

One way to create named ranges is theory the Name Box.

To create named ranges in the design marketing sheet we do this;

1) We click on cell B8 and then navigate to the name box at the top right corner of the sheet just above the column A.

•The name box is where the cell address of any cell that is active is displayed.

•You would see that “B8” is displayed on the name box.

• Double click on the name box and type in the appropriate name, in this case - Design_Fee.

• Press enter and you have your named range.

You do the same for the other named ranges.

Note that: Named ranges must contain letters, numbers or underscore.

If cell G7 contains the function ________, it states that if the value in cell C3 is 9, the number 7 will be assigned to cell G7; if the value in cell C3 is not 9, the number 4 will be assigned to cell G7.

Answers

Answer:

=IF(C3=9,7,4)

Explanation:

If cell G7 contains the function =IF(C3=9,7,4), it states that if the value in cell C3 is 9, the number 7 will be assigned to cell G7; if the value in cell C3 is not 9, the number 4 will be assigned to cell G7.

can some one tell me how to screen shot on a pc computer

Answers

Answer:

click 'prt sc' which is print screen.

and then save it somewhere..like paint or something and DONE.

thenks for the points btw.

Answer:

You just press the (Win+PrtSc) key.

Or sometimes you just have to press the (PrtSc) key

what is the decimal value for the jump control?

Answers

Answer:

24

Explanation:

11000 is equivalent to 24 because if you look at a flippy do, the base is 2. so going from right-left, 2^0 is 1 for the first 0. second zero would be 2^1 which is 2. then the third zero is 4 (2^2). since they are zero’s, they are turned off, but the 1’s indicate that those bases are turned on. the first one going from right to left would then be 8 (2^3) and the last 1 going from right-left is 16 (2^4). so 16+8=24!

edit: didn’t mean to rate myself 1 star lol

why is information called a resource​

Answers

Answer:

Explanation:

Information is a resource due to its nature of limited availability, usefulness and its reliability when making references to it.

Answer:

Information is a resource due to its nature of limited availability, usefulness and its reliability when making references to it.

Based on the information in the table, which of the following tasks is likely to take the longest amount of time when scaled up for a very large company of approximately 100,000 customers

Answers

Answer:

Task A

Explanation:

Hannah's prior status updates, pictures, and profile data will be hidden from view and deleted from servers 30 days after posting.

What amount of time when scaled up large company?

When a set of symbols is used to represent a number, letter, or word during coding, that symbol, letter, or word is said to be being encoded. The collection of symbols is referred to as a code. A set of binary bits is used to represent, store, and transmit digital data.

Binary code is another name for this category.The values of the subject attributes can be stored in numerous rows for large data subjects. Data from long data sets may span several columns.

Therefore, The only system that is adaptable enough to allow for the representation of data other than numbers is the binary number system.

Learn more about scaled up here:

https://brainly.com/question/28966944

#SPJ2

How do I make a game from scratch, what program should I use, and what tutorial should I follow, I want to make a 2D platformer with some 3D elements in there.

Answers

Honestly just buy a decent GUI and gets scripts for other games and piece it together it’s how was made

Project manager Kevin has to create a project team organizational chart. Which activity should he perform before creating this chart?

Answers

Answer: C

Explanation: Allocating roles to project team members.

please answer this question​

Answers

Answer:surfing, printer

Explanation:

Other Questions
pls help meeeeeeeeeeeeeeeeee The floor leader of the major party that holds fewer seats in a house of Congress is called _____. Analyze Review lines 2456. Tell what events these lines describe. What are some sensory details that help you imagine the events and settings? The following information pertains to Sheridan Video Company. 1. Cash balance per bank, July 31, $7,943. 2. July bank service charge not recorded by the depositor $37. 3. Cash balance per books, July 31, $7,964. 4. Deposits in transit, July 31, $1,840. 5. Bank collected $1,240 note for Sheridan in July, plus interest $45, less fee $29. The collection has not been recorded by Sheridan, and no interest has been accrued. 6. Outstanding checks, July 31, $600.Required:Prepare a bank reconciliation at July 31. Who did the Confederate States of America elect as their president and where was their national capitol located? our heritage are being damage day by day. list the ideas to protect these heritages. Tamarisk, Inc. purchased a delivery truck for $29,200 on January 1, 2020. The truck has an expected salvage value of $2,200, and is expected to be driven 100,000 miles over its estimated useful life of 8 years. Actual miles driven were 16,100 in 2020 and 12,800 in 2021.1. Calculate depreciation expense per mile under units-of-activity method.2. Compute depreciation expense for 2020 and 2021 using (1) the straight-line method, (2) the units-of-activity method, and (3) the double- declining-balance method.3. Prepare the journal entry to record 2020 depreciation.4. Assume that Marigold uses the straight-line method. Show how the truck would be reported in the December 31, 2020, balance sheet. Write a narrative essay about a memorable summer vacation 150 words Please the due is in 6hr Which trigonometric function is an odd function and why?The cosine function is odd because it is represented by the x-coordinate of the points on the unit circle, and therefore cos(x) = cos(-x).The sine function is odd because it is represented by the y-coordinate of the points on the unit circle, and therefore sin(-x) = - sin(x).The cosine function is odd because it is represented by the x-coordinate of the points on the unit circle, andtherefore cos(-x) = cos(x)The sine function is odd because it is represented by the y-coordinate of the points on the unit circle, and therefore sin(x) = sin(-x). Please help find the solution. What is the central idea of this excerpt? Antony is pleased to shake hands with the conspirators. Antony agrees with the conspirators that Caesar was dangerous. Antony regrets not being included in the conspiracy and wishes he had played a part in Caesars murder. Antony wants them to explain why they believed Caesar was dangerous. Refer to matrix A and identify the matrix element a31.3217 Spiral galaxies are ________ and elliptical galaxies are _________. A. Spinning -- Growing B. Expanding -- Spinning C. Condensing -- Growing D. Spinning -- Condensing Which one is better french or Spanish I need to choose for gcse The reaction O3 + NO O2 + NO2 has Ea = 10.7 kJ/mole and H = 199.8 kJ/mole. What is the activation energy for the following reaction?O2 + NO2 O3 + NO The gift shop at a science museum sells lollipops that are made to look like the planets. Each lollipop is shaped like a sphere and has a radius of 12 mm. Answer in terms of pi Plsssss help meeeeThis is so hard How does sameness relate to unique? A cyclist travels 6 miles in 45 minutes. What is his average speed in mph? URGENT URGENT how has scapegoating been used in the united states"