Which element adjusts the space around the data in each cell of a table? adjusts the space around the data in each cell of a table.

Answers

Answer 1

Answer:

Increase/decrease indentation

Explanation:

Answer 2

Answer:

(Cellpadding) is actually the correct answer.

Explanation:

Cellpadding and cellspacing are two important features of an HTML table. Cellpadding sets the space around the data in each cell. Cellspacing sets the space around each cell in the table.


Related Questions

5. A restore program generally is included with what type of utility?
O A. Screen saver
O B. Antivirus
O C. Uninstaller
D. Backup

6. The interface that allows interaction with menus, and visual images such as
buttons:
A. Touchscreen user interface
O B. Menu driven Interface
O C. Graphical user interface
O D. Command line interface​

Answers

The answer is B because the rest of them doesn’t make scenes

Treat others the way

a
Like they are your enemy
b
That is all the same
c
You want to be treated
d
The same as you treat your friend

Answers

Answer:

C.

Explanation:

But shi.it i dont treat ppl good when they disrespecting me or my friends i be putting them in hush mode.

Question 20
When looking to create video content for your marketing strategy, what three best practices
should you look to include?

Answers

Answer:

Short, technical, include a call to action.

Relevant, short, entertaining.

Short, entertaining, include a call to action.

Explanation:

Which of the following items are both an input and output device?

Answers

Answer:

Printer (output) Camera (input), and others

Explanation:

What is an interface in android? a) Interface acts as a bridge between class and the outside world.
b) Interface is a class. c) Interface is a layout file. d) None of the above

Answers

Answer:

Explanation:

Im thinking C hope this helps :))

The interface in an android serves as a layout file.

What is an User interface?

An User interface also called a UI, is an in-built system that serves as a hierarchy of layouts and widgets.

Thus, the interface in an android serves as a layout file.

Therefore, the Option C is correct

Read more about interface

brainly.com/question/5080206

C++
Is there any difference between Class and Structure? Prove with the help of example.

Answers

Answer:

5555

Explanation:

The class is reference type (it is a pointer and is assigned on the heap), structure and value type (and is allocated on the stack). The difference is important in terms of memory management.

Apply the Blue, Accent 1 fill color to the selected shape, is the filth option in the first row under Theme Cross, in power point

Answers

The theme cross row under the accent was fill

Which options are available when using a combo box rather than a list box? Check all that apply. A user can type in the values. A user can search for a record. The combo box can sort through records. A user can get values from another query. The combo box includes drop-down menus. A user can retrieve values from another table.

Answers

Answer:

A, B, D, F

Explanation:

A candle shop is having its annual sale. votive candles cost $10 each. Any additional candles he purchased were 25% off. if dahir purchased 7 candles, how much money in dollars , did he spend.

Answers

Answer:

55 dollars

Explanation:

25 % of 10 is 2.50 $10-2.50=7.50 7.50 X 6= 45.

45 + 10 = 55.

Hope this helps and everything is well,

Azumayay

Type the correct answer in the box. Spell all words correctly.

What type of network has cache servers that are connected to the original server?

A(n) ________ delivery network consists of cache servers that are connected to the original server.

Answers

Answer:

A Content Delivery Network (CDN) consists of cache servers that are connected to the original server.

Please help i’ll give you brainliest Please please

Answers

Hey

when we use quotation marks in a search it means we are looking for a phrase so lets say we want to find cats jumping off a bed we can either look up cats jumping off a bed with no quotation marks and the algorithm will try to look for keywords in the search so cat bed and jumping (it ignores words like a and off) but the way it doses all this we will most likely find an image of a cat on a bed or jumping on a bed but we may not find one of the cat jumping off a bed. so this is where quotation marks come in they will make the algorithm look just for images and links tagged with "cat jumping off a bed"

the plus sign is when we want to add things to the search so we would use the plus sign if we wanted to find a cat that was on a bed and jumping it would be like this cat+bed+jumping

the pipe symbol is used when we are looking for two things that are basically the same but with one key difference so lets say we wanted cats jumping on a bed or dogs jumping on a bed we would use it then

and the words or and not can not be used in a search engine as the algorithm can not tell if they are being used as a tag.

-scav

