Imagine that you are a career counselor at a high school. A student comes to you asking for career advice. They explain that they do not want to go to college but they do want a good career. They enjoy working with their hands and being outdoors. What are some careers and career paths needed to get there that you would recommend and why?

Answers

Answer 1

Answer:

Gardner a valet driver, or construction worker, maybe even a truck driver.

All these jobs are done outdoors, and you need to use your hands allot

Answer 2
Tell them to they can go to a trade school. Trade school is like college but for a specific job and costs less. That, or they can internship at car dealerships or help out their local community with gardening.

Related Questions

How do I fix this do get an output counting down?

public class Main {
public static void main(String[] args) {
Main.countDownTo(5, 1);
}

public static void countDownTo(int from, int to) {

for( int counter = from; from <= to; from--) {
System.out.print(counter + ",");
}
}
}

Answers

Answer:Its C

Explanation: Because the explanation is very cool and smart

Suppose a friend gives you a computer, but when you try to start it, a message appears asking for a BIOS password. You can't contact the friend to find out the password. How should you proceed?

Answers

Answer:

Clear the CMOS

Explanation:

The CMOS stores the BIOS settings.

a computer understand only.........Current​

Answers

Answer:

AC. alternating electrical current

Because of the abundance of water on planet Earth, hydrogen gas (H2) is a candidate in the search for a replacement for petroleum. However, removing hydrogen from water requires the investment of a great deal of energy. Why are plants considered to be one step ahead in the utilization of hydrogen as an alternative fuel source

Answers

The reason why plants are considered to be one step ahead in the utilization of hydrogen as an alternative fuel source is because; Plant cells possess water-splitting enzymes

What are splitting Enzymes?

Splitting Enzyme’s are like aldolases that catalyze the conversion of a molecule into two smaller molecules without the addition or removal of any atoms.

Now in plant biology, plants make use of he light-driven water-splitting/oxygen-evolving enzyme known as Photosystem II in photosynthesis to split water.

Read more about splitting enzymes at; https://brainly.com/question/14713715

You are a software engineer at a company where management routinely encourages you and your colleagues to use pirated software. What do you do?

Answers

Answer:

That’s highly illegal. You should notify them that it is illegal. And, if they continue, you should notify the legal team. If it continues, you either need to leave the company or notify the proper authorities.

pleaseee helpppppppppp

Answers

Answer:

EXAMPLE -

Create a variable and assign your age

var myage = 32;

type your age:

console.log(my age) ;

Notice that we did not type the actual numeric age. We used the variable instead. There wouldn’t be any purpose of declaring a variable if we were going to type 32 directly.

This makes the scrip more portable which means that the result on the screen is independent of the code console.log(myAge); . If we need to change our age all we have to do is to assign another number to the variable myAge and the output will change automatically. That’s the purpose of a variable.

True or false: Information security primarily relies on technical approaches such as multifactor authentication or data encryption.

Answers

TRUE, that is a one-sided answer. One of the biggest examples is virtually unhackable blockchains.

It is true that information security primarily relies on technical approaches such as multifactor authentication or data encryption.

What is data encryption?

The three primary goals of information security are to prevent the loss of availability, integrity, and confidentiality for systems and data.

The majority of security practices and controls can be traced back to losses in one or more of these areas.

Data encryption is a method of protecting data confidentiality by converting it to encoded information known as ciphertext, which can only be decoded with a unique decryption key generated either during or before encryption.

Technical approaches to information security, such as multifactor authentication or data encryption, are primarily used.

Thus, the given statement is true.

For more details regarding data encryption, visit:

https://brainly.com/question/14635177

#SPJ5

Exit X
The author creates a serious and apprehensive
tone.
How does the author develop that tone over the
course of the article?

Answers

The author creates a serious and apprehensive tone is to form a level of suspense within the mind of  reader. It is known to increases reader's focus because the concepts that is offered by the author is very important, hence the tone used.

How does an author develop tone?

A Tone is one that can be gotten via  word choice which is diction, or sentence construction and through word order (syntax).

It can also be gotten via looking at  character viewpoint that one is focuses on.

Tone is formed or changed by the way the viewpoint of the character or narrator as they treats the problem of the story and other characters, and also through the way one responds to the events surrounding a person.

