In the Business world people are often measured by their???

A- soft skills
B- hobbies
C- iq
D- technical skills

In The Business World People Are Often Measured By Their???A- Soft SkillsB- Hobbies C- Iq D- Technical

Answers

Answer 1

Answer: D technical skills


Related Questions

write the name of the tab, command group, and icon you need to use to access borders and shading dialog box​

Answers

Answer:

Tab: Home Tab

Command group: Paragraph

Icon: Triangle

Explanation: Trust

Write a method that takes a RegularPolygon as a parameter, sets its number of sides to a random integer between 10 and 20 inclusive, and sets its side length to a random decimal number greater than or equal to 5 and less than 12. Use Math.Random() to generate random numbers.

Answers

Answer:

import java.lang.Object

import java.lang.Math

public class RegularPolygon  extends java.lang.Object{

  public void randomize(RegularPolygon c){

       int min = 10, max1 = 20;

       double  min1 = 5, max1 = 12;

       double range = (max - min) + 1;

       double range1 = (max1 -min1) + 1

       int side = (Math.random() * range) + min;

       double len = (Math.random() * range1) + min1;

       c.setNumSides(side);

       c.setSideLength( len);

 }

 public static void main(String[] args) {

    RegularPolygon r = new RegularPloygon();

    randomize(r);

 }

}

Explanation:

The randomize method accepts a regular polygon class as its only parameter and assigns a random number of sides and the length of these sides with the 'Math.random' function.

I need help with this. It's while loops in python.

Answers

Answer:

Here is a simple application running loop example in python

running = true

while(running):

# YOUR CODE HERE

Explanation:

A while loop is basically a loop of something if something is true

so if there is a boolean set to true for a application to run then use a while loop. Have a nice day! :)

Explaining AutoCorrect
How is the AutoCorrect feature useful in Outlook 2016? Check all that apply.
It checks for common typing errors.
It can automatically fix the error while you are typing.
It suggests email recipients that might be interested in your message.
It underlines words that need spelling and grammar corrections.
It ensures that you are emailing the correct recipients.

Answers

Answer are: 1st one, 2nd one, 4th one

It checks for common typing errors.
It can automatically fix the error while you are typing.
It underlines words that need spelling and grammar corrections.

Answer:

1, 2 and 4

Explanation:

In Outlook 2016, the Tell Me function can be accessed by
O pressing F1 on the keyboard.
clicking on the File tab, then the question mark button.
typing a query in the textbox on the ribbon.
typing "help" in the search box in the message pane.

Answers

In Outlook 2016, the Tell Me function can be accessed by

O pressing F1 on the keyboard.

clicking on the File tab, then the question mark button.

typing a query in the textbox on the ribbon.

typing "help" in the search box in the message pane.

Explanation:

I think it should be typing a query in the textbox on the ribbon.

In Outlook 2016, the Tell Me function can be accessed by clicking on the File tab, then the question mark button. The correct option is B.

What is Outlook?

The preferred email client for sending and receiving emails from Microsoft Exchange Server is Microsoft Outlook. Accessibility to contact, email, calendar, and task management tools is also provided by Outlook.

You can send and receive emails, manage your calendar, save the names and phone numbers of your contacts, and keep track of your projects using Outlook.

Even if you utilize Outlook on a daily basis, you might not be aware of all the wonderful things it can do to boost your productivity.

By selecting the File tab, then the question mark button in Outlook 2016, you may open the Tell Me feature.

Thus, the correct option is B.

For more details regarding Microsoft outlook, visit:

https://brainly.com/question/26695071

#SPJ2

20 points for ez question lol

Which are characteristics of effective presentations? Check all that apply.

The presentation is well organized.
The presenter speaks clearly.
The presenter reads from notecards.
The presentation is enhanced with visual aids.
The presentation includes some delay to set up audio or video.
The presentation captures the audience’s attention.

Answers

The characteristics of effective presentations are:

The presentation is well organized. The presenter speaks clearly.

What are characteristics of an effective presentation?

Others are:

The presentation is enhanced with visual aids. The presentation captures the audience’s attention.

A good presentation is known to be one that is often concise and also  focused on the topic that is under discussion.

Note that when the above presentation follows the option written above, it is said to be an effective or good presentation.

Learn more about presentations from

https://brainly.com/question/24653274

#SPJ2

Answer:

A,B,D,F

Explanation:

The presentation is well organized.

The presenter speaks clearly.

The presentation is enhanced with visual aids.

The presentation captures the audience’s attention.

You created a two-dimensional array with the following code.

A = [20, 'tennis', 'blue']
B = [15, 'soccer', 'green']
aList = [A, B]

How do you refer to 'green'?

Answers

Answer:

aList[1][2]

Explanation:

One can refer to the 'green' as per the given array, by aList[1][2].

What is an array?

An array is a type of data structure used in computer science that contains a set of elements (values or variables), each of which is identified by an array index or key.

An array is stored in a way that allows a mathematical formula to determine each element's position given its index tuple.

Use the new keyword, a space, the type, the number of rows in square brackets, and the number of columns in square brackets to build an array, as in new int[numRows][numCols].

A 2D array has as many elements as its number of rows twice its number of columns.

Thus, aList[1][2] is the way to represent a two-dimensional array.

For more details regarding array, visit:

https://brainly.com/question/13107940

#SPJ2

Will MARK BRAINLIST
What refers to the level at which a player is interacting with a story or game?

Group of answer choices


engagement


flow


emotion


distance

Answers

I’m not 100% sure... but I think the answer is engagement.

Hope this helped!

You are going to do a bubble sort on the following list. What are the missing members of the list? Select 3 options.
[10, 3,
12
0.005
dog
3,5
'cat'
Hellllpppp

Answers

The bubble sort makes multiple passes through a list. It compares adjacent items and exchanges those that are out of order. Each pass through the list places the next largest value in its proper place. In essence, each item “bubbles” up to the location where it belongs.

[3,5,'dog', 'cat']  are the missing members of the list . Hence option d, e and f are correct.

What is bubble sort?

Bubble sort is defined as the most straightforward sorting algorithm, which continually switches nearby elements if they are out of order. Until no swaps are required, the passing operation is repeated, signifying that the list is sorted.  Bubble sort is well-known in computer graphics because it can find a very minor defect in almost-sorted arrays and fix it with simply linear complexity (2n).

This question would be something you would know since your teacher has taught you it previously, but until you show me the entire lesson, it will probably just be a guessing game. 11 12 22 25 34 64 90 is a sorted array, and I've seen "dog" and "cat" used in coding multiple times.

Thus, [3,5,'dog', 'cat']  are the missing members of the list . Hence option d, e and f are correct.

To learn more about bubble sort, refer to the link below:

https://brainly.com/question/13161938

#SPJ2

What might the Internet of Things do in the future?

Answers

The future of IoT has the potential to be limitless. Advances to the industrial internet will be accelerated through increased network agility, integrated artificial intelligence (AI) and the capacity to deploy, automate, orchestrate and secure diverse use cases at hyperscale.

When you get a new sim card do it come with a new number or do you have a activate the phone and get a new number in store ?

Answers

put the sim card in the phone and turn the phone on, it technically comes with the card but you really interact with it until you turn the phone on.

Rapunzel s-a născut într-un ţinut îndepărtat într-un regat necunoscut. Mama vitregă a închis-o pe Rapunzel într-un turn foarte înalt ce avea N metri. Aici Rapunzel urma să-şi petreacă toată copilăria. Pentru a-i trece timpul mai uşor, Rapunzel cânta din zori şi până în seară, cântecul ei auzindu-se în tot ţinutul. Atras de vocea de privighetoare a fetei, Flynn Rider şi-a propus să se caţere pe pereţii exterior ai turnului şi în fiecare zi să procedeze astfel: de la răsăritul până la asfinţitul soarelui să parcurgă M1 metri iar apoi, de la asfinţit până la miezul nopţii încă M2 metri. Scrieţi un program care determină după câte zile ajunge Flynn Rider la Rapunzel.

Answers

Iche hebie zaft no guts dude

Explicar en qué sectores están divididos los procesos de producción y su importancia para el desarrollo tecnológico y económico del país. Indique dos ejemplos en cada sector

Answers

Answer:

Un sector económico es una rama de la economía en específico, caracterizada por englobar dentro de sí una serie de actividades interrelacionadas según cómo cada una contribuye al desarrollo económico del país. Una clasificación general popular de la economía es la división en los siguientes cuatro sectores:

1) Sector primario. El sector primario es el sector económico que abastece de materias primas y alimentos. Este sector abarca los sectores de agricultura, ganadería, caza, pesca y extracción de minerales. El procesamiento de estas materias primas se realiza en el sector secundario.