Overview
In this program, you will use incremental development to manipulate a list. Objectives Be able to:
Get a list of numbers Display the individual numbers of a list
Find the average and maximum of the numbers in a list Perform calculations on a number in a list Sort a list Description
Prompt the user for how many weights should be added to a list and get the weights (in pounds) from the user, one at a time.
Display the weights back to the user, along with the average and maximum weight.
Next, ask the user for a list location and convert the weight at that location to kilogra ms.
Next, display the sorted list. And finally, display the list of weights again, along with what the weights would be on Mars. One run of the full program is as follows:
Enter the number of weights: 4
Enter weight 1: 236.0
Enter weight 2: 89.5
Enter weight 3: 176.0
Enter weight 4: 166.3
Weights: [236.0, 89.5, 176.0, 166.3]
Average weight: 166.95
Max weight: 236.00
Enter a list location (1 - 4): 3
Weight in pounds: 176.00
Weight in kilograms: 80.00
Sorted list: [89.5, 166.3, 176.0, 236.0]
Weight on Earth: [89.5, 166.3, 176.0, 236.0]
Weight on Mars: [33.9, 62.9, 66.6, 89.3]
Think about how you would do this before you continue reading.
Come up with a very rough draft of how you would create this program.
Then see if it follows the same logic presented here.
If you do not know where to start, read the first step below and then try to construct the rest of the program on your own. Commonly, the hardest part of writing a program is knowing where to start. Try to begin without using the guide below. If you need more information on how to convert pounds to kilograms or how to convert the weight on earth to the weight on Mars, look at steps 4 and 6 below.
(1) Prompt the user for the number of weights and then prompt the user to enter the numbers, each corresponding to a person's weight in pounds. Store all weights in a list. Output the list. Ex: Enter the number of weights: 4 Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3]
(2) Output the average of the list's elements with two digits after the decimal point. Hint: Use a conversion specifier to output with a certain number of digits after the decimal point.
(3) Output the max list element with two digits after the decimal point. Ex: Enter the number of weights:
4 Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] Average weight: 166.95 Max weight: 236.00
(4) Prompt the user for a number between 1 and the number of weights in the list. Output the weight at the user specified location and the corresponding value in kilograms. 1 kilogram is equal to 2.2 pounds. Ex: Enter a list location (1 - 4): 3 Weight in pounds: 176.00 Weight in kilograms: 80.00
(5) Sort the list's elements from least heavy to heaviest weight. Ex: Sorted list: [89.5, 166.3, 176.0, 236.0]
(6) Create another list for the weights on Mars. To compute weight on Mars, take the weight on Earth and divide by Earth's gravitational force, which is 9.81. Then multiply by the Mars gravitational force, which is 3.711. Use the built in Python function round() to round the Mars weights to 1 decimal point. Print out each set of weights as follows: Ex: If the sorted list of weights is [89.5, 166.3, 176.0, 236.0] Weight on Earth: [89.5, 166.3, 176.0, 236.0] Weight on Mars: [33.9, 62.9, 66.6, 89.3]
(7) Congratulate yourself on a job well done!

Answers

Answer:

The program in Python is as follows:

num_weight = int(input("Weights: "))

Weights = []

totalweight = 0

for i in range(num_weight):

   w = float(input("Weight "+str(i+1)+": "))

   Weights.append(w)

   totalweight+=w

print("Weights: ",Weights)

print('Average Weight: %.2f' % (totalweight/num_weight))

print('Maximum Weight: %.2f' % max(Weights))

num = int(input("Enter a number between 1 and "+str(num_weight)+": "))

print('Weight in kg: %.2f' % Weights[i-1])

print('Weight in lb: %.2f' % (Weights[i-1]/2.205))

Weights.sort()

print("Sorted weights: ",Weights)

weight_on_mars = []

for i in range(num_weight):

   weight_on_mars.append(round((Weights[i]/9.81 * 3.711),1))

print("Weights on mars: ",weight_on_mars)

print("Congratulations")

Explanation:

This gets the number of weights

num_weight = int(input("Weights: "))

This initializes the weights

Weights = []

This initializes the total weight to 0

totalweight = 0

The iterates through the number of weights

for i in range(num_weight):

This gets each weight

   w = float(input("Weight "+str(i+1)+": "))

This appends the weight to the list

   Weights.append(w)

This calculates the total weights

   totalweight+=w

This prints all weights

print("Weights: ",Weights)

Calculate and print average weights to 2 decimal places

print('Average Weight: %.2f' % (totalweight/num_weight))

Calculate and print maximum weights to 2 decimal places

print('Maximum Weight: %.2f' % max(Weights))

Prompt the user for input between 1 and the number of weights

num = int(input("Enter a number between 1 and "+str(num_weight)+": "))

Print the weight at that location in kg and lb

print('Weight in kg: %.2f' % Weights[i-1])

print('Weight in lb: %.2f' % (Weights[i-1]/2.205))

Sort weights and print the sorted weights

Weights.sort()

print("Sorted weights: ",Weights)

Create a new list for weights on mars

weight_on_mars = []

The following populates the list for weights on mars

