Answer:
B.)
Explanation:
In order to have that row, empty Keith should highlight row 12 and press Delete. This would delete all of the data in the row without effectively deleting the formulas. Therefore, allowing you to easily reuse the row if you need to add data to it once again. So this would be the best option for Keith as it easily solves the problem that he is having.
colour statement is used for setting .................... and .................. colors
(a) screen,Paint (b) line,circle
(c) foregroung,Background
(d) none of these
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct answer to this question is C. i,e, foreground, and background.
First, we need to know what is a color statement.
The purpose of the color statement is to select display colors. It is used to select the foreground and background colors of the display.
So, the correct answer is :
Colour statement is used for setting foreground and background colors.
In general, it allows you to select foreground and background colors for a display. You can use different codes to display and see the effect of the color statement.
While other options are not correct, because the color statement used to select foreground and background color for the display. It does not use for setting screen and paint color in it. It also does not use for drawing lines and circles etc.
Place the steps in order for placing a section break
Answer:
choose a break option, select breaks, click the layout tab, change the formatting style, and position the cursor
Explanation:
i could be wrong cause i dont know what its about but this is what makes sense to me
Answer:
position the cursor click the layout tab select breaks choose a break option change the formatting style
Explanation:
Just had this question
(Java) Meadowdale Dairy Farm sells organic brown eggs to local customers. It charges $3.25 for a dozen eggs, or 45 cents for individual eggs that are not part of a dozen. Write a program that prompts a user for the number of eggs in the order and then display the amount owed with a full explanation using the following wording: You ordered 27 eggs. That’s 2 dozen at $3.25 per dozen and 3 loose eggs at 45 cents each for a total of $7.85.
import java.util.Scanner;
class Eggs {
public static void main(String[] args) {
// Write your code here
}
}
import java.util.Scanner;
public class Eggs {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("How many eggs?");
int eggs = scan.nextInt();
int dozens = eggs / 12, ind = eggs - (dozens*12);
System.out.println("You ordered "+eggs+" eggs. That's "+dozens+" at $3.25 per dozen and "+ind+" loose eggs at 45 cents each for a total of $"+((dozens*3.25)+(ind*0.45))+".");
}
}
I hope this helps!
In this exercise we have to use the knowledge of the JAVA language to write the code, so we have to:
The code is in the attached photo.
So to make it easier the JAVA code can be found at:
import java.util.Scanner;
public class Eggs {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("How many eggs?");
int eggs = scan.nextInt();
int dozens = eggs / 12, ind = eggs - (dozens*12);
System.out.println("You ordered "+eggs+" eggs. That's "+dozens+" at $3.25 per dozen and "+ind+" loose eggs at 45 cents each for a total of $"+((dozens*3.25)+(ind*0.45))+".");
}
}
See more about JAVA at brainly.com/question/2266606
what is the main difference between a search bar and a web browser
Answer:
i think a search is search bar is looking for application and files that are in the system while web browser is for searching things that are not in ur pc or laptop but searching thing i a good example google
3. Shirky describes that the Internet gives us a many-to-many pattern when it comes to networks. How might this be beneficial or detrimental to journalists needing to decide between personal and observational sources?
Answer:
Find the explanation below.
Explanation:
Many-to-many pattern provided by the internet refers to the ability of the internet to spread information among a wide audience who can access the message at the same time. This feature of the internet would prove beneficial to the journalist in making his choice because;
1. He would then have to resort to the observational sources which also has some advantages which include the following;
a. It is less time-consuming as he can obtain the opinions of people on different subjects in a short space of time.
b. It is easier. The logistics involved in going to obtain information from personal sources can b by-passed.
c. The chances of getting more accurate information is higher as most people are more expressive on the internet.
The detriments of the many-to-many pattern of the internet for this journalist would mean;
1. By-cutting the personal sources of information that are more reliable and authentic.
2. Depending on anonymous sources that cannot be easily referenced.
can anyone help with this?
The correct answer is Use hanging indents in the second line
Explanation:
One of the recommendations in the works cited page like the one presented is to use hanging indents. This implies the second, third, etc. line of a citation should be indented, while the first line is not indented. This is required by the MLA (Modern Language Association) because it makes citation to be easy to read. According to this, to improve the sample, hanging indents need to be included in the second line of the first and third citation.
Which careers require completion of secondary education, but little to no postsecondary education? Mathematical Technicians and Mechanical Engineers Sociologists and Electronics Engineering Technicians Food Science Technicians and Zoologists Nondestructive Testing Specialists and Surveying Technicians
Answer:
Nondestructive Testing Specialists and Surveying Technicians
Explanation:
A nondestructive testing specialist and surveying technician refers to an individual who is saddled with the responsibility of providing services such as the inspection of structures (aeroplane, dam, trains, reactors, bridges), machines or equipments, and raw materials in order to check for problems or any defective part.
Hence, Nondestructive Testing Specialists and Surveying Technicians is a career that requires the completion of secondary education, but little to no postsecondary education because they use equipments mainly to find detects and gather details about any problem.
Answer:
D is correct on test review
What is the quickest way to remove all filters that have been applied to a worksheet?
Click each filter and select Clear Filter.
Click the Filter button in the Sort & Filter group.
Select the worksheet and click Clear Filter.
Select the worksheet and click Delete All Filters.
Answer:
Select the worksheet and click Delete All Filters.
Explanation:
Answer:
Click the Filter button in the Sort & Filter group
Explanation:
I am not sure if you don't believe my answer go with your gut.
Click "Thanks" if this helped! :)
Which function is used to add a range of cells? =SUM =AVERAGE =MAX =ADD
Answer:
=SUM
Explanation:
The function used to add a range of cells is =SUM. Thus, option A is correct.
What is a function in excel?Functions are pre-written formulas that carry out calculations by utilising unique values, referred to as inputs, in a given order, or layout. Calculations of any complex variable can be carried out using functions. the purpose for which a human, thing, or both are created, expressly designed, or employed.
Values are added by the SUM function. Users can include specific values, cell references, specific ranges, or a combination of all three. F
Excel's AutoSum feature makes summing up several items in an quick and simple manner. The Alt+= button makes using the AutoSum command much quicker. It can be found on the Homepage or Formulas tabs.
Therefore, option A is the correct option.
Learn more about Functions , here:
https://brainly.com/question/21145944
#SPJ6
Which list method allows elements in a sequence to be removed and added at either end of the structure?
a) index
b) queue
c) stack
d) deque
PLEASE HURRY
Answer:
b) queue
Explanation:
Queue is also an abstract data type or a linear data structure, just like stack data structure, in which the first element is inserted from one end called the REAR(also called tail), and the removal of existing element takes place from the other end called as FRONT(also called head).
Answer:
B is right!
Explanation:
A group of friends go on a holiday to the mountains. On the trip, they take a lot of pictures. One of the friends uploads the pictures on his blog. Which image format is best for uploading photos? The image format is best for uploading photos.
Answer: PNG
Explanation:
PNG stands for Portable Network Graphics, with so-called “lossless” compression.
A group of friends goes on a holiday to the mountains. The image form that is best for uploading photos is PNG. The correct option is B.
What is the PNG format of the image?To display high-quality digital images, websites frequently use the PNG file format. PNGs, which were developed to outperform GIF files, provide not just lossless compression but also a significantly wider and brighter color spectrum.
Raster image files come in both JPEG and PNG varieties. This indicates that they are composed of a set number of color pixels.
To display high-quality digital images, websites frequently use the PNG file format. PNGs, which were developed to outperform GIF files, provide not just lossless compression but also a significantly wider and brighter color spectrum.
Therefore, the correct option is B. PNG.
To learn more about the PNG format, refer to the link:
https://brainly.com/question/20293277
#SPJ2
The question is incomplete. Your most probably complete question is given below:
PNG
JPG
JPEG
GIF
Sean works for a company that ships hospital equipment. He needs to calculate the weight of the items being shipped. He enters the number of items in cell A1. The weight of each item is 180 pounds, so Sean enters 180 in cell A2. The weight of the packaging for each item also needs to be included. This weighs 10 pounds for each item, so he enters 10 in cell A3. Which formula should Eric use to calculate the total weight?
Answer:
= A1 * (A2 + A3)
Explanation:
In order to calculate the total weight of the equipment, he would need to first add the total weight of each item. This is done by adding the weight of the item by the weight of the packaging. Once you have this amount you can multiply this value by the total number of items being shipped and that should give you the total weight of the shipment. Using the cells, this can be calculated with the following formula in Excel...
= A1 * (A2 + A3)
Joann wants to save the building block she created for the title of her company.
In which file does she save this building block?
Answer:
Building Blocks.dotx
Explanation:
Just did it on Edge2020
Question # 4
Multiple Choice
How do you stop a program that is stuck in an infinite loop?
Press the Alt key together with the Q key.
Press the Control key together with the C key.
Press the Control key together with the Q key.
Press the Alt key together with the C key.
Answer:Control +c
Explanation:yes
Answer: Press the Control key together with the C key.
Explanation: Correct on Edg 2020/2021.
who got houseparty and tryna play uno
Answer:
awww shiiiii yessss
19 POINTS! (Excel) Use the drop-down menus to complete the steps for opening and using the Format Cells dialog box to change font and basic formatting.
1. Select the cell or range you want to format.
2. (1.Double click 2.single click 3. right click) the selection and click Format Cells to open the Format Cells dialog box.
3. Click the (1.format 2. font 3. cells) tab.
4. Apply the desired formats, and click OK.
Answer:
c 3
Explanation:
Answer:
Here
Explanation:
Number 1 Right-Click
Number 2 Font
What are the pros and cons for E-trade?
Answer:
Pros Cons
• Free stock and ETF trading • Higher fees for non-free mutual funds
• Some mutual funds and bonds are free
• Low non-trading fees
Answer:
Pros-Quick, easy purchases, ability to know what's available, access to limitless products.
Cons-Potential to get hacked, get scammed by false advertising, amount of time to receive product
Explanation:
Its not a great list but I really hope this helps
An archiving department is responsible for issuing permissions for use of historical film footage.
Answer:
true
Explanation:
just finished the assignment.
Which program will have the output shown below?
10
11
12
13
>>> for count in range(14):
print(count)
>>> for count in range(10, 14):
print(count)
>>> for count in range(13):
print(count)
>>> for count in range(10,13):
print(count)
Answer: >>> for count in range(10, 14):
print(count)
Explanation:
just took the test on edg
Answer
The answer is A. Hope this helps you out. Have a wonderful day and stay safe.
Explanation:
Chris has received an email that was entirely written using capitalization. He needs to paste this text into another document but also ensure that the capitalization is removed.
What should Chris do?
Use the Paste Special function to paste the text without formatting.
Turn the Caps Lock button on the keyboard to the off position.
Use Shift+F3 to change the case of the desired text.
All of the above steps are correct.
Answer: D. all of the above
Explanation:
Answer:
D.) All of the steps above are correct
Explanation:
Arrange the numbers 4, 8, 2, 6, 3, 5, 0, 1 into ascending order using the Merge sort algorithm
Answer:
1 2 3 4 5 6 you are missing seven the 8
Explanation:
When a customer makes an online hotel booking the database is updated by using
A) table
B) form
C) query
D)report
When a customer makes a booking, the database is updated by using a form.
Forms in a database are necessary for the manipulation and the retrieval of data. It helps with entering, editing as well as displaying data.
The form allows you to add data to the already existent table and it can also help one to view already existent information.
A form can also be used to view information from query. When this is the case, it searches and analyzes data.
Read more at https://brainly.com/question/10308705?referrer=searchResults
why is a computer called diligent machine ?
Computer is called diligent machine because it can perform the task repeatedly without loosing its speed and accuracy for a long time.
what is the computer?
Answer:
an electronic machine that can store, find and
Ask the user to enter a name. If there is an ‘a’ in the name, print the message saying ‘The name contains at least one ‘a.’ If there is no ‘a’ then print “The name does not contain the letter a.”
name = input("Enter your name: ")
if "a" in name:
print("There's at least one 'a'")
else:
print("The name does not contain the letter a.")
I wrote my code in python 3.8. I hope this helps!
AI structure question. Please help
Type the correct answer in the box. Spell all words correctly.
On what structure is an artificial neural network based?
An artificial neural network is based on interconnected _______.
Answer:
A). An ANN is based on a collection of connected units or nodes called artificial neurons, which loosely model the neurons in a biological brain. Each connection, like the synapses in a biological brain, can transmit a signal to other neurons.
B). Understanding an Artificial Neural Network (ANN)
Artificial neural networks are built like the human brain, with neuron nodes interconnected like a web. The human brain has hundreds of billions of cells called neurons.
Explanation:
Answer:
The answer to this question is Neurons
Explanation:
I took the test on Plato and got a 100%.
Which view would you need to use to make changes to the design theme for the entire presentation?
Answer:
slide master
Explanation:
the answer on edge2020
CORRECT ANSWER GETS BRAINLIEST!!!
Which area of engineering focuses on the study of materials, products, and structures that may cause injury or damage?
forensic engineering
mechanical engineering
biomedical engineering
materials engineering
Answer:
Forensic engineering
Explanation:
Forensic engineering matches the definition of "a area of engineering that focuses on the study of materials, products, and structures that may cause injury or damage"
If it is 12 am on January 7 in Reykjavík, Iceland (location B), what date and time is it in Galápago Islands,
Ecuador (location E)?
Answer:
Since the time zone of the Galapagos Islands is UTC -06: 00, while the time zone of Iceland (including its capital, Reykjavik) is UTC 00:00, the time difference between both territories is 6 hours behind in the Islands Galapagos with respect to Iceland.
Thus, since 12:00 AM implies 00:00 hours or the beginning of the day, if it were 12:00 AM on January 7 in Reykjavik, it would be 06:00 PM on January 6 in the Galapagos Islands.
can some one help me i do not now how to give a BRANLEST. if you help i will give you one BRANLEST.
Answer:
check your questions on your profile ✨
Answer:
Once there are two answers to your question, you look at them, and in the bottom right corner, you will see a crown press that good luck! :D