Learn more about tone from

https://brainly.com/question/13667654

What's wrong with my program? Here is my code , if the user wants a 3rd card dealt they, have to select yes and the total will be for 3 cards. If they don't, then the total is for 2 cards.? I also need to print the total for both the dealer and the user and determine the winner of the game?


# import random
import random
def main():
# greet the user
print("Hello! Welcome to my card game!")
# deal the user a random card between 1 and 10
num1 = random.randint(1,10)
print("You drew a", num1)
# deal the user another random card (between 1 and two)
num2 = random.randint(1,10)
print("You drew a", num2)
num3 = random.randint(1,10)

# deal the user a third card?
again = input("Would you like to draw a 3rd card? Y or N? ")
d_total = random.randint(10,21)
u_total = (num1) + (num2) + (num3)
u_total1 = (num1) + (num2)
if again == "Y" or "y":

print("You drew a", num3)


if (u_total > d_total) and (u_total < 21):
# the user wins
print("Congratulations! You won!")
print("You drew a",num1,",", "a",num2,"," "and a",num3, "for a total of",u_total)
if again == "N" or "n":
print("You drew a", num1,"and a",num2, "for a total of",u_total1)


if (u_total > d_total) and (u_total < 21):


print("The dealer's total is", d_total)




else:

print("Sorry! You lose.")

main()

Answers

Your issue is on line 19 in your if statement. In python, if you have more than one condition in an if statement, you have to explicitly mention it after the or.

Your if statement is

if again == "Y" or "y":

However, this will always return true because the second statement simply asks "y".

To correct this, simply change the if statement to:

if again == "Y" or again == "y":

This will correct your code.

Another thing to consider is to always convert a userinput (whenever possible) to one version, this can be accomplished in your code by converting "again" into one version by using the .lower function.

again = input("Would you like to draw a 3rd card? Y or N? ")

again = again.lower()

Hope this helps!

A person discovers a way to gain access to the database that an online company uses to store its customers' credit card numbers. The person copies the numbers for their own use. This is an example of: O augmented reality O 5G. O virtual reality. O hacking​

Answers

The process by which an individual discovers a way to gains access to a company database, thereby using a customer's credit card details for personal use is known as Hacking.

What is Hacking?

Hacking is the term used to describe operations that attempt to breach digital devices such as computers, cellphones, tablets, and even whole networks of a company and steal information as well as data from their database.

It is the illegal access to data stored in a system. They do this by discovering techniques of breaking security protections and exploiting vulnerabilities in a computer system or network.

Learn more about Hacking here:

https://brainly.com/question/24956493

What does societal ethics mean

Answers

Answer:

Social ethics is the systematic reflection on the moral dimensions of social structures, systems, issues, and communities. Social ethics can be thought of as a branch of 'applied ethics,' the application of ethical reasoning to social problems.

Explanation:

Answer:

Social ethics is the systematic reflection on the moral dimensions of social structures, systems, issues, and communities. Social ethics can be thought of as a branch of 'applied ethics,' the application of ethical reasoning to social problems.

Explanation:

Hope this helps

list any two two examples of word processor spreadsheet and presentation software?​

Answers

Answer:

Explanation:

Word processing softwares : iWork Pages (Apple)

Word Perfect by Corel

Spreadsheet softwares : Excel by Microsoft Corporation

Numbers (Apple)

Presentation softwares: Microsoft powerpoint by MicrosoftCorporation

Corel Presentation

Apple Keynote

Databases containing the research, writing and studies conducted by Academic
Professionals are called:

Answers

Scholarly databases allow the indexing of research, essays and  multidisciplinary studies for access by students, professors and researchers.

Advantages of using Scholarly Databases

It allows access to reliable and revised sources for researching academic content, generating greater speed and security of information available in a structured research system.

Therefore, the use of databases, such as Gale, allows the user greater reliability in research and the producer of work greater dissemination of content and protection of rights.

Find out more information about database here:

https://brainly.com/question/10646220

Briefly describe how to use the design paradigm in a game?

Answers

As far as I know, we use compositional patterns, design paradigms with one purpose, to give the code style and make it more readable and maintainable. One of the examples in web development is the MVC pattern.

What is the purpose of the Subtotal feature?

