What is a good slogan for digital citizenship?

Answers

Answer 1

Answer:

No matter where you are in the world you have a place to go to

Explanation:

In this world of globalization it makes sense you would be anywhere in the world and still have a place to go to.

Answer 2

Answer:

"If you are on social media, and you are not learning, not laughing, not being inspired or not networking, then you are using it wrong."

Explanation: (this is the freedom of speech not my words.) but there true even though and that we all (i dont know if its everyone but y'know) have to stay inside during this pandemic try to make the most of it!  


Related Questions

whats this oh _____
what is it
A) jane
B) juan.
C)juan
D) horse

Answers

Answer:

juan duhhhhh hehehe

Explanation:

A student will not be allowed to sit in exam if his/her attendance is less than 75% .
Take the following input from user
Number of classes held
Number of classes attended
And print
Percentage of class attended
Is student allowed to sit in exam or not .

Answers

Answer:

Sorry, this is too vague to understand as you don’t have any charts, graphs, or anything

Explanation:

Which statements about editing an existing Contact in Outlook are true? Check all that apply.

Double-click a contact to open the editing page.
Right-click a contact and click Edit to open the editing page.
Click the Edit link in the Contact Information page to open the editing page.
Contacts can be edited in the body of an email message.
Existing fields can be edited for a Contact in the editing page.
New fields can be added for a Contact on the editing page.

Answers

Answer:

Double-click a contact to open the editing page.

Right-click a contact and click Edit to open the editing page.

Click the Edit link in the Contact Information page to open the editing page.

Existing fields can be edited for a Contact in the editing page.

New fields can be added for a Contact on the editing page.

Explanation:

just did it

The following statements should be considered for editing into an existing contact in Outlook:

Double click the contact in order to open the editing page.Right-click the contact & click on edit to open the editing page.Click on the edit link in the page of contact information for editing the page.The fields that are existed could be altered for a contact in an editing page.The new fields for the contact on the editing page could be added.

The following information should be relevant:

The Contact & editing page is important.Contacts can't be added to the body of the email message.

Therefore we can conclude the above statements should be considered for altering an existing contact in outlook.

Learn more about the outlook here: brainly.com/question/20494929

Graphics consisting of text, that can be shaped and stretched in a variety of ways, are called
a.WordArt
b.SmartArt
c.Text Boxes
d. Clip Art​

Answers

Answer:

Word Art

Explanation:

Given your answer choices Word Art is the only one consisting of text that can be shaped and stretched in a variety of ways.

