IT Support professionals measure success through;
Using the SWOT analysis.Customer satisfaction.Resolution time.Response time.How do One measure success in information technology?IT success is known to be one that can be achieved by excelling in a lot of aspects such as:
Operational excellence.Delivering new functionality. keeping costs in line, etc.By using the four method above, one can know if IT is succeeding or not.
Learn more about success from
https://brainly.com/question/24553900
10) ________ objects control the flow of the application. A) Boundary B) Utility C) Control D) All of the above
There are different kinds of applications. Control objects control the flow of the application.
What works the flow of control in a program?In computer, control flow or flow of control is known to be a type of an order function calls, instructions, and statements.
They are known to be used in the execution or in an evaluation when a specific program is running. Note that a lot of programming languages have the control flow statements, that helps to know the section of code is run in a program at any given time.
Learn more about application from
https://brainly.com/question/23275071
Web résumés allow you to include extra graphics and images that you would not include in a traditional résumé. Please select the best answer from the choices provided T F.
A web resume is far better than a traditional resume because it can carry so much data about the person, and it includes images also. This statement is true.
What is a web resume?A web resume is termed as a resume that is read by a computer program that summarizes the information of each employee.
Web resume has the data such as their parent name, education, skills, job experience, hobbies, languages, and so on.
Thus, the photo of the document about the project or internship that has been done in the past can be given on the web resume by uploading the certificate on the computer system along with the resume.
For example, in companies like Linkedin, apna, and so on there are many companies that ask about the person before creating an account.
More about the web resume link is given below.
brainly.com/question/862477
Answer:
true
Explanation:
Data becomes _____ when it is presented in a context so that it can answer a question or support decision makin
Data becomes Moderate when it is presented in a context so that it can answer a question or support decision making.
What Does Data Mean?Data when interpreted in the context of databases, it is known to be the full single items or things that are known to be stored in a database.
They can come alone as individually or as a set. Data in a database is said to be often stored in database tables, that helps to organized into columns and also dictate the data types that should be stored in it .
Learn more about data from
https://brainly.com/question/179886
What element allows text to be displayed in italics, which means the words are slanted to the right?
a
The < crooked > element
b
The < italic > element
c
The < em > element
d
The < slant > element
Answer:
the answer is the italic element
What two tabs does Outlook have that PowerPoint does not? View and Send/Receive Folder and Home Folder and Home Send/Receive and Folder
The main Outlook menu has a ribbon tab with default commands. File, Home, Send/Receive, Folder, and View are commands on the main ribbon tab. The Backstage view is where you can see information and options pertaining to the user account and settings.
Answer: view and send/recieve
Explanation:
What does a black box represent in the system input/output model?.
Answer:
es un elemento que se estudia desde el punto de vista de las entradas que recibe y las salidas o respuestas que produce, sin tener en cuenta su funcionamiento interno.
Explanation:
Please help me!!!!!!!!!!! I really need help
The answer is a variable
Desktop computers have a(n) ________ unit, located within the system unit, that plugs into a standard wall outlet, converts AC to DC, and provides the power to drive all the system unit components.
Desktop computers have a power supply unit (PSU) that is located within the system unit and it provides the electrical power.
What is a desktop computer?A desktop computer can be defined as an electronic device that is designed and developed to receive data in its raw form as an input and processes these data into an output (information) that could be used by an end user.
Generally, desktop computers are fitted with a power supply unit (PSU) that is located within the system unit. Also, it plugs into a standard wall outlet (socket), converts alternating current (AC) to direct current (DC), and provides the electrical power that is required to drive all the system unit components.
Read more on computer here: brainly.com/question/959479
Should a student have to redo work even though it was the teacher's fault for losing the assignment(s)?
My biology teacher lost TWO of my assignments. He KNOWS that I gave the assignments to him. We both came to a conclusion that either he had misplaced it or it was stolen.
Answer:
i think that the student should NOT have to redo work, especially if it was the teacher's fault for losing the assignment(s).
I hope you get credit for your work tho, and the teacher is reasonable and understanding
Explanation:
In a ________ system configuration, separate information systems are designed and managed by each foreign unit.
Answer:
In a decentralized system configuration, separate information systems are designed and managed by each foreign unit.
Explanation:
hopes this help (:
5. 16 LAB: Brute force equation solver
Numerous engineering and scientific applications require finding solutions to a set of equations. Ex: 8x + 7y = 38 and 3x - 5y = -1 have a solution x = 3, y = 2. Given integer coefficients of two linear equations with variables x and y, use brute force to find an integer solution for x and y in the range -10 to 10.
How do I write this in python?
Use the knowledge of computational language in python to write a code that force to find an integer solution for x and y .
How to find the solution of an equation in python?To make it simpler the code is described as:
def brute_force_two_equations(first_values, second_values,
max_range=10, min_range=-10):
for x in range(-10, 10, 1):
for y in range(-10, 10, 1):
if a * x + b * y == c and d * x + e * y == f:
print(x, y)
else:
print('No solution')
def equation(const1, const2, x, y):
return const1 * x + const2 * y
def get_three_integers():
inputs = []
for i in range(0, 3):
inputs.append(int(input("Please enter a value: ")))
return inputs
if __name__ == "__main__":
print("== First Equation ==")
first_equation_values = get_three_integers()
print("== Second Equation ==")
second_equation_values = get_three_integers()
solution = brute_force_two_equations(first_equation_values,
second_equation_values)
if solution:
print(f"(x, y) {solution}")
else:
print("No Solution found")
See more about python atbrainly.com/question/22841107
what does computer graphics mean?
Answer:
Computer graphics deals with generating images with the aid of computers
Explanation:
Pauline has a well-established app with a large user base. Now she needs new users who complete valuable actions within the app. What phase does this fall under?
Answer:
Maturity because if you want new users who will complete [valuable] actions they need to be [Mature].
Explanation:
write the algorithms for the problem How to post a letter ? you can put pictures for the steps
❖ Step 1: Start
❖ Step 2: Write a letter
❖ Step 3: Put in envelope
❖ Step 4: Paste stamp
❖ Step 5: Put it in the letter box
❖ Step 6: Stop
[tex]\frak{\fcolorbox{black}{pink}{Black Pink in your area$~$}}[/tex] ~←(>▽<)ノ
how does computer science help in dance
Do not troll, I will be writing you up.
PLEASE HELP! The variable initials is to be assigned a string consisting of the first letter of the string firstName followed by the first letter of the string lastName. Which of the following assigns the correct string to initials ?
Answer:
a
Explanation:
Prefix function will grab length character(s) from a string while concat function will join 2 strings into 1.
For initials, use prefix on firstName and lastName to grab the first character. Then join the two together using concat to give the initials:
So the answer is a.
The correct choice to the given function is "initials <--- concat (prefix (FirstName, 1), prefix (lastName, 1))", and its explanation as follows:
Prefix function:To assign the correct string, we must examine the "cancat ()" and "prefix ()" methods in this problem.
The string consists of the first letter of the string "firstName" followed by the first letter of the string "lastName", is to be set to the variable initials.
Please find the attached file for the complete solution.
Find out more bout the prefix function here:
brainly.com/question/14912735
Chris is working with other employees on a worksheet. the other employees have made comments, but they are not visible.
what should chris do to ensure that he can see others’ comments?
a. select show all comments on the review tab.
b. select show no comments on the review tab.
c. select add comment on the review tab.
d select track changes on the review tab.
Answer:
a. select show all comments on the review tab
Explanation:
Please mark me brainliest if correct
Answer:
A
Explanation:
Two ways of calculating average returns are ______ and ______. Multiple select question. the arithmetic average the progressive average the geometric average the common average
Answer:
"Geometric Average Return Example. Jennifer has invested $5,000 into a money market that earns 10% in year one, 6% in year two, and 2% in year three. If you were to calculate this using the arithmetic mean return, you would add the rates together and divide them by three, giving you an average of 6%."
Explanation:
How do you define a physics material?
A. As an object in the Hierarchy panel
B. All of these will work
C. As a component on a sprite
D. As an Asset that can be linked to a collider on an object
Answer:
as an object in the hierachy panel
How have you improved the technology function to provide the right services at the right price and right level of quality?
Website where customers can ask check the ,services and products, Using e-mail to improve customer service and respond to specific needs and More advanced data-gathering techniques, such as customer relationship management software.
How can technology help in customer retention?Deals can be sent via mobile. Customers would profit from promotions and coupons supplied to their mobile devices.
This behavior is growing more sophisticated and focused. You can send promos on products or services you know a consumer enjoys based on their purchase history.
Thus, Website, E-mail and software can improve the service quality.
For further details about technology, click here:
https://brainly.com/question/16877197
#SPJ4
How do you answer this ?
Answer:
Just put True or false for your answer
Explanation:
Use a Dictionary
Give 3 reasons why it is believed that smart phones precent us from communicating face to face.give three reasons why it is believed that smartphones prevent us from communicating face to face
Answer:
yes
Explanation:
because the people will be lazy to go and talk to that person instead They will call each other and discuss
You make me the happiest person on earth
i feel joy when i see your face
when i am depressed all i have to do is to think about you and it puts me in a good mood.
do i need to add more to thut
Answer:
Fixed
Explanation:
I feel joy when I see your face
When I'm depressed all I have to do is to think about you, and it puts me in a good mood.
What is a critical consideration on using cloud-based file sharing and storage applications.
Answer:
Determine if the software or service is authorized
Explanation:
:)
Which of the following best describes your sequence of actions when developing a web page?
Selected:a. Save the HTML file, Edit the HTML file, review the results, load the HTML file into the web browserThis answer is incorrect.
b. Edit the HTML file, save the HTML file, load the HTML file into the web browser, review the results
c. Review the results, save the HTML file, load the HTML file into the web browser, edit the HTML file
d. Load the HTML file into the web browser, edit the HTML file, review the results, save the HTML file
Answer:
I think D
Explanation:
Answer:
B
Explanation:
Saving it, then editing it wouldn't load the new changes
but editing it than saving it, would load the new Changes
if you bet and another person bets do you get the money you bet and the money the other person bets?
example : say you bet on a computer game and your sister bets $5 and you bet $10 that you will win. Do you get the $10 and the $5 if you win from your sister or just the $5?
Answer:
I believe you would get both because since you both did a bet and you won, that would mean you should automatically get both of what yall put down.
Explanation:
I think that's what should happen but I'm not sure though.
data in ai uses what >
Answer:
Explanation:
artificial intelligence describes the ability of computers to act like humans
This is an example of what type of formula?
=(D1+D17)
The type of formula that is represented by the given example =(D1+D17) in excel is known as; The SUM Formula function
What are functions in excel?There are different ypes of formula functions in excel such as;
SUMCOUNTCOUNTAIFTRIMMAX & MINNow, in this question, the formula we are given is =(D1+D17) and the example it represents is the SUM formula function.
Read more about Excel Functions at; https://brainly.com/question/14042837
75 POINTS!!
PLS HURRY
Choose the term that best completes each sentence.
___are intentional attacks on a system with the intent to do harm.
a. cyberthreats
b. malware
___ may be intentional like a virus or unintentional like a fire or human error.
a. cyberthreats
b. malware
Malwares are intentional attacks on a system with the intent to do harm.
Cyberthreats may be intentional like a virus or unintentional like a fire or human error
Hope that helps!
What is a critical consideration on using cloud-based file sharing and storage applications.
Answer:
a critical consideration on using cloud-based file sharing and storage applications on your Government-furnished equipment (GFE)? Determine if the software or service is authorized. A coworker wants to send you a sensitive document to review while you are at lunch and you only have your personal tablet.
Pls mark me as brainlist
This is a critical consideration on using cloud-based file sharing and storage applications to determine that Determine the software program or provider is authorized.
What are the Indicators ?It is of a capability insider chance may be damaged into 4 categories--signs of: recruitment, facts collection, facts transmittal and preferred suspicious behavior.
Determine if the software program or provider is authorized. A coworker desires to ship you a touchy record to study even as you're at lunch and also you most effectively have your private tablet.
Read more about the cloud-based file:
https://brainly.com/question/24228581
#SPJ2