summarizes data for analysis
copies the headings to the Clipboard
performs calculations
groups data by levels

Answers

Answer:

performs calculations

Explanation:

The SUBTOTAL function in Excel allows users to create groups and then perform various other Excel functions such as SUM, COUNT, AVERAGE, PRODUCT, MAX, etc. Thus, the SUBTOTAL function in Excel helps in analyzing the data provided.

Answer:

Summarizes Data For Analysis,

Explanation:

Answer is A, just did it

What is one of four key principles of Responsible Artificial Intelligence

Answers

FAIRNESS, transparency and explainability

PLEASE ANSWER! I NEED IN 30 MIN.

Answer the following encircle the letter of the correct answer.

1. This is a free library of educational books and manuals that maybe edited, changed and improved by anyone.

A. wiki travel

B.wikispecies

C. Wikinews

D. wikibooks

2. This site supports free learning communications.

A. wikiversity

B wikitravel

C. wiki news

D.wikispecies

3. This is free. Open, and multilingual online encyclopedia.

A. wikiquote

B. Wikipedia

C. wiki travel

D. wiki news

4. This is a guide to know the background of different countries.

A wiki travel

B. wiki news

C. Wikipedia

D. wiki books

5. This is a collection of reference or quotation from well-known people, books, movies, etc.

A. Wikipedia

B. Wiktionary

C. Wikiquote

D. wikiwikiweb

6. This is an online multilingual dictionary that contains the meaning, origin, and pronunciations of words.

A. wikitionary

B. Wikipedia

C. wiki quote

D. wiki news

7. This is a directory of species of all forms of life.

A. wikiversity

B. wiki news

C. wikispecies

D. wiki travel

8. This is a compilation of news story made possible through collaborative journalism.

A. Wikipedia

B. wiki news

C. wiki books

D. wikiversity

9. This is the oldest, open, easiest and fastest web based collaborative tool in the world.

A. Wiktionary

B. wikiquote

C. Wikipedia

D.wikiwikiweb

10. This is an online multilingual dictionary.

A Wikipedia

B. wikiquote

C. Wiktionary

D. wikiwikiweb​

Answers

Wikibooks is known as  is a free library of educational books and manuals that maybe edited, changed and improved by anyone.

Wikiversity site supports free learning communications.

Wikipedia is free, open, and multilingual online encyclopedia where any user can collaborately contribute and edit the article.

Wiki travel is a guide to know the background of different countries.

Wikiquotes is a collection of reference or quotation from well-known people, books, movies, etc.

Wiktionary is an online multilingual dictionary that contains the meaning, origin, and pronunciations of words.

Wikispecies is a directory of species of all forms of life.

Wiki news is a compilation of news story made possible through collaborative journalism.

Wiki wiki web is the oldest, open, easiest and fastest web based collaborative tool in the world.

Wiktionary is an online multilingual dictionary.

What is Wikibooks?

Wikibooks is known a as a term that connotes joint effort book authoring website. Here, there are users from all over the world who are said to work together to write textbooks and other types of materials of learning.

Learn more about dictionary from

https://brainly.com/question/2162261

name of a few operating system,.

Answers

Apple IOS, Microsoft Windows,

1. Is the replication of machine‘s intellect and a human intelligence..

2. One of the AI category that is capable of reacting upon human cognitive abilities and it is strong enough to discover a solution without the intervention of humans.

3. Its system is intended and qualified when it comes to an actual task.

4. A free subscription application that gives the background listening, no ads and downloads with a premium option on subscription that allows to listen to more than 200,000

5. A traditional way of knowing the information through newspaper, magazines, posters, banners and any form of printed materials. 1 point Your answer​

Answers

Answer:

when a burst tire while driving is advised

What is the effectiveness of communication technology?

Answers

Explanation:

Majority of studies measured the effectiveness of ICT by measuring specific dimensions rather than social isolation in general. ICT use was consistently found to affect social support, social connection's, with social isolation in positively.

Hillary’s family is thinking of relocating to a different city to save money. They set up a budget comparing the cost of living in four cities.


Oakland
Phoenix
Santa Fe
San Diego
Item
Cost
Cost
Cost
Cost
Housing
$565
$465
$505
$1200
Food
$545
$495
$475
$655
Health Care
$245
$215
$200
$495
Taxes
$450
$415
$385
$625
Other Necessities
$350
$305
$295
$495
Monthly Total
$2155
$1895
$1860
$3470