Write Java code to display a dialog box that asks the user to enter his or her desired annual income. Store the input in a double variable and display it in a message dialog box. public class AnnualIncome { public static void main(String[] args) { // Write your Java code here } }

Answers

Answer:

Follows are the code to the given question:

import java.util.*;//import package for user-input

public class AnnualIncome // defining a class AnnualIncome

{

public static void main(String[] as)//defining main method

{

double income;//defining double variable

Scanner obx=new Scanner(System.in);//creating Scanner class for user-input

System.out.print("Please enter your desired annual income: ");//print message

income=obx.nextDouble();//input double value

System.out.println("Your income "+income);//print value

}

}

Output:

Please enter your desired annual income: 98659.89

Your income 98659.89

Explanation:

In this code, a class "AnnualIncome" is declared, and inside the main method, the double variable "income" is defined, that uses the scanner class concept for input the value from the user-end, and in the next step, it uses the print method for asked user to enter  value and it uses the print method, that prints income value with the given message.

. What projects would Excel best be used for?

Answers

Answer:

Projects that require spreadsheet organization and/or calculations between data

Explanation:

That is why Excel is a spreadsheet program

Declare an array of 10 integers. Initialize the array with the following values: 000 101 202 303 404 505 606 707 808 909 Write a loop to search the array for a given number and tell the user if it was found. Do NOT write the entire program. Example: User input is 404 output is "found". User input is 246 output is "not found"

Answers

Answer:

In C++:

#include <iostream>

using namespace std;

int main(){

   int myArray[10] = {000, 101, 202, 303, 404, 505, 606, 707, 808, 909};

   int num;

   bool found = false;

   cout<<"Search for: ";

   cin>>num;

   for(int i = 0;i<10;i++){

       if(myArray[i]==num){

           found = true;

           break;

       }

   }

   if(found){ cout<<"found"; }

   else { cout<<"not found"; }

   return 0;

}

Explanation:

This line initializes the array

int myArray[10] = {000, 101, 202, 303, 404, 505, 606, 707, 808, 909};

This line declares num as integer

   int num;

This initializes boolean variable found to false

   bool found = false;

This prompts user for input

   cout<<"Search for: ";

This gets user input

   cin>>num;

This iterates through the array

   for(int i = 0;i<10;i++){

This checks if num is present in the array

       if(myArray[i]==num){

If yes, found is updated to true

           found = true;

And the loop is exited

           break;

       }

   }

If found is true, print "found"

   if(found){ cout<<"found"; }

If found is false, print "not found"

   else { cout<<"not found"; }

alendar year. The current calendar is called the Gregorian calendar, was introduced in 1582. Every year divisible by four was created to be a leap yer, with exception of the years ending with 00 (that is, those divisible by 100) and not divisible by 400. For instance, the years 1600 and 2000 are leap years, but 1700, 1800, and 1900 are not. Write a ptogram that requests a year as input states wether it is a leap year.

Answers

Answer

Tough question.

i dont know

Explanation:

Which type of chart would best display data on the flavors of ice cream that customers prefer?

Answers

Answer: pie chart

Explanation: cause i said so

Pie chart is a type of chart would best display data on the flavors of ice cream that customers prefer.

What do you mean by Pie chart?

A circular statistical visual with slices illustrating numerical proportion is called a pie chart. Each slice's arc length in a pie chart corresponds to the quantity it represents.

Although it was given that name because it resembles a slice of pie, there are other ways to serve it. The Statistical Breviary by William Playfair, published in 1801, is largely credited with creating the first known pie chart.

In the business sector and in the media, pie charts are used a lot. They have been criticized, though, and many experts advise against using them since it can be challenging to compare data from one pie chart to another or between numerous pie charts, according to study.

Learn more about Pie chart, here

https://brainly.com/question/9979761

#SPJ6

do you know that the 80s was not one of Disney's best decades? what was a reason?

Answers

Answer:

They produced a movie called the black couldren that nearly killed them.

Segmentation Faults Recall what causes segmentation fault and bus errors from lecture. Common cause is an invalid pointer or address that is being dereferenced by the C program. Use the program average.c from the assignment page for this exercise. The program is intended to find the average of all the numbers inputted by the user. Currently, it has a bus error if the input exceeds one number. Load average.c into gdb with all the appropriate information and run it. Gdb will trap on the segmentation fault and give you back the prompt. First find where the program execution ended by using backtrace (bt as shortcut) which will print out a stack trace. Find the exact line that caused the segmentation fault.
Q13. What line caused the segmentation fault?
Q14. How do you fix the line so it works properly?
You can recompile the code and run the program again. The program now reads all the input values but the average calculated is still incorrect. Use gdb to fix the program by looking at the output of read_values. To do this, either set a breakpoint using the line number or set a breakpoint in the read_values function. Then continue executing to the end of the function and view the values being returned. (To run until the end of the current function, use the finish command).
Q15. What is the bug? How do you fix it?
//average.c
#include
/*
Read a set of values from the user.
Store the sum in the sum variable and return the number of values
read.
*/
int read_values(double sum) {
int values=0,input=0;
sum = 0;
printf("Enter input values (enter 0 to finish):\n");
scanf("%d",&input);
while(input != 0) {
values++;
sum += input;
scanf("%d",input);
}
return values;
}
int main() {
double sum=0;
int values;
values = read_values(sum);
printf("Average: %g\n",sum/values);
return 0;
}

Answers

Answer:

See Explanation

Explanation:

Q13. Line that caused the segmentation fault?

The segmentation fault was caused by line 15 i.e. scanf("%d",input);

Q14. How the line was fixed?

The reason for the segmentation fault is that the instruction to get input from the user into the integer variable "input" was not done correctly.

The correction to this is to modify scanf("d",input) to scanf("%d",input);

Q15. The bug?

The bug is that the method needs to return two value; the sum of the inputted numbers and the count of the inputted numbers.

However. it only returns the count of the inputted number.

So, the average is calculated as: 0/count, which will always be 0

How it was fixed?

First, change the method definition to: void and also include an array as one of its parameters.

void read_values(double sum, double arr []) {

Next:

assign sum to arr[0] and values to arr[1]

In the main method:

Declare an array variable: double arr [2];

Call the read_values function using: read_values(sum,arr);

Get the sum and values using:

sum = arr[0];

values = arr[1];

Lastly, calculate and print average:

printf("Average: %g\n",sum/values);

See attachment for complete modified program

Wilma is looking for facts about social media for her research project. What fact should she use for her project?

1: Communicating with social media is hard
2: Social media is a great way to communicate.
3: Social media is fun and easy to use.
4:The minimum age for some social media sites is 13.

Answers

the fact she should use for her project is number 4 because that’s the only fact, the rest are opinions!

Subtract 01101011-00101010

Answers

Answer:

Alexa says minus 8

Explanation:

lmaao it actually gives an answerr

Write a program that reads in an integer and breaks it into a sequence of individual digits. For example, the input 16384 is displayed as 1 6 3 8 4 Make sure the input has no more than five characters and is not negative. (You don’t have to do this through code) Just make sure you enter correct data when running the program.

Answers

Answer:

Here you go :)

Explanation:

(This also works for strings as well)

usr = input("Enter a number: ")

usr = list(usr)

for n in range(len(usr)):

   print(usr[n], end= " ")

The program that reads in an integer and breaks it into a sequence of individual digits is in the explanation part.

What is programming?

Programming tasks include analysis, algorithm generation, algorithm accuracy and resource consumption profiling, and algorithm implementation.

Computer programming is the process of writing code that instructs a computer, application, or software program on how to perform specific actions.

Here is a Python program that reads in an integer and breaks it into a sequence of individual digits:

num = input("Enter a positive integer with no more than five digits: ")

if num.isdigit() and len(num) <= 5:

   for digit in num:

       print(digit, end=' ')

else:

   print("Invalid input!")

Thus, this program first prompts the user to enter a positive integer with no more than five digits.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ2

This function finds the minimum number in a list. What should be replaced with in order for this function to operate as expected?

Answer choices:

A. numList[i] = min;
B. min = numList[i];
C. min = numList;
D. numList = min;

Answers

Answer: a

Explanation:

Just took the test

A broadband connection is defined as one that has speeds less than 256,000 bps.
Question 25 options:
True
False

Answers

Answer:

A typical broadband connection offers an Internet speed of 50 megabits per second (Mbps), or 50 million bps.

Explanation:

I think I got it right, plz tell me if im wrong

Create a flowchart that assigns a counselor to a student.
You need to ask a student for the first letter of his/her last name. Assign a counselor based on the following criteria:
A through M are assigned to Ms. Jones
N through Z are assigned to Mr. Sanchez

Answers

Please Help! Unit 6: Lesson 1 - Coding Activity 2
Instructions: Hemachandra numbers (more commonly known as Fibonacci numbers) are found by starting with two numbers then finding the next number by adding the previous two numbers together. The most common starting numbers are 0 and 1 giving the numbers 0, 1, 1, 2, 3, 5...
The main method from this class contains code which is intended to fill an array of length 10 with these Hemachandra numbers, then print the value of the number in the array at the index entered by the user. For example if the user inputs 3 then the program should output 2, while if the user inputs 6 then the program should output 8. Debug this code so it works as intended.

The Code Given:

import java.util.Scanner;

public class U6_L1_Activity_Two{
public static void main(String[] args){
int[h] = new int[10];
0 = h[0];
1 = h[1];
h[2] = h[0] + h[1];
h[3] = h[1] + h[2];
h[4] = h[2] + h[3];
h[5] = h[3] + h[4];
h[6] = h[4] + h[5];
h[7] = h[5] + h[6];
h[8] = h[6] + h[7]
h[9] = h[7] + h[8];
h[10] = h[8] + h[9];
Scanner scan = new Scanner(System.in);
int i = scan.nextInt();
if (i >= 0 && i < 10)
System.out.println(h(i));
}
}

I need help I would really appreciate it

Answers

Answer:

Checks if it is a multiple of 3 and 5

Explanation:

Its an if statement using modulus division to check for a remainder. It checks if a number is a multiple of 3 AND 5. (&& and & both mean and in Java).

If the remainder of both is 0 then that means the mystery number is a multiple of both 3 and 5.

ahmed is attending a conference and wants to learn more about python lists. Which conference is mostly likely to meet ahmed's needs

Answers

New Validation Methods  meets is most likely to suit Ahmed's requirements.

Define New Validation Methods ?

Python validation protects third-party users from mistakenly or maliciously misusing code. It may be used to determine whether or not the input data type is valid. It may be used to see if the provided input has any incorrect values. Validation may be classified into four types:

Validation in the future.

Validation at the same time.

Validation retroactively.

Revalidation (Periodic and After Change) (Periodic and After Change)

Learn more about Python validation from here;

https://brainly.com/question/21600820

#SPJ1

Package Newton’s method for approximating square roots (Case Study: Approximating Square Roots) in a function named newton. This function expects the input number as an argument and returns the estimate of its square root. The program should also include a main function that allows the user to compute the square roots of inputs from the user and python's estimate of its square roots until the enter/return key is pressed.An example of the program input and output is shown below:Enter a positive number or enter/return to quit: 2 The program's estimate is 1.4142135623746899 Python's estimate is 1.4142135623730951 Enter a positive number or enter/return to quit: 4 The program's estimate is 2.0000000929222947 Python's estimate is 2.0 Enter a positive number or enter/return to quit: 9 The program's estimate is 3.000000001396984 Python's estimate is 3.0 Enter a positive number or enter/return to quit

Answers

I’m confused what are you asking

The python program that calculates the volume and the square of the volume is as follows

radius = float(input("Radius: "))

volume = (4.0/3.0) * (22.0/7.0) * radius**3

sqrtVolume = volume**0.5

print(f'The volume is {volume} units cubed')

print(f'The square root of that number is {sqrtVolume}')

How to write the program?

The complete program written in Python where comments are used to explain each line is as follows

This gets the radius

radius = float(input("Radius: "))

#This calculates the volume

volume = (4.0/3.0) * (22.0/7.0) * radius**3

#This calculates the square root of the volume

sqrtVolume = volume**0.5

#This prints the volume

print(f'The volume is {volume} units cubed')

#This prints the square root of the volume

print(f'The square root of that number is {sqrtVolume}')

Therefore, The python program that calculates the volume and the square of the volume is as follows

radius = float(input("Radius: "))

volume = (4.0/3.0) * (22.0/7.0) * radius**3

sqrtVolume = volume**0.5

Read more about python programs at

brainly.com/question/26497128

#SPJ2

Which heading size fits for the word headings​

Answers

Answer:

Explanation:

h1 i think

Provide a status report to your classmates and instructor. Describe any modifications that you have made to the design or documentation, discuss whether you encountered any new challenges or risks, and describe the mitigation strategy you implemented for addressing each risk. Are you meeting the objectives identified in your system proposal?What hardware, software, virtual desktop resources, and so on will you need to design and implement your system?What adjustments have you made to your document based on peer feedback?How do system components and applications interface and share data?In response to your peers, provide constructive feedback on their system design document progress and suggestions that they can incorporate into their documentation or projects. Is a sufficient amount of detailed information being provided to enable implementation by any skilled IT practitioner? Do you see any potential obstacles that they might come up against? If so, what approach can they take to overcome these challenges?When preparing your status reports, be sure that they are clear and well written. Engage your classmates in discussions that mimic the team dynamics expected in professional, real-world information technology project environments.Refer to the Discussion Rubric for directions on completing these discussions.

Answers

Answer:

that's muddled up I can't make out the question

were is the hype house

Answers

Answer:

LA

Explanation:

where the rich people live

Answer:

los angeles

Explanation:

they're also very much in the shade right now

6. Which is not considered a storage device a. USB Flash Drive b. External hard Drive c. MS-Windows d. Internal Hard Drive e. Memory Cards​

Answers

Answer:

MS-Windows

Explanation:

MS-Windows is an operating system not a storage device.

Which of these is NOT a mathematical operator used in Python?

A. !
B. /
C. %
D. *

Answers

the answer is A. i wouldn’t seen any mathematical question that has to do with “!”

Write a C program that does the following: Creates a 100-element array, either statically or dynamically Fills the array with random integers between 1 and 100 inclusive Then, creates two more 100-element arrays, one holding odd values and the other holding even values (copied from the original array). These arrays might not be filled completely. Prints both of the new arrays to the console.

Answers

Answer:

Following are the code to this question:

#include <iostream>//header file

using namespace std;

int main()//main method

{

   int axb[100];//defining 1-array of 100 elements

   int odd_axb[100], even_axb[100];//defining two array that holds 100-elements

   int i,size=0,size1=0;

   for(i = 0; i < 100; i++)//defining for loop to assign value in array

   {

       axb[i] = rand() % 100 + 1;//using rand method to assign value with random numbers between 1 and 100

   }

   for(i = 0; i < 100; i++)//defining for loop that seprates array value in odd and even array

   {

       if(axb[i] % 2 == 0)//checking even condition  

       {

           even_axb[size++] = axb[i];//holding even number

       }

       else//else block

       {

           odd_axb[size1++] = axb[i];//holding Odd number

       }

   }

   //printing values

   cout << "Odd array: ";//print message  

   for(i = 0; i <size1; i++)//use for loop for print odd numbers

   {

   cout << odd_axb[i]<<" ";//printing values

   }

   

   cout <<"\n\n"<< "Even array: ";//print message

   for(i = 0; i <size; i++)//use for loop for print even_axb numbers

   {

       cout << even_axb[i] << " ";//printing values

   }

   return 0;

}

Output:

Odd array: 87 87 93 63 91 27 41 27 73 37 69 83 31 63 3 23 59 57 43 85 99 25 71 27 81 57 63 71 97 85 37 47 25 83 15 35 65 51 9 77 79 89 85 55 33 61 77 69 13 27 87 95  

Even array: 84 78 16 94 36 50 22 28 60 64 12 68 30 24 68 36 30 70 68 94 12 30 74 22 20 38 16 14 92 74 82 6 26 28 6 30 14 58 96 46 68 44 88 4 52 100 40 40

Explanation:

In the above-program, three arrays "axb, odd_axb, and even_axb" is defined, that holds 100 elements in each, in the next step, three integer variable "i, size, and size1" is defined, in which variable "i" used in the for a loop.

In the first for loop, a rand method is defined that holds 100 random numbers in the array, and in the next, for-loop a condition statement is used that separates even, odd number and store its respective array, and in the last for loop, it prints its store values  

What is the most important basic property of melody? Why?​

Answers

Most good melodies restrict their basic range to no more than an octave-and-a-half. Most good melodies use repeating elements. Listeners should be hearing certain melodic intervals, rhythms and other musical shapes repeating throughout the melody

Write a function endpoints that takes a list of numbers (eg. [5, 10, 15, 20, 25]) and returns a new list of only the first and last elements of the given list (eg. [5, 25]). If the input list is [5], the returned should be [5,5]. The function should return an empty list if an empty list is passed in. The function should not use any variables besides the passed in argument list_.
def endpoints(it) -> list: # YOUR CODE HERE raise NotImplementedError() ] ### BEGIN TESTS assert endpoints([5, 10, 15, 20, 251) -- 15, 25] **# END TESTS U # BEGIN TESTS assert endpoints([5]) - (5, 51 *** END TESTS [] ### BEGIN TESTS assert endpoints(0) -- 0 #*# END TESTS

Answers

I included a picture of my code below. Best of luck with your assignment.

where did the command line first get its beginning?​

Answers

Answer:

About twenty years ago Jobs and Wozniak, the founders of Apple, came up with the very strange idea of selling information processing machines for use in the home. The business took off, and its founders made a lot of money and received the credit they deserved for being daring visionaries. But around the same time, Bill Gates and Paul Allen came up with an idea even stranger and more fantastical: selling computer operating systems. This was much weirder than the idea of Jobs and Wozniak. A computer at least had some sort of physical reality to it. It came in a box, you could open it up and plug it in and watch lights blink. An operating system had no tangible incarnation at all. It arrived on a disk, of course, but the disk was, in effect, nothing more than the box that the OS came in. The product itself was a very long string of ones and zeroes that, when properly installed and coddled, gave you the ability to manipulate other very long strings of ones and zeroes. Even those few who actually understood what a computer operating system was were apt to think of it as a fantastically arcane engineering prodigy, like a breeder reactor or a U-2 spy plane, and not something that could ever be (in the parlance of high-tech) "productized."

The program which handles the interface is called a command-line interpreter or command-line processor. Operating systems implement a command-line interface in a shell for interactive access to operating system functions or services. Such access was primarily provided to users by computer terminals starting in the mid-1960s, and continued to be used throughout the 1970s and 1980s on VAX/VMS, Unix systems and personal computer systems including DOS, CP/M and Apple DOS.

Prompt the user to enter the time of the day. The user should enter d for daytime and n for nighttime. Configure a boolean variable to store if it is daytime (true) or nighttime (false). Use the boolean variable to store if it is daytime or nighttime and print if the temperature is ideal if it needs to be raised if it needs to be lowered, and by how much.

Answers

Answer:

Check the photos for the answers

Explanation:

On Earth, the pattern of daytime and nighttime repeat every day. This phenomenon takes place because of the rotation of the earth on its own axis. The rotation of the earth causes day and night on earth. The length of day and night varies on the seasons and it also varies according to the part of the earth.

What are rotation and the revolution of the earth?

The rotation of the earth is one of the major movements of the earth which causes the day and night over the by the movement of the earth on its own axis. The rotation of the earth takes place from west to east direction.

Revolution is also one of the movements of the earth where the earth revolves around the sun and causes changes in season and also the duration of day and night due to its tilt over its axis.

Therefore, On Earth, the pattern of daytime and nighttime repeat every day. This phenomenon takes place because of the rotation of the earth on its own axis. The rotation of the earth causes day and night on earth. The length of day and night varies on the seasons and it also varies according to the part of the earth.

Learn more about the “revolution of the earth” here:

brainly.com/question/17731832

#SPJ2

Other Questions
You are walking on a moving walkway in the airport. The length of the walkway is 59.1 m. If your velocity relative to the walkway is 2.35 m/s, and the walkway moves with a velocity of 1.85 m/s, how long will it take you to reach the other end of the walkway who ever answers this question gets brainy How does Doppler ultrasound technology differ from ultrasound technologythat does not use the Doppler effect?A. Doppler ultrasound collects data from moving objects.B. Other ultrasound technology creates images, but Dopplerultrasound does not.C. Doppler ultrasound creates images, but other ultrasoundtechnology does not.D. Doppler ultrasound is based on absorption of sound, and otherultrasound technology is based on reflection. When a firecracker explodes, stored chemical energy turns into sound and light energy. What other type of energy is also released during this transformation? ill give brainliest JUST HELP ME PLEASE its due tmr, please be accurate Mike brought 480 crayons that came in packs of 15 how many packs of crayons did Mike buy What does$1 -$3 -$6 +$1= A company has $14,500,000 in taxable income. Consider the following corporate marginal tax rates: Taxable income ($) Tax rate 0- 50,000 15% 50,001- 75,000 25% 75,001- 100,000 34% 100,001- 335,000 39% 335,001- 10,000,000 34% 10,000,001- 15,000,000 35% 15,000,001- 18,333,333 38% 18,333,334+ 35% Attempt 1/10 for 10 pts. Part 1 What is the marginal tax rate for the company? What would you do if you got conflicting answers for the same procedure from two different people you interviewed? What would you do if one was a clerical person and the other was the department manager? I need to solve 6 2/3-21/6 The first step to solve the equation StartFraction x over 4 EndFraction minus three-fourths = 16 is shown below. StartFraction x over 4 EndFraction minus three-fourths + three-fourths = 16 + three-fourths Which property was applied in this step? PLZ HELPcould you plz answer question 21. A rabbit started at point 0 and made 3 jumps: a jump of 4 units, then a jump of 2 units, and then a jump of 1 unit. We do not know the direction of either jump. Where on the number line can this rabbit be now?2. Next time, the rabbit from the previous problem started at 10. Where on the number line can he be after the same three jumps? : List four important details from the coroners investigation of the death of Charles Baskerville. Jaden is participating in a 4-day cross -country biking challenge. He biked for 56, 60, and 47 miles on the first three days. Over the four days he averaged ( arithmetic mean ) 57 miles per day. How many miles did he bike on the last day? HELP PLS AND PLS GIVE ME THE RIGHR ANSWER I GIVE BRAINLIST Four major candidates ran in the 1824 election, all under the "Democratic-Republican" name. One of the candidates, Andrew Jackson, was already famous. In the 1780s, he earned the right to practice law and served in various offices of the state government, including senator. He earned the nickname "Old Hickory" for his toughness as a general during the War of 1812 and First Seminole War. Jackson supported slavery and "Indian removal." This earned him support from voters in southern and frontier states. The other three candidates were John Quincy Adams of Massachusetts, Henry Clay of Kentucky, and William Crawford of Georgia.U.S. presidents are elected through the Electoral College. The Founding Fathers worried that Americans were too spread out to learn enough about the candidates. Under the Electoral College, Americans cast their ballot for the popular vote, which chooses the electors for each state. The number of electoral votes each state equals the number of representatives and senators combined. The candidates must win an absolute majority of electoral votes to win the election.In 1824, Andrew Jackson won the popular vote, but he did not win it in each state. Jackson and Adams both won many electoral votes. Jackson won the most with 99. However, a candidate needs an absolute majority of electoral votes to win. In 1824, Jackson needed 131 to win. When there is not majority winner, the election goes to the House of Representatives. This has only happened twice in U.S. history.Even though he won the popular vote and many electoral votes, Andrew Jackson lost the presidency in 1824. John Quincy Adams was the Secretary of State at this time. Henry Clay was the Speaker of the House of Representatives. Henry Clay, receiving the least, was left out. However, as a leader in the House of Representatives, he had influence over the other members. Clay openly hated Jackson and there were rumors that Clay made a deal with Adams in exchange for his support. The House election declared John Quincy Adams president. Soon, he chose Henry Clay to fill the seat he left vacant, Secretary of State. Jackson was shocked and enraged. Although there was no inquiry of possible wrongdoing, Jackson accused Adams and Clay of making a "corrupt bargain."John Quincy Adams was a disappointment as president. Many of his goals created divisions like federal funds for internal improvement. Some states thought that taking federal funds would force them to follow certain rules. They felt this reduced their rights as independent states. Jackson took advantage of issues like this one to gather more support. More Jackson supporters found their way to seats in Congress. He was as a man of the people and said Adams could never understand the common mans concerns.John Quincy Adams ran against Andrew Jackson in the 1828 election. Personal attacks grew even more vicious, but Andrew Jackson appealed to many. He believed government was for the common man. He believed in strict reading of the law and limited internal improvements. He also believed in states rights.Andrew Jackson easily won the 1828 election, winning both the popular vote and a majority of electoral votes. Historians note the sectional nature of the voting. Support for Jackson was concentrated in South while Adams support was mostly in the North. Jackson was so popular because he brought changes to the government. He also wanted to make sure the government was responsible for its actions. Jackson pushed settlement into the frontier. He supported the Indian Removal act. He also defended the spread of slavery. Though his support was heavier in the South, he was determined to keep a unified nation. The rise and presidency of Old Hickory is memorable to Americans today.Which best describes the purpose of the Electoral College in the United States? Chooses the winner of an election if the popular vote is disputed Reduces the number of smear campaigns among candidates Publishes the results from each state's chosen electors Determines the winner of the presidential election PACK is a rectangle with a perimeter of 40 units. Find the measure of angle O to the nearest degree. Alexa has a points card for a movie theater. She receives 25 rewards points just for signing up. She earns 4.5 points for each visit to the movie theater. She needs 61 points for a free movie ticket. How many visits must Alexa make to earn a free movie ticket? i need help on number 5 this is due at 11.59 thank you :) A college admits a freshman class of 330 students at the beginning of each academic year and graduates 145 students twice a year. What will be the net change in student population after 5 years?