True or False? Jerry's company is beginning a new project, and he has been assigned to find a telecommunications tool that will improve operational efficiency. He lists the tasks that he wants the tool to be able to do. Then he does some research to find out what is available. The only thing remaining for Jerry to consider is where he can get the best deal on the technology.

Answers

Answer 1

Answer:

True

Explanation:

Answer 2

Answer:

It's false it took the assessment


Related Questions

In a particular spreadsheet, the data in each cell is password protected. When cells are selected, the formula is visible
in the formula bar. Which is true?
O The cells are locked and hidden.
The cells are locked and unhidden.
The cells are unlocked and hidden.
O The cells are unlocked and unhidden.

Answers

Answer:

Explanation:

Locked and hidden

Lilly is new to her company. Give Lilly some advice about effective communication in an e-mail. Include a subject line.

Answers

Effective communication is an important aspect throughout all aspects of life, but it is especially important when in a new job. This is because your communication, or even lack of communication could very likely change you or a co-workers life. For example, let's say a co-worker needed you to do something, and you couldn't do it, but didn't tell them, then they could get into trouble and potentially fired for not doing the work that they entrusted to you. In some cases, they'll blame you, and you can get fired.

The following code will not compile. Which of the options below would allow the code to compile and run as intended?

if (x >= -10 and <= 10):
print("In range")

Answers

Answer:

Follows are the code to this question:

x=int(input())#use input method with int that takes integer value from user-end  

if (x >= -10 and x<=10):#defining if block that checks x in between -10 to 10

   print("In range")#print message

Output:

6

In range

Explanation:

In this code, the choices were missing that's why the solution to this question can be defined as follows:

In this, x variable using the input method with the int, which takes integer value from the user-end. In the next step, the if block is used, that checks x value lies on between the -10 to 10, to check this condition it used the and logical operator, that run the code when both conditions are true, and at last, it prints the message "In range".

Explain why configuration is essential in planning a project.

Answers

Answer:

Configuration management system helps in managing versioning of project management plans, documents and project components. This system may include Change Control System. Because the major cause of taking a new version for a component, document or plan in a project is a change

12) --- In-Excel, Columns-are-labelled as
a) +A, B, C, etc
b)+1,2,3.etc
C-A1, A2, etc. 1
d)+ $A$1, $A$2. etc. I​

Answers

Answer:

C-A1, A2, etc.

You should see the following code in your programming
import simplegui
def draw_handler(canvas);
# your code goes here
frame = simplegui.create_frame('Testing', 600, 600)
frame.set_canvas_background("black")
frame.set_draw_handler(draw handler)
rame.start()

Answers

Answer:

import simplegui

import random

def draw_handler(canvas):

for x in range(1000):

colorList = ["Yellow", "Red", "Purple", "White", "Green", "Blue", "Pink", "Orange"]

c = random.choice(colorList)

x = random.randint(1,600)

y = random.randint(1,600)

canvas.draw_point([x, y], c)

frame = simplegui.create_frame('Testing', 600, 600)

frame.set_canvas_background("Black")

frame.set_draw_handler(draw_handler)

frame.start()

Explanation:

I used a for loop, setting my range to 1000 which is how you create exactly 1000 points. Next, I defined my color array, my x randint value, and my y randint value. I set both the x and y randint values to 1 - 600 since the frame is 600x600. The rest is pretty self explanatory.

can someone help me on codehs. its 7.1.5: initials. here is what your supposed to do

Write a function called initials that will take a first and last name and return their initials using the following format:

initials("Tracy", "Turtle")
# => "T.T."
initials("Peter", "Parker")
# => "P.P."

Answers

Answer:

first = input( "What is your first name? " )

last = input( "What is your last name? " )

def initials():

   print ("Your initials are: "+first[0]+"."+last[0]+".")

initials ()

Explanation:

it works when I test but it won't submit. Hope this helps

Following are the program to prints the initials of the input value.  

Program Explanation:

Defining a class Main.Inside the class, a method "initials" is declared that takes two string variables "first, last" in the parameter.Inside the method, a return keyword is defined that uses the charAt method that returns the first character value of the parameters. In the next step, the main method is defined.Inside the main method, a print method is declared that calls initials method that accepts value in the parameter and prints its value.

Program:

public class Main //defining a class Main

{

   static String initials(String first, String last)//defining a String method initials that input two variables in the parameter

   {

       return first.charAt(0)+"."+last.charAt(0)+".";//using charAt method that returns first character value

   }

 public static void main(String[] as) //defining main method

 {

   System.out.println(initials("Tracy", "Turtle"));//using print method that calls initials method that accepts value in parameter

   System.out.println(initials("Peter", "Parker"));//using print method that calls initials method that accepts value in parameter

 }

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/2810164

Steven wrote an algorithm for his coding class that explains how he puts on his shoes. Which is the correct sequence of steps that Steven used?

Place foot in shoe, untie laces, tie laces
Tie laces, place foot in shoe, untie laces
Untie laces, place foot in shoe, tie laces
Untie laces, tie laces, place foot in shoe

Answers

untie laces ,place foot in shoe, tie laces maybe?

How many comparisons will be done to find 8 in this list using a linear search?

2, 4, 6, 8, 10, 12

Answers

Answer:

I think 4 comparisons

RIGHT ANSWER GETS BRAINLEST

Complete the code.

You are writing a loop to allow the user to enter data until they enter a "Q". You want to allow them to enter an upper- or lowercase "Q".

if yourTeam.
() == "q":
break


The options they give are:
Upper
Compare
lower

Answers

Answer:

sir i beleive lower is your answer, i know it isnt upper.

Explanation:

:D

Answer:

lower

Explanation:

i just did the quiz and got it right :)

