What should Lee do to accomplish this task? Check all
that apply.
Add shading to the top row.
Change the style of the table.
Bold the names of the planets.
Increase the font size of all the text.
Increase the overall size of the table.

What Should Lee Do To Accomplish This Task? Check Allthat Apply.Add Shading To The Top Row.Change The

Answers

Answer 1

Answer:

Add shading to the top row.

Change the style of the table.

Explanation:

Changing the shading can make it easier to see and the style will make it stand out therefore making easier to read and it stands out.

Answer 2

Answer:

a,b

Explanation:


Related Questions

Based on the details in The Riddle of the Rosetta Stone, how did the career of Jean-Baptiste Fourier differ from that of Jacques-Joseph Champollion?

Unlike Champollion, Fourier studied in Paris with Sylvestre de Sacy.
Unlike Champollion, Fourier cared more about non-Egyptian articles.
Unlike Champollion, Fourier studied and learned many languages.
Unlike Champollion, Fourier accompanied Napoleon to Egypt.

Answers

Answer:

D

Explanation:

Answer:

d

Explanation:

A _____ is relatively inexpensive to install and is well-suited to workgroups and users who are not anchored to a specific desk or location.​
A) local area network (LAN)
B) wireless local area network (WLAN)
C) metropolitan area network (MAN)
D) storage area network (SAN)

Answers

Answer:

B) wireless local area network (WLAN)

Explanation:

WLAN which fully meaning is WIRELESS LOCAL AREA NETWORK is a network provider that enables two or more mobile phone user , desktop or computer user to connect and have access to the internet by simply connecting to the local area wireless network and this type of wireless network are more cheaper to install.

Example of where WIRELESS LOCAL AREA NETWORK can be found are : School building, Office building, School campus, home, among others.

4.3 mini programs AP computer science

Answers

1.

name = input("Enter your name: ")

num1 = int(input("Hello "+name+ ", enter an integer: "))

num2 = int(input(name+", enter another integer: "))

try:

   if num1 % num2 == 0:

       print("The first number is divisible by the second number")

   else:

       print("The first number is not divisible by the second number")

except ZeroDivisionError:

   print("The first number is not divisible by the second number")

try:

   if num2 % num1 == 0:

       print("The second number is divisible by the first number")

   else:

       print("The second number is not divisible by the first number")

except ZeroDivisionError:

   print("The second number is not divisible by the first number")

2.

import random, math

num1 = float(input("Enter a small decimal number: "))

num2 = float(input("Enter a large decimal number: "))

r = round(random.uniform(num1, num2), 2)

print("The volume of a sphere with radius " + str(r) + " is " + str(round(((4 / 3) * math.pi * (r ** 3)), 2)))

I hope this helps!

What's one example of action could you take on the Internet that would be both unethical and illegal?

Answers

Answer:

bullying

Explanation:

bullying affects a person mentally via the technological medium which can even result in future physical harm, henceforth it is unethical

Bullying is  one example of action could you take on the Internet that would be both unethical and illegal.

What is Bullying?

Bullying is a type of hostile behavior in which one person purposefully and repeatedly causes harm or discomfort to another. Bullying can occur through verbal abuse, physical aggression, or more covert tactics.

The victim of bullying generally struggles to defend themselves and does nothing to "cause" the bullying.

Cyberbullying is the verbal threatening or harassing behavior carried out on electronic platforms such text messages, social media, email, and cell phones.

Therefore, Bullying is  one example of action could you take on the Internet that would be both unethical and illegal.

To learn more about Bullying, refer to the link:

https://brainly.com/question/10566405

#SPJ3

Guess The Song:
What Popping Brand New Whip Just Hopped In, I Got options

Answers

WHATS POPPIN

Song by Jack Harlow


Using complete sentences post a detailed response to the following.
Virtual reality is still pretty new. Brainstorm and discuss several ways that VR programs could be used to benefit society.
What are some drawbacks?

Answers

Answer:

Headaches and Car sickness is likely whats sopping most ppl from using vr- tho that masy never go away i think thats the number one drawback

Explanation:

Matt creates a Java class as part of his college assignment. He wants this class to be accessible within the current package only. Which access specifier should Matt use?

Matt has another Java assignment with multiple classes. In this assignment, there is a general class. A few subclasses outside the package use methods from this general class. Which access specifier should Matt use for the general class?