2) Sector secundario. Este sector se conoce como industria. Esto incluye todas las empresas y actividades que procesan las materias primas del sector primario. Los productos suelen ser revendidos al consumidor por el sector terciario.

3) Sector terciario. Este sector incluye los servicios comerciales: empresas que quieren obtener ganancias vendiendo sus servicios. El sector terciario incluye tiendas, catering, teatros, peluquerías, mayoristas, empresas de transporte, arrendadores, agencias de empleo, contables, abogados, consultores y empresas TIC.

4) Sector cuaternario. El sector cuaternario es el de servicios no comerciales, el único sector económico sin ánimo de lucro. Este sector incluye los servicios gubernamentales y los servicios subvencionados por el gobierno. Los ejemplos son hospitales, hogares de ancianos, cuerpos de bomberos, defensa, salud, trabajo social, educación y cultura.

Answer:

hola

Explanation:

What genre do games that involve physical challenges and make use of hand-eye coordination, speed, accuracy, and precision fall into?
adventure
action
simulation
puzzle

Answers

Answer:

flexiblity

feedback

playin outdoor game

Answer:

I think simulation not 100% sure though.

Which of the following programming languages were initially developed to teach programming techniques to students? Choose all that apply.

Answers

Answer:

BASIC programming language

Pascal programming language

Explanation:

C++ programming language

Java programming language

BASIC programming language

Pascal programming language

Answer:

it's C and D

Explanation:

HELP ASAP !!! What should be a one-page document?
O recommendations
O transcript
O cover letter
O resume

Answers

A resume should be about one page long

Which is an email protocol that retrieves email without deleting the email and its attachments from the server?
Simple Mail Transfer Protocol (SMTP)

Internet Message Access Protocol (IMAP)

Post Office Protocol version 3 (POP 3)

Simple Network Management Protocol (SNMP)

Answers

Answer:

Internet Message Access Protocol (IMAP)

Explanation:

The "Internet Message Access Protocol" or IMAP was created by Mark Crispin at the Stanford Knowledge Systems Laboratory. It allows a person to access his email from his local server. In comparison to the Post Office Protocol Version 3 (POP 3), which deletes the emails once they are downloaded, the IMAP allows the contents to be saved on the server. The email will only be deleted if the user intends to do so.

Answer:

It is Pop 3 not IMAP

Explanation:

Correct on edg 2022

The algorithm below is used to find the largest element in a list of numbers.
By modifying one of the lines in the program it is possible to make the algorithm find the SMALLEST element. Which line would need to be modified and how?

Answers

The line that can be modified in the algorithm to return the smallest of the list is line 04

From the question, we understand that:

The algorithm returns the largest of all elements in a list

The above action is executed on line 04

To change the function of the algorithm to return the smallest, line 04 must be modified as follows:

IF (num < target)

Hence, the line that can be modified in the algorithm to return the smallest of the list is line 04

Read more about algorithms at:

https://brainly.com/question/24793921

Identifying Responses and Replies
Use the drop-down menus to complete the sentences about message response options in Outlook.
v sends your response to everyone who received the initial email.
v creates a new message that includes the initial message to a new recipient.
v sends your response to only the sender of the initial message.

Answers

Answer:

Identifying Responses and Replies by using the drop-down menus to complete the sentences about message response is written below in detail.

Explanation:

A situation like this may be:

Someone receives a bike. They travel it and all, and then all of an unexpected they fall and get injured

If you only understood the first section of how the person received a bike when you draft a response, you would only draft about that piece, but getting harm after receiving the bike is also a huge portion of the "story". You could draft like how you were so pleased when you received your first bike, but you wouldn't remember to address the time you got injured when you were riding down a hill or something.

Answer:

Reply All

Forward

Reply

Explanation:

HELP ASAP!!! Complete the following sentence.
A portfolio helps you organize your abilities and determine your

Answers

Answer:

Strenghts.

Explanation:

A portfolio is a document, which can be both physical and electronic, in which people include their educational and work history, as well as those personal characteristics (character, personality, ability to work in a team, etc.).

Thus, for example, a portfolio may include the person's school and university performance, plus the courses and other training they have taken, plus the places where they work, indicating the positions and tasks they perform there.

