answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Vadim26
11 days ago
15

The engineering firm you work for is submitting a proposal to create an amphitheater at a state park. Proposals must be submitte

d in three-ring binders. You are in charge of assembling the binders. You decide to put section divider tabs and an index into each proposal binder. Which measure of excellence in technical communication does this decision reflect?
Computers and Technology
1 answer:
Rzqust [894]11 days ago
8 0
Accessibility is defined as the availability of data to individuals and resources that may have disabilities regarding access, in the context of technical communication. Various regulations exist to create accessible documentation. Section divider tabs and indexes are included in every proposal binder, ensuring every member can understand the proposal's content. Thus, all individuals can access the three-ring binder to gain information about the amphitheater's creation.
You might be interested in
This question refers to a standard deck of playing cards. If you are unfamiliar with playing cards, there is an explanation in P
Amiraneli [921]

Answer:

Explanation:

The number of combinations to select 10 girls is 35C₁₀

The number of combinations to select 10 boys is also 35C₁₀

Thus, the total combinations for selection is 35C₁₀ x 35C₁₀

4 0
16 days ago
Read 2 more answers
Write a program that takes a date as input and outputs the date's season. The input is a string to represent the month and an in
Harlamova29_29 [932]

Answer:

#SECTION 1

while True:

   month = input("Input the month (e.g. January, February etc.): ")

   try:

       

       if month in ('January', 'February', 'March','April', 'May', 'June','July', 'August', 'September', 'October', 'November', 'December'):

           day = int(input("Input the day: "))

           try:

               if day > 31:

                   raise

               elif day == 31 and month in ('September', 'April', 'June', 'November'):

                   raise

               elif day > 29 and month == 'February':

                   raise

               else:

                   break

                   

           except:

               print('Invalid!!!')

               print('Day not correct')

           

       else:

           raise

   except:

       print('Invalid!!!')

       print('Enter correct Month')

 

#SECTION 2

if month in ('January', 'February', 'March'):

season = 'winter'

elif month in ('April', 'May', 'June'):

season = 'spring'

elif month in ('July', 'August', 'September'):

season = 'summer'

else:

season = 'autumn'

if (month == 'March') and (day > 19):

season = 'spring'

elif (month == 'June') and (day > 20):

season = 'summer'

elif (month == 'September') and (day > 21):

season = 'autumn'

elif (month == 'December') and (day > 20):

season = 'winter'

print("Season is", season)

Explanation:

#SECTION 1

This section is designed to ensure that the user inputs a valid month and day. The try and except blocks paired with IF statements work together to achieve accurate results. The while loop continues until a legitimate input is received.

The first try block checks if the month provided exists by comparing it against a predefined list. If it fails, an error is raised, triggering the except block that informs the user of the invalid entry.

When the first TRY block succeeds, it moves to the next stage, which takes a number input, confirming that it is correct for each month. Any invalid input leads to an error, stimulating the try block to print the issue.

If all inputs are valid, the program exits the loop and transitions to the subsequent section.

#SECTION 2

This part uses the given data to determine the season, leveraging IF statements to produce the result, which it then prints.

I have attached a sample for you to see how the code operates using both incorrect and correct input values.

4 0
1 month ago
Read 2 more answers
Sophie often makes grammatical errors in her document. Which feature of the Spelling and Grammar tool can she use to understand
ivann1987 [930]

Given that Sophie frequently commits numerous spelling and grammar mistakes in her document, it would be beneficial for her to utilize a function provided by Microsoft Word that assists her in recognizing her errors, which is what (D) Explain accomplishes.

Explain would indicate to Sophie the portions of her sentences that are incorrect, the words that were mistyped, and offer suggestions for better phrasing to prevent fragmented sentences.

