Which attitudes are most common among successful IT professionals?

Answers

Answer 1
openness to learning new things and interest in technology

emotional resilience and enjoyment of leadership positions

tough-mindedness and a focus on financial gain

empathetic and motivated by a concern for others


hopefully that helps!

Related Questions

Write a SELECT statement that returns these columns from the Customers table:
Customer last name customer_last name column
City customer_city column
Zip code customer_zip Column
Return only the rows with customer_state equal to IL .
Sort the results in Descending order of customer last name
SCHEMA:
CREATE TABLE customers
(
customer_id INT NOT NULL,
customer_last_name VARCHAR(30),
customer_first_name VARCHAR(30),
customer_address VARCHAR(60),
customer_city VARCHAR(15),
customer_state VARCHAR(15),
customer_zip VARCHAR(10),
customer_phone VARCHAR(24)
);
INSERT INTO customers VALUES
(1, 'Anders', 'Maria', '345 Winchell Pl', 'Anderson', 'IN', '46014', '(765) 555-7878'),
(2, 'Trujillo', 'Ana', '1298 E Smathers St', 'Benton', 'AR', '72018', '(501) 555-7733'),
(3, 'Moreno', 'Antonio', '6925 N Parkland Ave', 'Puyallup', 'WA', '98373', '(253) 555-8332'),
(4, 'Hardy', 'Thomas', '83 d''Urberville Ln', 'Casterbridge', 'GA', '31209', '(478) 555-1139'),
(5, 'Berglund', 'Christina', '22717 E 73rd Ave', 'Dubuque', 'IA', '52004', '(319) 555-1139'),
(6, 'Moos', 'Hanna', '1778 N Bovine Ave', 'Peoria', 'IL', '61638', '(309) 555-8755'),
(7, 'Citeaux', 'Fred', '1234 Main St', 'Normal', 'IL', '61761', '(309) 555-1914'),
(8, 'Summer', 'Martin', '1877 Ete Ct', 'Frogtown', 'LA', '70563', '(337) 555-9441'),
(9, 'Lebihan', 'Laurence', '717 E Michigan Ave', 'Chicago', 'IL', '60611', '(312) 555-9441'),
(10, 'Lincoln', 'Elizabeth', '4562 Rt 78 E', 'Vancouver', 'WA', '98684', '(360) 555-2680');

Answers

Answer:

SELECT customer_last_name, customer_city, customer_zip FROM customers WHERE customer_state = 'IL' ORDER BY customer_last_name DESC;

Explanation:

Here, we are given a SCHEMA with the table name customers.

It's creation command and commands to insert values are also given.

We have to print the customer last name, city and zip code of all the customers who have their state as IL in the decreasing order of their last names.

Let us learn a few concepts first.

1. To print only a specified number of columns:

We can write the column names to be printed after the SELECT command.

2. To print results as per a condition:

We can use WHERE clause for this purpose.

3. To print in descending order:

We can use ORDER BY clause with the option DESC to fulfill the purpose.

Therefore, the answer to our problem is:

SELECT customer_last_name, customer_city, customer_zip FROM customers WHERE customer_state = 'IL' ORDER BY customer_last_name DESC;

Output of the command is also attached as screenshot in the answer area.

Any one know??please let me know

Answers

Answer:

B

Explanation:

Answer:

The answer is B.

Explanation:

Also I see your using schoology, I use it too.

Select the correct answer from each drop-down menu.
Complete the sentence listing the basic parts of a computer.
All computers have these four basic parts: an input device, a

Answers

Answer:

all computers have an input device, storage, proccesing,and output

hope it helped

Explanation:

A video game character can face one of four directions

Answers

Really
I didn’t know that:)

Which formatting option(s) can be set for conditional formatting rules?

Answers

Answer:

D

Explanation:

Any of these formatting options as well as number, border, shading, and font formatting can be set.

Which of the following is NOT true?

a. The process provides the macro steps
b. Methodologies provide micro steps that never transcends the macro steps.
c. Methodologies provide micro steps that sometimes may transcend the macro steps.
d. A methodology is a prescribed set of steps to accomplish a task.

Answers

Answer:

b. Methodologies provide micro-steps that never transcends the macro steps.

Explanation:

Methodologies are a series of methods, processes, or steps in completing or executing a project. Projects can be divided into macro steps or processes and these macro steps can be divided into several micro-steps. This means that, in methodology, micro-steps always transcends to a macro-step.

what is the operating system on an IBM computer?​

Answers

Answer:

OS/VS2 and MVS

Explanation:

IBM OS/2, is full International Business Machines Operating System/2, an operating system introduced in 1987 IBM and the Microsoft Corporation to operate the second-generation line of IBM personal computers, the PS/2 (Personal System/2.) hope this helps! Pleas mark me as brainliest! Thank you! :))

Generally speaking, digital marketing targets any digital device and uses it to advertise and sell a(n) _____.


religion

product or service

governmental policy

idea

Answers

Answer:

product or service

Explanation:

Digital marketing is a type of marketing that uses the internet and digital media for the promotional purposes. It is a new form of marketing where the products are not physically present. The products and services are digitally advertised and are used for the popularity and promotion. Internet and digital space are involved in the promotion. Social media, mobile applications and websites are used for the purpose.

Answer:

A.) Product or service

Explanation:

Digital marketing is the practice of promoting products or services through digital channels, such as websites, search engines, social media, email, and mobile apps. The goal of digital marketing is to reach and engage with potential customers and ultimately to drive sales of a product or service. It can target any digital device that can access the internet, and it can use a variety of techniques such as search engine optimization, pay-per-click advertising, social media marketing, content marketing, and email marketing to achieve its objectives.

Pointers are addresses and have a numerical value. You can print out the value of a pointer as cout << (unsigned)(p). Write a program to compare p, p + 1, q, and q + 1, where p is an int* and q is a double*. Explain the results.

Answers

Answer:

#include <iostream>

using namespace std;

int main() {

  int i = 2;

  double j = 3;

 

  int *p = &i;

  double *q = &j;

 

  cout << "p = " << p << ", p+1 = " << p+1 << endl;

  cout << "q = " << q << ", q+1 = " << q+1 << endl;

  return 0;

}

Explanation:

In C++, pointers are variables or data types that hold the location of another variable in memory. It is denoted by asterisks in between the data type and pointer name during declaration.

The C++ source code above defines two pointers, "p" which is an integer pointer and "q", a double. The reference of the variables i and j are assigned to p and q respectively and the out of the pointers are the location of the i and j values in memory.

Thale cress is a plant that is genetically engineered with genes that break down toxic materials. Which type of organism is described?
recombinant
transgenic
transverse
restriction

Answers

Answer: Transgenic

Explanation:

Since the thale cress is a plant that is genetically engineered with genes that break down toxic materials, the type of organism that is described here is the transgenic plant.

Transgene is when a gene is naturally transferred or transferred from an organism to another organism by genetic engineering method.

Therefore, the correct option is transgenic.

Answer:

The answer is B (transgenic)

Explanation:

what types of problems if no antivirus is not installed

Answers

If you meant what would happen if you don't install an antivirus software, trust me, you don't want to know. I'd definitely recommend either Webroot (I believe that's how it's spelled) or Mcafee.

What is the shortcut key to “Left Align” the selected text

Answers

Explanation:

The shortcut key to"left align" the selected text is Control+L

heyyy y’all hope your day was great
Other Questions
All of the following identify a motive of European states in establishing colonies EXCEPT aright past wrongs committed against weaker nations. bachieve personal or national glory. cexpanding the power of their nation and ruler. dsearch for riches such as gold and to obtain other natural resources. epromote Christianity. Hoover's Prodigal Children: Hungry Times on Mean Streets Can you combine an apple and an orange to make a cross hybrid fruit? (Not sure this classify as biology) !!!!PLEASE HELP!!!! WILL GIVE BRAINLIEST!!!!Find the error and explain why it is wrong(please phrase answer in the form of this sentence: step _____ is incorrect because ______. Instead, you should ____________. Does anyone like billy bob tanley How do you ask how frequently someone does something?1. Cundo frecuencia?2. Cmo frecuencia?3. Con qu frecuencia?4. Cmo que frecuencia? The period in Texas history between the fall of the Alamo and the victory of San Jacinto is called __________.a.The Revenge of Santa Annab.The Secret Treaty of Velascoc.The Runaway Scraped.The Retreat of Sam Houston Mutated DNA sequences that can be passed from parent to offspring -A.occur in gametic cellsB.occur in somatic cellsC.only occur if the parent is exposed to harmful substancesD.are rejected during meiosis PLSHELP AS FAST AS U CAN SOLVE 3/4a + 5/6=5a-125/3 please answer all!! 7th grade math. After learning about effective communication, how might you communicate differently with others?A. You will interrupt more frequently to state your opinion.B. You will distract yourself with your cell phone when others are speaking.C. You will listen carefully, ask questions at the appropriate time, and provide feedback to thespeakerD. You will let the speaker direct the conversation and only interact with the person or the groupwhen they ask you a question directly. how does eating contribute to the flow of energy in a ecosystem Need to fill in the charts with the r , plz help needed immediately!!! WILL MARK BRAINLIEST HURRY!!pWhich is a primary source?A) a textbook from the 21st centuryB)an original painting from the 17th centuryC) a journal article written by an expertD)an encyclopedia entry written by a scientist !!!!PLEASE HelP!!!!A farmer has decided to dig an artesian well into the unconfined aquifer below his crops. However, water does not fill his well. Why isn't his well working?A. An artesian well needs the pressure of a confined aquifer B. An artesian well must be near a lakeC. An artesian well must be near the site of groundwater infiltration D. An artesian well only works in areas that are going through a drought Findhowmany times21+9 goesinto 1312 She did not study; therefore, she failed the test.Is this a Compound-Complex sentence?If not what kind? Listen to the commands and match them to the restaurant staff members they are most likely to be addressed to. Drag the items on the left to the correct location on the right. Correct Audio 1: Correct Audio 2: Correct Audio 3: Correct Audio 4: la anfitriona el lavaplatos el chef el ayudante del camarero URGENT PLZ ANSWERSelect the correct answer from each drop-down menu.A character that changes conslderably over the course ofa story is ____A ____ character shows very little or no change over the course of a story.Round DynamicFlatStatic Hello everyone, I'm feeling a bit generous today so here yall go.2x2= 4x4x4=2+5=(14 points will be given.)First one to solve all three gets 5 star rating, heart, brainliest.Second to solve all three gets a 5 star rating, heart, and well points for answering ofc just as the first.