Portfolios, then, allow employers to consider all aspects of prospective employees and thus decide who is the best candidate to hire.

A portfolio helps you organize your abilities and determine your GOALS

Why is it important to know the skills, experience needed and pay for a potential career choice?

Answers

you want to know what you’re future might look out to be (labor, money, health, spirit)

Select all the correct answers.
Flynn has drafted a research paper using a word processor. Which of the following will help him to enhance the readability of the paper and give it a professional look?

using bulleted or numbered lists
tracking revisions to the draft
presenting data in tables
inserting headers and footers on each page
formatting section headings in a different font type and size than body text
SELECT ALL THAT APPLY WILL GIVE BRAINLIEST

Answers

Answer: Bulleted or numbered lists, presenting data in tables, and the formatting one.

Explanation: I’m taking the test and i’m pretty sure that’s right, lmk if you got a better answer though!

Answer:

A, C, E

or 1, 3, 5

Explanation:

Took the test!

Application software consists of programs that perform a specific task for users. Examples include microsoft word internet explorer and micro type 5.

A.true
B.false​

Answers

Answer: verdadero

Explanation:

The
command is used to fix a mistake immediately after you make it.
Redo

Undo

Correct

Fix

Answers

The answer is Undo I think
Undo I think to a good

1-5 Safety measures in the use of kitchen tools and equipment.​

Answers

Answer:

Safety measures are as follows;

Explanation:

Hold the delicate instruments cautiously to use them.Require appropriate use of the equipment in the kitchen.Users should remove these defective instruments or discard of them.During and before use, check that perhaps the resources that will be used are indeed safe.In a cold and dry spot, all equipment must be kept.

which line of code will allow you to only load the localtime() method into active memory

Answers

Answer:

from time import localtime

Explanation:

have a lovely day :)

The line of code that will allow you to only load the localtime method into active memory is time.

The localtime function is simply known to be time in seconds as long as Epoch is targeted by timer into a broken-down time.

It is mostly written in local time. The function is known to be of timezone and any seasonal time adjustments. Local timezone information is used as though localtime() calls tzset().

LocalTime cannot have a muted date-time object that shows a time, often viewed as hour-minute-second. Time is shown in nanosecond precision.

Learn more from

https://brainly.com/question/19639119

How does the technology work

Answers

Answer:  it does – or perhaps appears to do – in the world.

Explanation:

sorry if am not right have a nice day lol

Answer: technology work by chips wires in the botton of it or in the back of it and there metel in it they wire thing to it to make it better like phon

In a PC, which of the following components stores the BIOS

A. CPU
B. RAM
C. ROM
D. Hard drive

Answers

I think it’s rom because rom chip is on the PC mother chip

How did you generate a random number for the user to guess?
A - by using the randint method from the random module
B - by using the built-in random function
C - by using the built-in randint function
D - by using the random method from the random module

Answers

Answer:

B

Explanation:

The build in random function will work the best for your case. Have a marvelous day. :)

Answer:

B.

Explanation:

I got it right on the test.

Any device that uses light to read and write information.

A. Optical Drive

B. Peripheral Device

C. Laser Device

D. Optical Device

Answers

I think Optical Drive does.

Answer:

the answer is optical drive

Explanation:

hope that helps thanx optical drive uses reflected light to read data.

