HELP ASAP!!!!!!!

Which one of these is an example of soft skills?


coding in Python


creating a flowchart


having a good work ethic


using project management software​

Answers

Answer 1
Having a good work ethic

Related Questions

What is the purpose of "theme_color" in Word Press?


to change the color of the frame

to change the color of any buttons

to change the color of the text

to change the color of the background

Answers

the answer is 3. to change the color of the text

Answer:

Change the color of the text

If you receive email from someone you don't know what should you do?​

Answers

dont answer it of course. if its asking for credit card information then worst.

Answer:

depends

Explanation:

If it's from just a person;ignore/delete it.

business;unsubscribe/ delete

job;check it out

etc.

Choose the term that best fits each definition.
interpret(s) where a user wants to move the mouse through motions or eye movements.
allow(s) users to enter text and control the computer with their voice.
use(s) a synthesized voice to read text on the screen.
Text-to-speech
tracking devices
Speech input software

Answers

Answer: See explanation

Explanation:

The term that fits each definition include:

The mouse through motions or eye movements = tracking devices

Allow(s) users to enter text and control the computer with their voice = Speech input software

Use(s) a synthesized voice to read text on the screen = Text to speech

Which type of focusing technique helps viewers stay with the subject? _______ focus helps people concentrate on a moving subject and helps maintain interest.​

Answers

Answer:

Follow focus

Explanation:

Given that Follow focus is a strategy that assists in keeping a subject that is moving toward the viewer well focused.

Therefore, the type of focusing technique which helps viewers stay with the subject is FOLLOW focus: it helps people concentrate on a moving subject and helps maintain interest.​

When inserting a new row you must first select the row that is Question 1 options: Above where you want the new row to be Below where you want the new row to be

Answers

Answer:

You can add columns, rows, or cells to an Excel worksheet or delete them. Columns insert to the left, rows above, and cells above or to the left. ... that formatting will be transferred to a new row or column that you insert. If you don't want the formatting to be applied, you can select the Insert Options button after you insert, and .

Explanation:

Answer:

Above where you want the new row to be

Explanation:

i took the test.

can i get a real answer to this one

Answers

Answer:

yea but where the picture and where the answer for it??

Answer:

What are you asking for?

Explanation:

Please help! Answers that do not relate to this topic will be REPORTED!
A. What do input and output have in common?
1. the characteristic of being modal
2. the ability to be either relative or absolute
3. unidirectional flow of data and sequential access


B. Which of these is NOT a level at which reading and writing of data can take place?

1. characters

2. bytes

3. paths

4. fields


C. If a program closes abnormally, where may information be retained?
1. in a buffer
2. in a socket
3. in a modal window


D. Fill in the blank with the correct response.

If one is reading and writing objects to a file, one is making use of ______, which is a simplified process in Java.

Answers

Answer:

answer for number A is

2. the ability to be  either relative or absolute

B. 2 bytes

C. in a buffer

Explanation:

How can you tell that someone is listening to what you through your device ?

Answers

Answer:here are some signs to look out for: Background noise. As with mobile devices, background noise whilst on a call is a sign that somebody else could be listening. Listen out for static, buzzing or clicks on the line.

Explanation:

how and why Steve Jobs left Apple Computer.

Answers

Answer:

Jobs was forced out of Apple in 1985 after a long power struggle with the company's board and its then-CEO John Sculley. ... He was largely responsible for helping revive Apple, which had been on the verge of bankruptcy.

Explanation:

Why did the editors choose to rearrange the intercutting between Luke’s story and the Imperials? What effect did this have on the final film?

Answers

Answer:

Though it has its merit, know that the rule is not mandatory. ... A jump cut is a cut in film editing in which two sequential shots of the ... An intercut is a type of edit where two or more actions in distinct ...

What is meant by an "intractable (impossible)" problem? *

Answers

From a computational complexity stance, intractable problems are problems for which there exist no efficient algorithms to solve them. Most intractable problems have an algorithm – the same algorithm – that provides a solution, and that algorithm is the brute-force search

identify when programmers use an Else statement.
O to use an If statement in its place to make the test answer true.
O to use an expression instead of a conditional statement to make the answer false
O to tell the program to take a different action when the If statement answer is false
O to tell the program to give different information when the test answer is true.