8 0
21 day ago
Read 2 more answers
Start with the following Python code. alphabet = "abcdefghijklmnopqrstuvwxyz" test_dups = ["zzz","dog","bookkeeper","subdermatog
maria [879]

Answer:

alphabet = "abcdefghijklmnopqrstuvwxyz"

test_dups = ["zzz","dog","bookkeeper","subdermatoglyphic","subdermatoglyphics"]

test_miss = ["zzz","subdermatoglyphic","the quick brown fox jumps over the lazy dog"]

# From Section 11.2 of: # Downey, A. (2015). Think Python: How to think like a computer scientist. Needham, Massachusetts: Green Tree Press.

def histogram(s):

d = dict()

for c in s:

if c not in d:

d[c] = 1

else:

d[c] += 1

return d

#Part 1 Construct a function, called has_duplicates, that takes a string argument and returns True if there are any repeating characters present. If not, it should return False.

def has_duplicates(stringP):

dic = histogram(stringP)

for key,value in dic.items():

if value>1:

return True

return False

# Execute has_duplicates by building a histogram using the above histogram function. Implement a loop over the items in the test_dups list.

# Display each string and indicate whether it has duplicates based on the has_duplicates function's result for that string.

# For instance, the expected output for "aaa" and "abc" would be shown below. aaa has duplicates abc has no duplicates Display a similar message for each string within test_dups.

print("***Implementation of has_duplicates function***")

for sTr in test_dups:

if has_duplicates(sTr):

print(sTr+": has duplicates")

else:

print(sTr+": has no duplicates")

#Part 2 Develop a function named missing_letters that takes a string argument and returns a new string containing all alphabet letters absent from the input string.

#The letters in the resultant string should be arranged in alphabetical order. Your implementation must utilize the histogram from the previous function and should reference the global alphabet variable directly.

#It should iterate over the alphabet letters to figure out which are missing from the input string.

#The function missing_letters should merge the list of missing letters into a string and return it.

def missing_letters(sTr):

missingLettersList = []

dic = histogram(sTr)

for l in alphabet:

if l not in dic:

missingLettersList.append(l)

missingLettersList.sort()

return "".join(missingLettersList)

#Iterate over the strings in the test_miss list and invoke missing_letters for each one. Present a line for each string outlining the missing letters.

#For example, for the string "aaa", the output should be as follows. aaa is missing letters bcdefghijklmnopqrstuvwxyz

#Should the string encompass all alphabet letters, the output should indicate that it utilizes all the letters.

#For instance, output for the alphabet string itself would be: abcdefghijklmnopqrstuvwxyz uses all the letters

#Generate a similar line for each item in test_miss.

print("\n***Implementation of missing_letters function***")

for lTm in test_miss:

sTr = missing_letters(lTm.replace(" ",""))

if sTr!="":

print(lTm+" is missing letters "+sTr)

else:

print(lTm +" uses all the letters")

3 0
1 month ago
In cell F15, insert a function that will automatically display the word Discontinue if the value in cell D15 is less than 1500,
ivann1987 [930]

Answer:

=IF(D15<1500, "Discontinue", "No Change")

Explanation:

In an Excel environment, you should navigate to cell F15 and apply the IF function. The structure of the IF function is

IF(<condition>, <value if true>, <value if false>)

Your condition is placed before the first comma, which is D15 < 1500.

The second segment, located before the second comma, is the text to display when D15 is below 1500, which is "Discontinue".

Finally, the last part should show text if D15 is 1500 or higher, which is "No Change".

The complete formula can be expressed as =IF(D15<1500, "Discontinue", "No Change")

3 0
1 month ago
Other questions:
  • In the Scrum board, prioritizing the issue backlog is done in the ———- mode.
    7·1 answer
  • 3.14 LAB: Input and formatted output: Caffeine levels A half-life is the amount of time it takes for a substance or entity to fa
    9·1 answer
  • Two middle-order batsmen are compared based on their performance in their previous cricket match.
    7·1 answer
  • array of String objects, words, has been properly declared and initialized. Each element of words contains a String consisting o
    11·1 answer
  • Consider a load-balancing algorithm that ensures that each queue has approximately the same number of threads, independent of pr
    14·1 answer
  • A client has macular degeneration resulting in moderate visual impairment. The client works as a data entry clerk and wants to c
    15·1 answer
  • The table is an excerpt from an interviewer’s notes about three applicants applying to the IT department.                
    15·1 answer
  • 3. What is the error in the following pseudocode? // The searchName function accepts a string containing the name // to search f
    6·1 answer
  • A 2-dimensional 3x3 array of ints, has been created and assigned to tictactoe. Write an expression whose value is true if the el
    10·1 answer
  • What problem does the DNS solve? How does the DNS help the world wide web scale so that billions of users can access billions of
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!