Matt should use the (blank) access specifier for the first class.

A. Protected
B. Default
C. Private
D. Public

He should use the (blank) access specifier for the general class.

A. Protected
B. Public
C. Default
D. Private

Answers

Answer:

first use Default as

a class with the default access modifier in a package, only those classes that are in this package can access this class. No other class outside this package can access this class.

general uses protected to make itself accecible to the subclasses.

Discuss some of the ways to allow a non-Windows device to authenticate with a Windows based network.

Answers

The existing rules are setup to allow access based on windows group membership. I need to get a wireless jetdirect connected to the wifi network.

Fill in the blanks: The ____is useful when the most common value of a data set is required. A.mean B.median C.mode

Answers

Answer:

C.Mode

Explanation:

The mode is useful when the most common value of a data set is required.

mode. an easy way to remember is MO from mode can stand for most often

The location of a file is specified by its ________. a. domain b. file path c. file type d. file extension

Answers

Answer:

File path

Explanation:

Literally, file path implies the location of a particular file

This in other words means that: the location of a file is defined or specified by its path.

Take for instance a text file named abc located at the desktop could have its file location to be C:\Users\HP\Desktop\abc.txt

Other options such as file type means the type of the file which could be a text file, an image, etc. and file extension is a suffix that indicates the file type (e.g. jpg, txt, png, etc).

So, from the list of given options; file path answers the question.

what does he put the cd drive

Answers

Answer:

a disk drive duh

Explanation:

Challenge activity 7.6.1: Constructor overloading.Write a second constructor as indicated. Sample output:User1: Minutes: 0, Messages: 0User2: Minutes: 1000, Messages: 5000#include using namespace std;class PhonePlan{public:PhonePlan();PhonePlan(int numMinutes, int numMessages);void Print() const;private:int freeMinutes;int freeMessages;};

Answers

Answer:

#include

using namespace std;

class PhonePlan{

public:

PhonePlan();

PhonePlan(int numMinutes, int numMessages);

void Print() const;

private:

int freeMinutes;

int freeMessages;

};

PhonePlan::PhonePlan() { // Default constructor

freeMinutes = 0;

freeMessages = 0;

return;

}

PhonePlan::PhonePlan(int numMinutes, int numMessages) {

freeMinutes = numMinutes;

freeMessages = numMessages;

return;

}

void PhonePlan::Print() const {

cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl;

return;

}

int main() {

PhonePlan user1Plan;

PhonePlan user2Plan(1000, 5000);

cout << "User1: ";

user1Plan.Print();

cout << "User2: ";

user2Plan.Print();

return 0;

}

Explanation:

The C++ source code has a defined class called "PhonePlan" with a default constructor which initializes the phone time and messages of a user to zero and another constructor method which assigns the "numMessages" and "numMinutes" to the user messages and minutes and displays it in the console.

The code that includes a second constructor is coded below.

Source code:

#include <iostream>

using namespace std;

class PhonePlan {

public:

   PhonePlan();

   PhonePlan(int numMinutes, int numMessages);

   void Print() const;

private:

   int freeMinutes;

   int freeMessages;

};

PhonePlan::PhonePlan() {

   freeMinutes = 0;

   freeMessages = 0;

}

PhonePlan::PhonePlan(int numMinutes, int numMessages) {

   freeMinutes = numMinutes;

   freeMessages = numMessages;

}

void PhonePlan::Print() const {

   cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl;

}

int main() {

   PhonePlan user1;

   PhonePlan user2(1000, 5000);

   cout << "User1: ";

   user1.Print();

   cout << "User2: ";

   user2.Print();

   return 0;

}

In this code, the `PhonePlan` class has two constructors.

The first constructor `PhonePlan()` is the default constructor that sets `freeMinutes` and `freeMessages` to 0.

The second constructor `PhonePlan(int numMinutes, int numMessages)` is an overloaded constructor that takes two parameters `numMinutes` and `numMessages`. It assigns the provided values to `freeMinutes` and `freeMessages`.

The `Print()` function is used to display the values of `freeMinutes` and `freeMessages` for each `PhonePlan` object.