plz help it's an assignment question on edgunuity and i need help. which one is it.

Answers

Answer:

to tell the program to take a different action when the If statement answer is false

Explanation:

if x = 0:

     print('x equals 0')

else:

      print('x equals something else that isnt 0')

Answer:

C. I got it right on edge.

Explanation:

Who was responsible for the development of the rocket motor?
-Technical Societies
-Robert H. Goddard
-Germans
-Wernher von Braun
I WILL MARK YOU BRAINLIEST ‼️‼️

Answers

Answer: Robert H. Goddard

Explanation: he developed and flew the first liquid-propellant rocket

Answer:

-Technical Societies

Explanation:

Rocket enthusiasts and rocket clubs were active in Germany, the US, Russia, and other countries. Experimental rockets were designed, tested, and sometimes flown. Some of the experiments used liquid fuel, though solid-fuel rockets were also developed. In 1932, the rocket motor was developed as a reusable method for the flight of a rocket.

a conditional statement begins with the word 'when" true or false

Answers

Answer:

False

Explanation:

Conditional statements always begin with 'if'.

What do macOS and Windows use to prevent us from accidentally deleting files?

Answers

macOS and Windows use a Trash can—or Recycle Bin—to prevent you from accidentally deleting files. When you delete a file, it is moved to the Trash can.

1. Copy the file secret.txt (Code Listing 9.3) from the Student CD or as directed by your instructor. This file is only one line long. It contains 2 sentences. 2. Write a main method that will read the file secret.txt, separate it into word tokens. 3. You should process the tokens by taking the first letter of every fifth word, starting with the first word in the file. Convert these letters to uppercase and append them to a StringBuilder object to form a word which will be printed to the console to display the secret message.

Answers

Answer:

In Java:

import java.io.File;

import java.io.FileNotFoundException;

import java.util.Scanner;

public class FP {

 public static void main(String[] args) {

   try {

     File myObj = new File("secret.txt");

     Scanner scr= new Scanner(myObj);

     while (scr.hasNextLine()) {

       String data = scr.nextLine();        

       String[] tokens = data.split(" ");  

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

        tokens[i] = tokens[i].substring(0, 1).toUpperCase() + tokens[i].substring(1);        }

       StringBuilder newstring = null;

       newstring = new StringBuilder();  

        for(String abc:tokens){newstring.append(abc+" ");     }  

         System.out.print(newstring);      }

     scr.close();      

   } catch(Exception ex){

     System.out.println("An error occurred.");    }

 }

}

Explanation:

See attachment for complete program where comments were used to explain each line

You've just deployed a new Cisco router that connects several network segments in your organization. The router is physically located in a server room that requires an ID for access. You've backed up the router configuration to a remote location in an encrypted file. You access the router configuration interface from your notebook computer using a Telnet client with a user name of admin and a password of admin. You have used the MD5 hashing algorithm to protect the password. What should you do to increase the security of this device

Answers

Answer:

The answer is "Use SCP to back up the router configuration to a remote location".

Explanation:

In the SPC, it is the Secure Copy Protocol that allows information to be stored and securely transmitted. Its SCP doesn't encrypt its digital information by itself; it corresponds to both the Security module which provides authentication or security. It allows the safe transfer of personal documents from either a host machine to a remote server. Its transference protocol "FTP" is quite close, but it adds security and authentication.

The printer prints 16 pages every minute. How many pages are printed in 6 minutes?

Answers

Answer:

96 pages are printed in 6 minutes

Answer: 96 pages

Explanation:

If the printer prints 16 pages every 1 min, then just times 16 by 6

Where do you enter characters for a simple search?
Choose the answer.
Navigation Pane
Replace dialog box
Clipboard
Find Pane

Answers

Answer:



Navigation Pane

I'm in need of an answer im not just wasting points for your benefit anymore..

Chris has handed over the screenplay to the sound designer to design the sounds in the movie. He told the sound designer that he has deany Indicated each sound in every scene. How do you think Chris indicated the sound effects in the screenplay?
OA by making the word indicating sound boldface
OB by capitalizing the word indicating sound
OC. by highlighting the word indicating sound
OD. by underlining the word indicating sound​

Answers

Answer:

i would say A, to me it just makes sense

Explanation:

Answer:

B) by capitalizing the word indicating sound

Explanation:

In most scripts for screenplays, words indicating a certain sound for a scene is usually in uppercase letters.

- 2022 Edmentum

how many atoms of oxygen in 4 molecules of HN03​

Answers

Answer:12 oxygen atoms are in 4 molecules of HNO3

Explanation: the amounts of atoms of all the component in HNO3, which are 1 atom of Hydrogen, 1 atom of Nitrogen and 3 atoms of Oxygen.

Sergio knows that to meet the project requirements, it is essential to have

Answers

Answer:

I need a better explanation??

when was third battle of Panipat fought​

Answers

Answer:

January 14, 1761

Explanation:

when debugging a program, it is helpful to focus on the most likely location of the error in the code
True
False

Answers

true!! it’s better to have an idea of what and where the program is having trouble with so you can take that knowledge and debug it
The correct choice is True

Write a while loop that produces the following output:
1
2
4
8


please i need help

Answers

Answer:

Explanation is being shown in the file to the link

What is the benefit of using Sound Cloud instead of You Tube?


works with all machines

more customizable

doesn't use HTML

easier to use

Answers

there is no benefit but if I had to choose more customizable

Answer:

I would pick more customizable

Explanation:

Tbh it is pretty easy to use in opinion

7.6 lesson practice edhesive please help!!

Answers

Answer:

how can i help ?????????????????????????????????????

Explanation:

would you rather be rich and unknown or famous and poor

Answers

Answer:

rich g

Explanation:

How do computers process data?

Answers

Data processing, Manipulation of data by a computer. It includes the conversion of raw data to machine-readable form, flow of data through the CPU and memory to output devices, and formatting or transformation of output. Any use of computers to perform defined operations on data can be included under data processing.

Hope this helps!

hey guys. I have bitmoji but the stickers just won't load. it says 'we couldn't retrieve you stickers, or says an error message. I restarted my android phone and installed and uninstalled the app as well. so if you guys know plz let me know

Answers

Answer:

Get an IPhone

Explanation:

Androids are a.s.s.

Other Questions
A liter of milk cost 68 cents. A case of 12 liters costs $7.56. How much is saved per liter by buying the milk by the case? Dan invests 7600 into his bank account.He receives 3% per year compound interest.How much will Dan have after 4 years?Give your answer to the nearest penny where appropriate. Can someone pls help me with this? Which animal is the least related to the others? I need help solving this: X - 15 > 3 1The first three figures in a pattern are shown here. What is the fourth figure in the pattern? 1. Consider the inequality x + 3x + 16 4Which value of x is a solution to the inequality?A. -10B. -6C. 10D. 6 What is the length missing leg of the right triangle Question 11Which of the following is a chromosomal mutation?substitutioninsertionpoint mutationinversion A new planet is discovered in a different solar system. The new planet is much like Earth. One difference is that the planet does not have seasons. What can you conclude is one feature of Earth that is lacking from the new planet? A. Earth has a tilted axis.B. Earth has a moon.C. Earth has a geosphere.D. Earth has a longer rotational period. Is The boundary line for the inequality y < -7/3x - 3 is a solid line. 5/10 is equal to5/11/51/24/5 Stable cost reporting in a manufacturing setting is typically a sign that operations are running smoothly. The accounting department at Rockwell Collins, an avionics manufacturer, analyzes the variance of the weekly costs reported by two of its production departments. A sample of 16 cost reports for each of the two departments shows cost variances of 2.3 and 5.4, respectively. Is this sample sufficient to conclude that the two production departments differ in terms of unit cost variance? Use = 0.10 (to 2 decimals). Would someone help me solve for x? What is in between the nucleus and electrons of an atom? Can someone help me PLZ! I keep posting the same question and no ones helping me :((((((((((((Solve the system of equations below. Write your answer as an ordered pair. 2x + 2y = 12 3x + 2y = 17 a van has a consuption rate 10 km per litre how muck will it consume in 85 km do all organisms have to have all five characteristics of life Why did the United States and the South Korean struggle at the start of the war? Mrs. Dawes has 4 bags of potting soil.She uses 1 bag for a large plant and the remainder for small plants.If each smaller plant uses 1/8 of a bag of soil, how many smaller plants can she pot?