Answer:
The most direct effect that the internet has had on retail sales is THE DEVELOPMENT OF E-COMMERCE.
E- Commerce refers to the commercial transactions that are conducted via the internet. The advance in technology has makes it possible for the retailers to advertise their products and get across to the consumers via the internet. Buying and selling on the internet is now more preferable to most people than the traditional buying and selling because of its convenience.
Where do you go to create a workbook?
Answer:
The explaination of this question is given below in the explanation section
Explanation:
The following steps are used to create a workbook.
1- Go to start menu and search about EXCEL (application software) and then click on it to open.
If you already opened a EXCEL's workbook, and you want to create a new workbook, then you follow the following steps:
Click the File tab. Click New. Under Available Templates, double-click Blank Workbook. Keyboard shortcut To quickly create a new, blank workbook, you can also press CTRL+N.A new workbook will be created.
A program is required to compute the cost of a car trip. The required input values are:
Litres per 100km
Distance travelled
Cost per litre of petrol
The output value is the total cost of the trip.
The program required to compute the above in Phyton is given below.
What is the program that computes the cost of a car trip using the above parameters?the required program is given as follows;
# Input values
litres_per_100km = float(input("Enter the fuel efficiency of your car in litres per 100km: "))
distance_travelled = float(input("Enter the distance travelled in km: "))
cost_per_litre = float(input("Enter the cost per litre of petrol in your local currency: "))
# Calculate the total litres of petrol used
litres_used = (litres_per_100km / 100) * distance_travelled
# Calculate the total cost of the trip
total_cost = litres_used * cost_per_litre
# Display the result
print(f"The total cost of the trip is {total_cost:.2f} {currency_symbol}")
Note that this program prompts the user to enter the fuel efficiency of their car in litres per 100km, the distance travelled in km, and the cost per litre of petrol in their local currency.
It then calculates the total litres of petrol used by multiplying the fuel efficiency by the distance travelled, and calculates the total cost of the trip by multiplying the litres used by the cost per litre.
Finally, it displays the result to the user, rounded to two decimal places. Note that the currency symbol can be added to the output string depending on the user's location.
Learn more about phyton:
https://brainly.com/question/16757242
#SPJ1
In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.
Answer: Excel Average functions
Explanation: it gets the work done.
Answer:
excel average
Explanation:
colleges and universities often offer degrees in computer science with a concentration of network engineering or network security that can help you obtain a job in the industry - true or false
Answer: The correct answer is true
Explanation:
I got this answer right. Hope this helps :)
Write a program with total change amount as an integer input that outputs the change using the fewest coins, one coin type per line. The coin types are dollars, quarters, dimes, nickels, and pennies. Use singular and plural coin names as appropriate, like 1 penny vs. 2 pennies. Ex: If the input is: 0 or less, the output is: no change Ex: If the input is: 45 the output is: 1 quarter 2 dimes
Answer:.
// Program is written in C++.
// Comments are used for explanatory purposes
// Program starts here..
#include<iostream>
using namespace std;
int main()
{
// Declare Variables
int amount, dollar, quarter, dime, nickel, penny;
// Prompt user for input
cout<<"Amount: ";
cin>>amount;
// Check if input is less than 1
if(amount<=0)
{
cout<<"No Change";
}
else
{
// Convert amount to various coins
dollar = amount/100;
amount = amount%100;
quarter = amount/25;
amount = amount%25;
dime = amount/10;
amount = amount%10;
nickel = amount/5;
penny = amount%5;
// Print results
if(dollar>=1)
{
if(dollar == 1)
{
cout<<dollar<<" dollar\n";
}
else
{
cout<<dollar<<" dollars\n";
}
}
if(quarter>=1)
{
if(quarter== 1)
{
cout<<quarter<<" quarter\n";
}
else
{
cout<<quarter<<" quarters\n";
}
}
if(dime>=1)
{
if(dime == 1)
{
cout<<dime<<" dime\n";
}
else
{
cout<<dime<<" dimes\n";
}
}
if(nickel>=1)
{
if(nickel == 1)
{
cout<<nickel<<" nickel\n";
}
else
{
cout<<nickel<<" nickels\n";
}
}
if(penny>=1)
{
if(penny == 1)
{
cout<<penny<<" penny\n";
}
else
{
cout<<penny<<" pennies\n";
}
}
}
return 0;
}
When machining rotors, what is the reason for setting the indexing collars to zero?
A. To know how much metal was taken off of each side.
B. To make sure that no cut exceeds .010 inch
C. To determine the proper cut speed of the Brake Lathe.
D. To measure the depth of the grooves on the rotor surface.
Answer:
To determine the proper cut speed of the brake lathe
To determine the proper cut speed of the brake lathe reason for setting the indexing collars to zero.
What is indexing collars?
Thus, they can have a maximum of 256 colors, which is the amount of colors that 8 bits of information can specify (28 = 256). Fewer colors are produced by lower bit depths, which also result in smaller files. At the conclusion of this chapter, in Section 19.8, this is covered.
"Indexed color" refers to the fact that a color table contains the palette—the collection of colors—of the image. A reference (or "index") to a table cell containing the pixel's color is present in each pixel of the image.
By choosing Image Mode Color Table in Photoshop, you can view the table for an indexed color image.
Therefore, To determine the proper cut speed of the brake lathe reason for setting the indexing collars to zero.
To learn more about indexing collars, refer to the link:
https://brainly.com/question/12608731
#SPJ2
PLEASE HELP!! QUICKLY! WILL GIVE BRAINLIEST!
Describe at least three important considerations when upgrading to new software in complete sentences.
Answer:
Storage
How it changes the layout
How it differs from the previous software
Explanation:
Storage is one of the most important things to think about because, if you do not have enough storage then the update only hurts you. Then plus you cannot even get the update in most cases. How it changes the layout and how it changes the computers is important because it can be what makes a person hate the newest software or not. If the layout changes to something you do not agree with, then it can leave a person all mixed up. Lastly how it differs is important because, how it differs from the previous can be the reason why or why not you even need the update. The differences could be good or bad. But whenever updating software always look at the terms and conditions, what it changes, and what it takes to update the software.
When turning on any circuit breaker , you should always stand A. At arm’s length from the load center
B.in front of the device
C. To the side of the load center
D . About two feet from the device
Answer:C. To the side of the load center
Explanation:
1. What is a sprite?
O A sprite is a graphical representation of an object
A sprite is a function
A sprite is a game
A sprite is a string
Answer:
A
Explanation:
A sprite is a character or object that moves in a video game. For example, in Mario, Mario is the sprite because he is a character and can move.
In a mail merge, names and addresses will commonly Be provided as tab delimited text what type of file is this
In a mail merge, names and addresses will commonly be provided as tab-delimited text. This type of file is: .txt file.
A list of names and information from an existing list, such as an Excel spreadsheet or your Outlook contacts list, is typically used to create the recipients of a mail merge. Any database that may be accessed could potentially be included in the existing list. A list can be created in Word as part of the mail merging procedure if you don't already have one. Data sources for mail merges include lists and databases. Excel worksheet If all of the data is organized properly and is on a single sheet so that Word can read it, an Excel spreadsheet functions well as a data source for mail merge. Check out for more details For a Word mail merge, get ready your Excel data source.
Access a database.
learn more about mail merge here:
https://brainly.com/question/14923358
#SPJ1
Your professor is advising a new crowd-funding app for women's self-help groups (SHGs) in Latin America on their database architecture. This is the business requirement she has worked on: All campaigns belong to a SHG. An SHG must exist before a campaign is created, and when an SHG is deleted from the database, all its campaigns are deleted. SHGs always belong to a country, and a country must be added to the app before SHGs are added to it. Which of the following is true of the entities defined in the database? Select all that apply.
Question 6 options:
An SHG entity depends on a Campaign entity
A Campaign entity is a depend on the SHG entity
A Country is not dependent on the Campaign entity
An SHG entity is dependent on a Country entity
A Campaign is an Independent entity
Based on the given information, the following statements are true:
An SHG entity depends on a Country entity.A Campaign entity is dependent on the SHG entity.What is a country entity?In the context of database design, a country entity refers to a logical representation of a country within a database system.
It typically stores information related to countries, such as their names, codes, demographics, or any other relevant data.
The country entity serves as a reference point for other entities in the database, such as self-help groups (SHGs) or campaigns, allowing for proper organization and association of data within the system.
Learn more about Entity at:
https://brainly.com/question/29491576
#SPJ1
FILL IN THE BLANK The ____ panel offers recommendations of coordinated colors based on the current fill or stroke color selected.
Aspirin inhibits the synthesis of thromboxane a2. Fill is used to color an object from the inside, and strokes are used to color the object's contour.
Both the powerful anti-aggregator prostacyclin and the potent platelet thromboxane A2 are inhibited by aspirin. Selected thromboxane production reduction may be another strategy to prevent platelet aggregation. Ticlopidine prevents ADP-induced platelet-fibrinogen binding and subsequent platelet-platelet contact, hence inhibiting the function of the platelet membrane. Prostacyclin inhibits platelet aggregation whereas thromboxane A2 enhances it. The options accessible in the options bar when generating a custom vector shape are the fill and stroke colors. There are two different color schemes for Illustrator elements: fill color and stroke colors. Fill is used to color an object from the inside, and strokes are used to color the object's contour.
Learn more about Fill and stroke colors here:
https://brainly.com/question/29449572
#SPJ4
3.2 lesson practice answer
Answer:
There are no answers provided.
Explanation:
I can't give you an exact answer without options. Once there are options on this question, I will change my answer thx.
Students only need to know how to critically evaluate online sources if they are going into a career in information technology?
Answer:
students need to no more sources to improve them selves.
discuss advantages and disadvantages of operating system
Answer and Explanation:
Advantages-
Computing source- Through the operating system, users can communicate with computers to perform various functions such as arithmetic calculations and other significant tasks.Safeguard Of Data- There’s a lot of user data stored on the computer. Windows Defender in Microsoft Windows detects malicious and harmful files and removes them. Also, it secures your data by storing them with a bit to bit encryption.Resource Sharing- Operating systems allow the sharing of data and useful information with other users via Printers, Modems, Players, and Fax Machines. Besides, a single user can share the same data with multiple users at the corresponding time via mails. Also, various apps, images, and media files can be transferred from PC to other devices with the help of an operating system.Disadvantages-
Expensive- It is costly.System Failure- System failures may occur. If the central operating system fails, it will affect the whole system, and the computer will not work. If the central system crashes, the whole communication will be halted, and there will be no further processing of data.Virus Threats- Threats to the operating systems are higher as they are open to such virus attacks. Many users download malicious software packages on their system which halts the functioning of OS and slow it down.Answer:
Advantages ) -
1) They have different and unique properties .
2) They function differently and have great experience .
3) They allow us to progress through the life of technology .
Disadvantages ) -
1) Many softwares and programs not function on every OS and we have to use different external and/or 3rd party programs .
2) They have different level and speed of emulations .
Design an algorithm to convert a decimal number, n, to binary format?
An algorithm that would convert a decimal number n to binary format must have at least 16 commands.
What is an algorithm?An algorithm is a term to refer to a series of sequential instructions that allow actions or programs to be executed. It is an indispensable tool for the digital world because it is the basis for technology.
An example of an algorithm to convert from decimal numbers to binary format would be:
Process Decimal_bin
Define decimal as Integer;
Define binary as Character;
Define modulus as Integer;
Define aux as Integer;
Write 'Enter the decimal number';
Read decimal;
aux<-decimal;
binary<-'';
While decimal>0 Do
modulus<-decimal MOD 2;
binary<-Concatenate(ConvertToTex(modulus),binary);
decimal<-trunc(decimal/2);
FinWhile
Write binary;
EndProcess
Learn more about algorithm in: https://brainly.com/question/21970419
Which layer of.the IOS architecture. Is responsible for graphic animation
Answer:
Media Layer
Explanation :
Architecture of IOS has below layers.
Core OS Layer: Core Services Layer Media Layer:Among above layers, Medial layer Enables Graphics, Audio & Video technology and Core Animation.
4. How many times will the print statement be executed within the following nested for loops? Briefly explain how or show the math to calculate that number of iterations.
for (int h = 1; h <= 12; h++) {
for (int m = 0; m <= 59; m++) {
for (int s = 0; s <= 59; s++) {
System.out.printf(“%d:%02d:%02d%n”, h, m, s);
}
}
}
Print statements are used to display outputs
The number of times the nested loop will be executed is 43200
What are nested for loops?Nested for loops are loops that are placed within another loop or loops
From the statement, we have the following loop conditions:
h = 1; h <= 12, m = 0; m <= 59 and s = 0; s <= 59
The above means that:
h = 12 --- the outer loop will be executed 12 timesm = 60 --- the middle loop will be executed 60 timess = 60 --- the inner loop will be executed 60 timesSo, the number of times the nested loop will be executed is:
\(Count = 12*60 *60\)
\(Count = 43200\)
Hence, the number of times the nested loop will be executed is 43200
Read more about loops at:
https://brainly.com/question/14284157
1. name of industry credential available to students taking this class
2. two reasons for acquiring the industry credential
Answer:
Explanation:
I need points to ask questions
1. Match the parts of software applications with what they do:
1. Workspace
a. top row of an application window, displays the name of the docume
b. a row of icons or buttons
2. Title bar
3. Ribbon
c. the control center for using the application
d. part of the ribbon that contains important tasks within an applicatio
e shows the information about the program and other useful messag
4. Toolbar
5. Scroll
f. move from part of a window to another.
g. lists sets of commands
6. Menu bar
h. the largest area of a program's window
7. Status bar
8. Tab
Answer:
Explanation:
wow this question is a mess so lets clean it up
1. workspace
2. title bar
3. ribbon
4. toolbar
5. scroll
6. menu bar
7. status bar
8. tab
in this sense..
1 h
2 a
3. b
4. c
5. f
6. g
7. e
8. d
The Match up of the parts of software applications and their functions are:
h a bc f g edWhat are application software?These are known to be common computer applications that are used to carry out some specific task. They includes:
Word processors.Database software.Spreadsheet software, etc.In the above case, The Match up of the parts of software applications and their functions are:
h a bc f g edLearn more about software applications from
https://brainly.com/question/1538272
#SP6
Lira has typed up a document and now she wants to adjust the irregular right edge of the text so that it is even. How can she accomplish this?
by changing the margins
by adjusting the indent markers
by changing the spacing between words
by using the Justify and Automatic Hyphenation options
ANSWER IS D. by using the Justify and Automatic Hyphenation options
Answer:
d. by using the Justify and Automatic Hyphenation options
Explanation:
How many cars are being produced each year?
Answer:
According to the International Organization of Motor Vehicle Manufacturers, the United States produced around 10.8 million cars in 2020. However, the number of cars produced each year can vary depending on several factors, such as economic conditions, consumer demand, and the availability of raw materials.
2. Select the things you can do when working with rows in columns in a spreadsheet:
Freeze a row or column
Delete a row or column
Hide a row or column
Add a row or column
Move rows or columns
Which of these statements performs real number quotient division using type casting?
double x = 35 % 10:
double x = 35 / 10;
double x = 35.0 / 10.0;
double x = (double) 35 / 10;
double x = 35.0 % 10.0;
Answer:
Double x = 35 / 10;
Explanation:
Java provides simple data types for representing integers, real numbers, characters, and Boolean types. These types are known as _ or fundamental types.
<3
I need help finishing this coding section, I am lost on what I am being asked.
Answer:
when cmd is open tell me
Explanation:
use cmd for better explanatios
if you want to learn how to perform an action, which feature of the excel window should you use
To learn how to perform an action on Excel Window, the feature you should use is the "Tell Me What To Do" Feature. It can be found on the top right corner above all the ribbons after "Help". This can be activated using the keyboard shortcut keys "Alt + Q".
What is Excel Window?Excel is a popular spreadsheet system that manages data into columns and rows that can be manipulated using formulas that allow the software to perform mathematical functions on the data.
It is software created by Microsoft that uses spreadsheets to organize numbers and data with formulas and functions. Excel analytics is ubiquitous around the world and is used by companies of all sizes for financial analysis
Learn more about Excel:
https://brainly.com/question/25879801
#SPJ1
why did industrial revolution begin Britain?
Answer:
Britain also happened to have a wealth of coal, iron, and other resources in a relatively small area, which would help kick-start the Industrial Revolution. Its growing Colonial Empire also provided a ready-made (and captive) market for surplus goods, providing further impetus for entrepreneurs and new industrialists
Answer:
Success in international trade created Britain's high wage, cheap energy economy, and it was the spring board for the Industrial Revolution.
Explanation:
Out-of-order instruction execution can cause problems because a later instruction may depend on the results from an earlier instruction. This situation is known as a ______ or a________
a. risk, reliance
b. hazard, reliance
c. risk, dependency
d. hazard, dependency
Answer:
C
Explanation:
Before inserting a preformatted table of contents, what must you do first?
apply heading styles to text
update the table of contents
navigate to the Review tab and the Table of Contents grouping
navigate to the Insert Table of Contents dialog box
Answer: apply heading styles to text.
Explanation:
What instructions would a computer have the hardest time completing correctly
The instructions which a computer would have the hardest time completing correctly are complex instructions.
What is an instruction?An instruction can be defined as a set of executable codes that are written and developed to instruct the central processing unit (CPU) of a computer system on how to perform a specific task and proffer solutions to a particular problem.
This ultimately implies that, it is a segment of executable codes which contain steps that are to be executed by the central processing unit (CPU) of a computer system.
In Computer programming, the instructions which a computer would have the hardest time completing correctly are complex instructions.
Read more on instructions here: https://brainly.com/question/26324021