Other Questions
El seor Huerta is talking about what he and his family used to do. Complete each sentence by choosing the correctimperfect verb.Los jvenes estabana. sirviendoayuda para toda la comunidad.b. pidiendoc. muriendo Read the speech and answer the question. Voluntourism: An Opportunity Too Good to be True A Speech to the Student Body of Evergreen High [1] Picture this: It's Spring Break, and you fly off to some country where there's lush rainforests and beautiful, blue coastlines to explore. There's also people in need, so you decide to blend your vacation with volunteering. Volunteering as a tourist, or voluntourism, seems like a great way to explore new regions and help people at the same time. However, this "volunteer plus travel" experience can actually harm local communities. While many teens might view traveling and volunteering abroad as a worthwhile adventure, there are more genuine and effective ways to make a difference. [2] Most would agree that volunteering in general is a worthy use of time. However, what if you found out the children you are "helping" are actually being kept in poor conditions so voluntourists will spend money to come to the local area? Dale Rolfe, a supporter of ethical voluntourism, explains the shocking reality that "Animal sanctuaries and orphanages are often manufactured for the voluntouristencouraging a cycle of exploiting the very animals and children the volunteers are trying to help." [3] Proponents of the "volunteer plus travel" experience also argue that traveling to new places builds character and is a valuable way to learn about different cultures. With voluntourism, however, participants often pursue experiences that are all about them. For example, they sign up to build a school for a gold star on their resume, but they have no real building skills and take jobs away from local construction workers (Schulten). Or, they arrive to teach English but instead take selfies with the locals. One world traveler and ethical voluntourist believes voluntourism "can perpetuate small minded views of the world by taking insulated, fake, and structured experiences and selling them as unabridged and eye opening" (Carlos). The voluntour experience is a mirage. The voluntourist's eyes are not opened to real life at the destination, and lasting change is not achieved. [4] If you want a genuine experience where you can see a lasting impact, there are better options than voluntourism. You can volunteer in your local community. Give an hour every week to your town's animal rescue. Serve monthly dinners to the homeless. Be a reliable, positive influence on a child who needs a mentor. Studies show that volunteering and forming lasting relationships with those you help has a positive impact on your physical and emotional health. In fact, blood pressure is reduced, memory is improved, and rates of depression are reduced (Michaels). [5] There is another reason to look into alternatives to voluntourism. Did you know the average "voluntour" travel package costs $3,400 (Rolfe)? Could that travel money be better spent? If the world's citizens are your passion, it could go to an international organization. If you care about education, your funds can be used to buy books for students in faraway lands. If you want villagers to have clean water, contribute funds to local efforts to dig wells. If you want to experience a different culture, travel to the country as a guest, and learn from the locals how you can best help them after you've returned home. But do not voluntour. [6] In reality, there are better ways to make a difference. Voluntourism might appear to be an adventure that blends travel and helping others, but it does little except provide a costly, superficial experience that might actually do more harm than good. So, volunteer where you are most needed...at home, where you can stay to see the job through and form genuine, lasting relationships. Choose a beautiful coastline closer to home and send the travel money you saved to an international organization that will put it to good use. Whatever you do, don't turn someone else's hardship into your vacation. What is the speaker's claim in this argument? The financial cost associated with voluntour opportunities is exceptionally high. There are better ways to make a difference than mixing tourism with volunteering. Volunteering locally has more health benefits than voluntouring internationally. Voluntourism is a great way to help people and communities as well as travel the world. Imagine you are creating a new local government for your community. where would you place it's new borders? Please help me on this is it okay to use animals for sports? Enter the perimeter of a 30-60-90 triangle with a hypotenuse of 20. Round your answer to the nearest tenth. You can leave the units off. * 430 were sold.4.25 for soda5.50 for popcornthe total is 2077.50how many of each were sold? find the value of root 7 upto 4 decimal Select all the expressions that are equivalent to 15n 10. 8n 23 3n + 11 + 10n + 2 20n 5 + 15n 5 3(5n 2) 5(3n 2) 35 3n + 10 35 divided by 1 3/4 and 5 Find the average rate of changef(x)=x^26x+8 when x2=1 and x1=3 Add a noun of direct address to the sentence below, along with proper punctuation. I like your new haircut." the base of a parallelogram is 2more than the height The area of the parallelogram is 120yd^2, find the base and the height Why is it important to know how to create a professional email? 1. Choose the word most similar in meaning to - ejectmisrepresentoustrenouncethrive2. His attitude towards us lately is ----, so I think we should talk to him.inevitableintolerableinvokableresolute3. Despite the strong temptation to become ______, Patricia was never content a characteristic which enabled her to win six consecutive championships.forthrightpassivecomplacentsubmissivecareless What is the slope of a line that passes through the origin and the point (-2,1)? Which most likely represents the process of dissolving carbon dioxide in soda?increased temperature to increase solubilityincreased pressure to increase solubilitydecreased agitation to decrease solubilitydecreased pressure to increase solubility PLEASE HELP!! the nitrogen cycle analysis questions fill in the blanks please help with as many as possible much appreciated! Determine the exact time from the first date to the second date. Assume the year is not a leap year.March 27th to November 21rst There are 13 apples in a basket. 5 of these apples are green. The rest of them are red.(a) What is the ratio of all apples in the basket to red apples?(b) What is the ratio of red apples to green apples?