for i in range(num_weight):

   weight_on_mars.append(round((Weights[i]/9.81 * 3.711),1))

Print the populated list

print("Weights on mars: ",weight_on_mars)

print("Congratulations")

Other Questions
what is equivalent to 5:2 The Eiffel Tower is in Paris.O adjectiveO adverbO conjunctionO interjectionO nounO prepositionO pronounverb Please help! I need this to pass. If you are trying to get points please just chose a different question and don't mess with mine. I am in a state of trouble and I just need a helping hand. the saint lawrence river area was?A: BusyB: DeadC: Slowly Growing ARTS 1. This is the ability to employ dialects, accents, mime and staycombata. actingc. production /set designsbeditingd. film directing2. This captures the director's vision regarding the wees, lightingand other techniques# productionc. cinematographyb. set designd. film directing3. This is a film genre that is using real-life footage.a. Epic filmc. thriller filmb. Animated filmd. documentary film4. This film genre dramatizes non-fiction or historical based people.a. Biographical Filmc. Science Fiction Filmb, Fantasy filmd. horror filma5. This film genre is for small group of viewers and critics only.a. Silent filmc. slapstick filmb. Musical filmd. independent film Which one of the following deaths would NOT necessitate an autopsy?death of an ailing 86 year old womandeath of the victim at the Willow Lane scenedeath of a 40 year old man at the scene of a robberydeath of a teenager in an automobile crash Find the derivative of f(x) = -12x2 + 9x at x = 6.a) -112.5b)-135c)90d)108 1. You will give this report orally.2. Decide which rhetorical strategy you will use to support your thesis statement. (e.g., narration,description, exposition or some combination).3. Analyze several historical records pertaining to your investigation, examining critical relationshipsbetween elements of the research topic.4. Explain the perceived reason or reasons for the similarities and differences in historical records withinformation derived from primary and secondary sources to support or enhance the presentation.5. Include information from all relevant perspectives and take into consideration the validity andreliability of sources. An ad agency is interested in keeping track of their clients a little more easily. Help them out by creating two ArrayLists : 1. Create an ArrayList called company Name that stores an ArrayList of all the company names. 2. Create an Integer ArrayList called contractValue that stores the value of the contract that the ad agency has with its clients. What was some bad things about Giuseppe Garibaldi? I have a debate to prepare for and I have to prove he wasn't a good leader. How did the Industrial Revolution impact American economy?The economy became more industrial and less agricultural based.The economy became more agricultural and less industrial based.The economy remained mostly agriculturally based.The economy remained mostly industrial based.Question 7 (5 points)Which crop developed into the main cash crop in the South? Which of the three major industries that experienced grown in Texas during the beginning of the 20th century will be the most important into the 21st century? HELP?! PLEASE?!- Melanie started working at Zane's Car Wash. She recorded the number of car washes for each day during the months of October and November, and she displayed the results in the box plots shown below. Which statements best supports the information from the graph? * Read and select the best answer.At the end of the day, isn't this why most people learn a second language? When you can speak to people in their own language, you deepen connections and understanding. Learn a foreign language as a child and you have a lifetime of benefits. You can have cross-cultural friendships, broader career opportunities, and exciting travel adventures.Learn Mandarin and you can speak with more than a billion people worldwide. Learn Hindi and you can speak to another 650 million people. Spanish gets you approximately another 420 million. If you already speak English, you would almost be able to speak to half the world's population!While English has become the most widely-used language of the world, learning a foreign language (or two) increases opportunities for connection and opens the door to the many benefits of bilingualism.Source: https://www.pandatree.com/reason_foreign_languageBased on the reading, what would be an appropriate title for the text? (1 point)a)Train a child's taste for musicb)Prevent diseases related to agingc)Communicate with more peopled) Connect kids to their heritage How did Constantine affect Christianity? Step 3: Create your graphs. a) Decide how many graphs you will need to show the energy transformation. b) You should have at least 3 graphs, so that the steps of the transformation will be clear. c) Each graph should be clearly labeled. d) Careful use of color on your graphs will make them easy to read and understand. It's for Edge. Project: Energy Transformation Poster. Thank you! Which directive fits the above essay question?a.Describec.Listb.Explaind.Compare and contrast How did President Bill Clinton impact the 2000 presidential election? How many mg of a metal containing 38 percent nickel must be combined with 5 mg of pure nickel to form an alloy containing 68 percent nickel? Which of the following equations could be used to solve this? Please Help I'm TimedChoose the best synonym for the underlined word.His (negligence) caused the cookies to burn.a.carec.responsibilityb.neglectd.none of the abovePlease select the best answer from the choices providedABCD