In the `main()` function, we create two `PhonePlan` objects: `user1` using the default constructor and `user2` using the overloaded constructor with values 1000 and 5000 for minutes and messages, respectively. We then call the `Print()` function for each object to display the minutes and messages for each user.

Sample Output:

User1: Minutes: 0, Messages: 0

User2: Minutes: 1000, Messages: 5000

In the output, `user1` has 0 minutes and 0 messages, while `user2` has 1000 minutes and 5000 messages, as initialized by the overloaded constructor.

Learn more about Constructor overloading here:

https://brainly.com/question/13267120

#SPJ4

Zoe has been asked to identify the external links that exist in a workbook that has primarily been managed by
another employee.
Which feature should she use?

Answers

Answer:

Data tab and external links group.

Explanation:

I'm not 100% sure but it makes the most sense

Answer:data tab and external links group

Explanation:

In HTML, what is an element?
O The text browser displays when a user points the mouse pointer to it
O The tag that tells the web browser what the source of a file is
O The combination of a start and end tag, not including the tagged content
O The combination of a start and end tag, together with the tagged content

Answers

Answer:

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Explanation:

HTML stands for hypertext markup language. It is one of the most commonly used languages on the internet.

Element:

An element in HTML consists of a start tag and end tag, and contains some content between the two tags.

i.e.

<tag> Content </tag>

Hence,

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Answer:

The right answer is Option D: The combination of a start and end tag, together with the tagged content

Explanation:

Draw a concept map that shows how the STEM careers are connected.

Answers

Answer:

attached below is the concept map needed

Explanation:

STEM : science technology engineering and mathematics

attached below is the concept map

from the map we can make an example on how this careers are connected

example : Production of chemical substance

science ; gives the chemical combination neededtechnology ; helps keep people safe from its hazardsengineering ; produces the chemical substancemathematics ; provides accurate measurement

What should you do if you do not understand the directions on a test?

Answers

Answer:

ask your teacher for a little guidence.

Explanation:

even though you may not get the answer you need they might give you some assitance

JPG is considered a lossy file format. What does this mean?
O JPG files are insecure.
O JPG files compress efficiently but have compromised quality.
O JPG files are easy to delete.
O JPG file compression can be reversed.
PLEASE HELPPPPP!!!!!

Answers

Answer:

either a or b

Explanation:

Answer:

A it files are insecure

Explanation:

Which of the following types of software applications would open a txt file?
A. Image editor
B. Database
c. Media player
D. Word processor

Answers

Answer:

database or word proccessor

Explanation:

A.

Answer:

Word Processor

Explanation:

A-p-e-x

Write a program that uses a scanner to report some statistics about words in an input sentence ( see Section 7.8). The outputs should be the number of words in the sentence, the average word length, and the length of the sentence.

Answers

import java.util.Scanner;

public class JavaApplication77 {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter a sentence:");

       String sentence = scan.nextLine();

       String [] arr = new String[sentence.length()];

       arr = sentence.split(" ");

       System.out.println("There are "+arr.length+" words in the sentence.");

       int count = 0;

       for(int i = 0; i < arr.length; i++){

           count += arr[i].length();

       }

       System.out.println("The average length of a word in your sentence is "+(count/arr.length)+" characters");

       count = 0;

       System.out.println("Your sentence is "+sentence.length()+" characters long.");

       

   }

   

}

For the length of a sentence, I included spaces as characters but I did not do this for the length of a word. I hope this helps!

What is the function of a breadcrumb trail in a website?

Answers

It lets users keep track of what they’re doing

Answer: traces between homepage and current web page

Explanation:

Name three technologies and what their used for before the creation of computers (first to answer correctly will get branlies

Answers

Morse, to send information quicker during a war

Telegram, to send news across the country

And possibly radio?

The primary benefit of digital distribution is that more audiences are able to purchase and view a film
True or False?

Answers

Explanation:

The answer could be either-or. At the moment True because people are in quaritine and can't go to movie theaters or go buymovies from a store. It could also be false because not everyone owns a computer or has access to the internet. Also, the number of family houses that have internet are growing.

It all depends on the context I guess. You could say true becuase the number of families with wifi is growing and we're all being quarantined or you could say false because not everyone has access to the internet.

Write a Java program called Decision that includes a while loop to prompt the user to enter 5 marks using the
JOptionPane statement and a System.out statement to output a message inside the loop highlighting a pass
mark >= 50 and <= 100. Any other mark will output a messaging stating it’s a fail.
Example of the expected output is as follows:
55 is a pass
12 is a fail

Answers

Answer:

Written in Java

import javax.swing.JOptionPane;

public class Decision{

public static void main(String[] args) {

    int i = 1;

    while(i<=5){

    String score = JOptionPane.showInputDialog("Input <score>");

    int mark = Integer.parseInt(firstNumber);

    if(mark >= 50 && mark <= 100) {

        JOptionPane.showMessageDialog(null, mark, " is a pass", JOptionPane.PLAIN_MESSAGE);

    }

    else{

        JOptionPane.showMessageDialog(null, mark, " is a fail", JOptionPane.PLAIN_MESSAGE);

    }

    i++;

    }

}

}

Explanation:

This initializes the a counter variable i to 1

    int i = 1;

The following iteration is repeated as long as i is less than or equal to 5

    while(i<=5){

This prompts user for input

    String score = JOptionPane.showInputDialog("Input <score>");

This converts user input to integer

    int mark = Integer.parseInt(firstNumber);

This checks if input is within 50 and 100 (inclusive)

    if(mark >= 50 && mark <= 100) {

This prints pass

        JOptionPane.showMessageDialog(null, mark, " is a pass", JOptionPane.PLAIN_MESSAGE);

    }

If otherwise

    else{

This prints fail

        JOptionPane.showMessageDialog(null, mark, " is a fail", JOptionPane.PLAIN_MESSAGE);

    }

This increments the counter variable by 1

    i++;

    }

2. Answer true or false.
An alien may become a citizen by birth or wealth.
false
true

Answers

True - because you cant deny somebody who was legally born where you automatically become a citizen if you were born in that place.

Answer:

True

Explanation:

goods purchased from Ravi rs 30000 and paid cash with cash discount of 5%​

Answers

Answer:

rs 24000 I believe

Explanation:

A typical computer user will never come across most of the computer's files; the majority of files on a
computer are only relevant to the computer itself or a developer.
True
O False

Answers

Answer:

True

Explanation:

Answer:

The answer to this question is given below in the explanation section

Explanation:

The answer to this question is True. As you know that a typical computer user doesn't use most of the computer's files, because the majority of the computer's files on the computer are only relevant to the computer itself or a developer.

For example, a typical computer user can use internet explorer to search for something online on the internet. He/she can't come across to change the firewall, inbound and outbound net setting, etc. For example, A typical user will not use IIS and comes across its related files but a developer who is developing the web application can use and change setting in IIS.

A typical user can not change the environment variable but the developer can change the environment variable and computer registry setting.

Also a typical user does not change the windows setting and come across all files related to windows setting but developer can change.

Which of the following indicates branching of the program flow based on a condition?

input/output symbol
flow line symbol
decision symbol
process symbol
______________________________________________________________
Which of the following symbols depicts one distinct action in a program?

decision symbol
process symbol
input/output symbol
predefined process symbol

Answers

Answer:

Which of the following indicates branching of the program flow based on a condition? decision symbol

Which of the following symbols depicts one distinct action in a program? process symbol

Explanation:

Flow chart is the graphical representation of a process or algorithm.

Which of the following indicates branching of the program flow based on a condition?

The condition has two options to be processed based on its result hence the program is divided into branches after the decision of process.

The decision symbol is used for this purpose.

Which of the following symbols depicts one distinct action in a program?

The distinct action only involves one action. Out of the given options, process symbol is used for distinct action.

Hence,

Which of the following indicates branching of the program flow based on a condition? decision symbol

Which of the following symbols depicts one distinct action in a program? process symbol

Which are benefits of group discussions? Check all that apply. Learning becomes more interesting. Students engage in learning. Learning involves less work. Less preparation is required. Preparation is encouraged.

Answers

Answer:

1st and 3rd one

Explanation:

because it's right

Answer:

im preety sure its the first, 2nd and 4th one but im not completely sure

Explanation:

How can you tell that your worksheet is in Macro Recording mode?
A) A gray box is next to the word Ready in the bottom left corner.
B) The word Record is next to Ready in the bottom left corner.
C) The word Ready is in the bottom left corner.
D) A red light flashes next to the word Ready in the bottom left corner.

Answers