An else statement will be executed in what situation?
the if statement is true
the if statement is false
there is a syntax error
the elif statement is executed

Answers

Answer:

The second one.

Explanation:

An `else` statement is like the alternative route for the code. I like to put it in my own words like, "If the user puts a number insted of a letter tell them they did a good job! Else(Otherwise) Tell them they need to try again.

I hope I helped!

Answer:

b) the if statement is false

Explanation:

The else statement is performed if the if statement's condition is not fulfilled. An else statement executes if an if statement is false. The else statement gives the code a backup if the if statement fails. If the if statement fails, this might propose a different course of action.

An if statement may test whether an integer is even or odd by dividing it by two. This tells the computer whether the number is even or odd. If the input number is divisible by 2, the software will print "the number is even" if it is the computer that determines whether the number is even or odd. If the input number is divisible by 2, the software will print "the number is even" if it is. The else statement may show that the "number is odd" if the integer cannot be divided by two.

(I WILL GIVE BRAINLIEST) Which steps will delete an appointment?

left-clicking on the appointment and hitting delete on the keyboard
double-clicking on the appointment and hitting delete on the keyboard
right-clicking the Calendar folder and hitting delete on the keyboard
clicking the Calendar folder and hitting delete on the keyboard

Answers

Answer:

right clicking should be your answer

Other Questions
A point hasono lengthno widthno thicknessall of the above sin A = ?[tex]a.\frac{3}{4} \\\\b.\frac{5}{4} \\\\c.\frac{3}{5} \\\\\ d.\frac{4}{5}[/tex] The Aztec calendar was greatly influenced by the astronomy-based calendar of the.Maya.B.IncaC.Olmec. DSpanish The cardiovascular system transports material for the _____.endocrine systemnervous systemdigestive systemexcretory systemrespiratory system Please help Im having trouble solving this Subject is ScienceWhat does absolute age mean? (make sure to fully explain the concept of absolute age) Explain how the surrounding water (the Atlantic Ocean and the Long Island Sound) affects the climate of Long Island. Make sure to discuss the specific property(s) that is involved. GIVING BRAINLIEST TO FIRST RIGHT ANSWER!!!!!! What theme might the author be trying to convey by showing us that Leonards friends did not forget his birthday, even though he thought they did? How can the United States create anenviornment that will include all immigrants andkeep the new industrial economy moving In soccer, players kick a soccer ballacross a flat field. At practice one day,three soccer balls that have the samemass were rolling across the field. Theywere each kicked by a soccer player,but not from the same direction. Eachsoccer ball changed speed as a result ofbeing kicked. Use the information inthe diagram to answer. Which soccerball(s) experienced the strongest forcewhen it was kicked? How doyouknow? Arnoldo is a botanist studying inheritance in flowers. When he crosses pure breeding red carnations with pure breeding white carnations, the offspring in the F1 generation have pink flowers. In the F2 generation, someflowers are red, some flowers are white, and some flowers are pink When he crosses blue poppies with yellow poppies, all the offspring in the Fgeneration have both blue and yellow petals In the F2 generation, somehave only blue petals, some have only yellow petals and some have both yellow and blue petalsWhich of the following correctly identifies the inheritance patterns Arnoldo is observing?Flower color in the poppies is polygenic, while flower color in the carnations is controlled by multiple alleles Dominic has more interest in updating his status on social networks than in calling people or texting. He wants to be able to post about what he is doing every day, along with high-quality photographs and links to the songs he is listening to. Dominic also gets lost on the road pretty easily, so he needs something with a reliable GPS. He will likely carry his phone in a small carrying case that he will buy as an accessory. Which phone should Dominic get? In one paragraph, explain which is the best option for him and why. Use proper spelling and grammar. Add the following Linear Expressions.(-6y - 3) + 5 (3+2.5y) What is the governingforce in the solar systemwhen it comes tomovement?A. InertiaB. GravityC. SizeD. Energy What is the distance from 0 to point g on the number line Find the indicated measurement for the pair of similar figures. The table shows index fossils.A 4 row table. Row 1, CENOZOIC ERA. It is split into Quaternary Period, Pecten gibbus, and Tertiary Period, Calyptraphorus velatus. Row 2, MESOZOIC ERA. It is divided into Cretaceous Period, Scaphites hippocrepis, Jurassic Period, Perisphinctes tiziani, and Triassic Period, Trophites subbullatus. Row 3, PALEOZOIC ERA. It is divided into Permian Period, Leptodus americanus, Pennsylvanian Period, Dictyoclostus americanus, Mississippian Period, Cactocrinus multibrachiatus, Devonian Period, Mucrospirifer mucronatus, Silurian Period, Cystiphyllum niagarense, Ordovician Period, Bathyurus extans, and Cambrian Period, Paradoxides pinus. Row 4, PRECAMBRIAN, has no additional information. Which conclusion about Paradoxides pinus is supported by the information in the table?Life forms existed during the Cambrian period.Similar fossil species formed after the Devonian period.This fossil species first appeared during the Cenozoic era.Different life forms were surviving during Precambrian time. (x+a)^2-(x-b)^2+x^2+(a-b)x-ab by (a+b) What three qualifications must a territory meet in order to be considered a state? what are traits that most religions share in common