Based on cost of living alone, which city should they choose to live in?

Answers

Answer: Oakland, and also a city they feel is the safest + best for there family

Explanation:

define the term relationship in Microsoft Access​

Answers

Answer:

A relationship in Access helps you combine data from two different tables. Each relationship consists of fields in two tables with corresponding data. For example, you might have a ProductID field in a Products table and in an OrderDetails table.

Explanation:

how to code the calculate command button in visual basic?

Answers

On the Developer tab, click Button .
Click the worksheet location where you want the upper-left corner of the command button to appear. ...
In the Assign Macro dialog box, select New, which will open the Visual Basic Editor (VBE) to a pane with the following code:

Answer:

I Have Scripted A Button Using a coding site known as Lua, Lua is not a good coding site but i can still help you code a button. First insert a ScreenGUI under StarterGUI Then After that insert a Frame and then insert a TextButton. Inside the TextButton Insert a LocalScript A Local Script is for the whole Server to see, and a Normal Script is for just you to see. So Insert a Script. Inside the script type in.

Script.Parent.Parent.MouseButton1Click:Connect(function()

       script.Parent.Parent.Visible = false

What is that?

This is the basic script for the Button. The Parent of the Button is The Frame, so when you say (.Parent.Visible) its referring to The TextButton Itself and The Frame.

when you say .Parent.Visible = False We Mean that the Visibility will not be true, meaning when you click the button, the Button Will Not be Visible It Will Be Invisible.

Hope This Helps

Learn More About Coding Here ----> https://Brittanica.org

Brainliest Appreciated

-RoosterRejiYT

Look over the image in the top section and choose which piece from the bottom should be placed in the question mark (?) that would be next in the sequence.

Answers

The piece from the bottom that should replace the question mark is the following:

Option B or second option

Sequence exercises

In this type of exercises, you have to search for the pattern that is followed in the two first lines to discover the third one.

A pattern is something that is repeated. It is something you can use as a guide.

The correct option is the second one, which could be described as:

x

x x

Check more information about sequence exercises here https://brainly.com/question/7631238

Plagiarism is considered
a.
Cheating
c.
Part of obtaining information
b.
Academic integrity
d.
Part of citing information


Please select the best answer from the choices provided

A
B
C
D

Answers

Answer:

cheating

Explanation:

Answer:

a

Explanation:

cheating

How do web-based applications and websites differ? (2 points)
Web-based applications allow users to do something while websites provide information.

Web-based applications run on a browser, while websites run on a network.

Websites require installation, whereas web-based applications do not.

Websites do not require internet access, while web-based applications do.
i am thanking, it is A​

Answers

Answer:

A website provides the visual and test content for users and a page in the web can only be read and content can be annulated and even may be outdated.

A web application is a software that is made to run on the web. It is within the reach of the users. It can be only viewed only in the web browser.

Hence the option A is correct.

Explanation:

Answer:

A. Web-based applications allow users to do something, while websites provide information.

Explanation:

some operating system name

Answers

Answer:

Microsoft Windows 10

Explanation:

An operating system created by Microsoft

Write a program using LinkedList class and ListIterator interface to demonstrate the following activities:
1. Create a singly linked list named "Alphabets" with four elements: "P", "Q", "R", and "T" in the same sequence. Create an iterator named "iter1" and attach it to the linked list.
2. Add a new element "O" at the beginning of the linked list.
3. Add a new element "U" at the end of the linked list.
4. Add a new element "S" after the element "R".
5. Remove the element "O" and "Q".
6. Display the linked list after performing each activity 1 to 5.

Sample output:
[P, Q, R, T]
[O, P, Q, R, T]
[O, P, Q, R, T, U]
[O, P, Q, R, S, T, U]
[P, R, S, T, U]

Answers

The program is an illustration of LinkedList.

What is a LinkedList?

A LinkedList is a data structure element that contains nodes where each node represents a value and also points to the next node.

The main program

The program written in Java, where comments are used to explain each line of the program is as follows:

import java.util.LinkedList;

import java.util.Iterator;

class Main {

 public static void main(String[] args) {

     //This creates the Alphabets LinkedList

   LinkedList<String> Alphabets = new LinkedList<String>();

   //This creates an iterator for the Alphabets LinkedList

   Iterator it = Alphabets.iterator();

   //This adds P, Q, R and T to the list

   Alphabets.add("P");    Alphabets.add("Q");    Alphabets.add("R");    Alphabets.add("T");

   //This prints the Alphabets LinkedList

   System.out.println(Alphabets);

   //This adds O to the beginning of the list

   Alphabets.addFirst("O");

   //This prints the Alphabets LinkedList

   System.out.println(Alphabets);

   //This adds U to the list

   Alphabets.add("U");

   //This prints the Alphabets LinkedList

   System.out.println(Alphabets);

   //This adds S after R

   Alphabets.add(4,"S");

   //This prints the Alphabets LinkedList

   System.out.println(Alphabets);

   //This removes O and Q from the list

   Alphabets.remove("O"); Alphabets.add("Q");

   //This prints the Alphabets LinkedList

   System.out.println(Alphabets);

 }

}

Read more about LinkedList at:

https://brainly.com/question/19754898


Question 12
Which is a multicast address?
Answers:
226.2.2.1
222.168.1.1
241.2.2.1
223.1.1.1

Answers

Which is a multicast address ?

ans: 241.2.2.1

How will QuickBooks notify you when subscribing to receive updates and resolutions on QuickBooks Online outages or slowdowns

Answers

QuickBooks notify you  through email notifications when QuickBooks forms, updates or resolves any kind of incident.

Does QuickBooks have any kind of notifications?

This is one that is based on one's settings. If a person is said to make changes to a project or task that is in a QuickBooks Online Accountant (QBOA), the person will get an email notification.

A person can also get a daily summary of their tasks or not only If the person is not receiving notifications and then one can check their Spam folder and ensure it is not going there.

Learn more about QuickBooks from

https://brainly.com/question/24441347

Other Questions
formation of a parternship What are the products of the chemical reaction of cellular respiration?. Describe the slave trade and the nature of early slavery in the American colonies What are the primary advantages to choosing a sole proprietorship?. Which expression is equivalent to 6^{-2}\times 6^{4}\normalsize?6 2 6 4 ? Pls help me. Pls How does Juliet's dialogue reveal a tragic flaw that qualifies her as a tragic hero in the play? Juliet confides only in Friar Laurence about her dislike for Paris. Juliet's actions to avoid marrying Paris are impulsive and extreme. Juliet is mature enough to make her own decision and does not need advice. Can anyone help me with this dont answer if you dont no what it is and no deleting answers What career cluster does a farmer, nursery manager, solid and plant scientist and water resource specialist fall into?Question 3 options:Agriculture, Food and Natural Resources clusterBusiness Administration Health and Science Cluster the speed of an aircraft is measure in the unit_ You go to the store to buy a new TV that is $430. If the tax is 6% of that price, what is the total cost of the TV including tax? What is the change in volume of a rectangular prism if you double the area of one of thefaces?a. The volume would double.b. The volume would quadruple.c. The volume would be multiplied by 8.d. The volume would be multiplied by 16. what happens when glycerol is added to water?a. water evaporates more easilyb. water viscosity decreasesc. boiling point of the mixture exceed 100Cd. freezing point of the mixture drops below 0C what is the gcf for 5 and 25? HELPP PLSSS I NEED ITTT why does a landlocked country bear heavy expenditure on boarder security ? Whats the answer in radical form easy ! ** attachment provided ** PLEASE HELP Please help me!!!! I need it ASAP Read these story events from the "Three Little Pigs": 1. Three little pigs build their houses: one out of hay, one out of sticks, and one out of bricks. 2. The wolf visits the houses of the first and second pig and blows them down. 3. The wolf visits the brick house of the third pig and cannot blow it down. 4. The wolf climbs to the roof of the brick house to climb down the chimney. 5. The little pig places a boiling water pot in the fireplace. 6. The wolf falls down the chimney into the boiling water. 7. The pigs make a rug out of the wolf skin and live safely and happily ever after. Which part of the story represents the climax? A. Events 2 through 5 B. Event 1C. Events 2 and 3 D. Events 5 and 6