Answer:

A

A gray box is next to the word ready in the bottom left corner

Explanation:

A gray box is next to the word Ready in the bottom left corner can you tell that your worksheet is in Macro Recording mode. Thus, option (a) is correct.

What is recording?

The term recording refers to record the data on the worksheet as well as the recording on the mic. The recording was the recording was the necessary to maintain. The recording was the accounts and the audio was the also as the record in the terms. The recording was the voice modulation of the recorder.

A worksheet was the important term in the recording of the data. The recording in the workbook are the easy to find and the properly managed. The recording was the necessary to maintain the data. The gray color box and the search, the next is the ready button of the left in the corner.

Therefore, option (a) is correct.

Learn more about on recording, here:

https://brainly.com/question/10677268

#SPJ2

Which technology forms the foundation for cloud computing?

Answers

Answer:

Cloud Computing

Cloud Computing

Cloud computing is the on-demand availability of computer system resources, especially data storage (cloud storage) and computing power, without direct active management by the user. The term is generally used to describe data centers available to many...

Explanation:

Answer:

The answer is virtualization

Virtualization is the creation of virtual versions of something such servers, storage devices, operating systems, that allows one to share an application or a resource among multiple customers or organizations. It plays a critical role in cloud computing through sharing data that is present in the clouds like application and infrastructure.

Explanation:

Other Questions
Read the excerpt about land use in the Amazon rain forest.The reason corporations and large ranches have a major advantage over poor individuals in the rush for land: they have the capital to build their own access roads into the forest. This advantage enables them to lay claim on land much farther from major highways than can poor settlers. Small farmers have difficulties in finding land for squatting. They can typically claim land only a few kilometers from public roads, as they can neither market products nor have access to health or education facilities if they venture further. Often, their alternative is to invade land that already is clearly privately claimed, leading to land disputes.What type of environmental impact is described in the excerpt?economicgeographicpoliticalsocial Bonnies Bakery goes through 22 4/5 cups of vegetable oil in 2 weeks. If they use the same amount each week, how much do they go through in 1 week? John and Julie are planning to have a new house built the architect designs a house instant them the blueprints skilled at the art architect used on the blueprints is 2 1/2 inches equals 10 feet the living room what are the actual dimensions of 12 x 16 what are the dimensions on the blueprints 2/3 divided by 1/4. ASAP Which of the following remains would be most likely only be found as a compression fossil?a shella dinosaura mammotha leaf How many solutions does have?1/2 ( 2p + 9 ) = -p + 5 Find the x and the measure of each angle How was Malcolm X and his family a part of the Great Migration movement? Ustedes ____ mucha tarde? How can you define diffusion? Where did the Hebrew people found the Kingdom of Israel?1. UR2. Egypt3. Canaan4. Euphrates The volume of a prism is 60 cubic cm. If the height is 6 cm and the width is 2 cm, what is the length? Help me lol The Monkey's paw Vocabulary warm up exercise answer sheet Steve ran 1 lap in 7 minutes. At this rate, how far would he run in 42 minutes?5 laps7 laps10 laps6 laps I'm getting a hedgehog tomorrow! I think it's name should be Dew (It's a boy) what do you think? Work out the missing numbers: Why are the Ancient Israelites important in ancient history? Who were their main prophets, and what did they accomplish? Please help me on this!!5n+17n315+5n The map shows some geographic features of ancient Egypt.A map titled Ancient Egypt. It has a scale from 0 to 100 kilometers and 0 to 60 miles. The Mediterranean Sea is at the top of the map. The Nile River flows north through Kush, Upper Egypt, and Lower Egypt. The Nile River Delta is in Lower Egypt next to the Mediterranean Sea. The Red Sea begins south of the Mediterranean Sea.What does the map demonstrate about the importance of the Nile River to trade in ancient Egypt?The Nile River allowed ancient Egyptians to export mud bricks across the region.The Nile River gave ancient Egyptians access to trade opportunities in the Red Sea.The Nile River allowed the ancient Egyptians to provide for their needs without trade.The Nile River gave ancient Egyptians access to trade opportunities in the Mediterranean Sea. Kevin earned $28,500 in gross wages last year and had $1,350 in capitalgains. How much of Kevin's income from last year subject to incometax?O $29.850O $27.150O $28.500O $1,350