please help me!!!!!! all of the following may be benefits of a technical or vocational college except

Answers

Answer 1

Answer:

im not sure

Explanation: is their supposed to be a picture or something?

Answer 2

Answer: better scholarship opportunities

Explanation:


Related Questions

Acrostics, acronyms, and rhymes are a few examples of __________. A. a visual strategy B. the misinformation effect C. memory reconstruction D. a mnemonic device Please select the best answer from the choices provided A B C D

Answers

Answer:

The answer is D) A mnemonic device

Answer:

D

Explanation:

I hope this helps! Sorry if it is wrong ;-;

Which of the following would be appropriate to create using the CMYK color model?

Select all that apply.

a printed takeout menu a printed takeout menu , ,

a photography blog a photography blog , ,

a tri-fold brochure a tri-fold brochure , ,

a mobile app logo

Answers

Answer:

B, and C

Explanation:

they look like the only two answers that make sence

VPN Tunneling uses _______________ to transmit data from a lower data link layer within a higher level network layer protocol

Answers

Answer:

Encapsulation process

Explanation:

The answer to this question is the encapsulation process.

The Encapsulation can be explained as a process whereby a lower-layer protocol gets data from a higher-layer protocol and then it would put the data into the data portion of its frame. Data to be transmitted to a new location has to pass through each layer. As it gets to the layer then information is added to data.

Encapsulation at different levels puts different functionalities and also features such as security and reliability to data transmission.

Who wants to play nitro type with me. My user is thievesGuildcuu

Answers

Answer:

I can

Explanation:

Answer:

Sure.

My user Name is: Queen Void.

A computer has _____IP address(es).

a) many
b) one

Answers

Answer:

one................

Answer:

B) one

Explanation:

PLzzzzzz help me!! I will mark brainiest to the one who answers it right!!
Answer it quickly!!

Write a pseudo code for an algorithm to center a title in a word processor.

Answers

Answer: abstract algebra

Explanation: start with the algorithm you are using, and phrase it using words that are easily transcribed into computer instructions.

Indent when you are enclosing instructions within a loop or a conditional clause. ...

Avoid words associated with a certain kind of computer language.

Answer:

(Answers may vary.)

Open the document using word processing software.

In the document, select the title that you want to center. The selected word is highlighted.

On the Menu bar, select the Format tab.

In the Format menu, select Paragraph.

The Paragraph dialog box opens with two sub tabs: Indents and Spacing, and Page and Line Breaks. The first tab is selected by default.

Adjust the indentation for the left and right side. Ensure that both sides are equal.

Preview the change at the bottom of the dialog box.

Click OK if correct, otherwise click Cancel to undo changes.

If you clicked OK, the title is now centered.

If you clicked Cancel, the title will remain as it is.

Explanation:

I took the unit activity

The 1950s brought the television and interest in using television as a teaching device. In 1952, the _____________________________ decided to set aside 242 educational channels.

Answers

Answer:

Federal Communications Commission

Explanation:

The 1950s brought the television and interest in using television as a teaching device. In 1952, the Federal Communications Commission decided to set aside 242 educational channels.

The Federal Communication Commission were in charge of determining which type of programs were to be aired based in different factors such as current state of the nation etc.

This is my paragraph

. The type of color is ude in this code line is ..............................

Answers

What is the paragraph even supposed to be about

How would you reply to an email message you've received that has multiple recipients, all of whom you would like to see your reply?

Answers

Answer:

depends on the app. if it's in google you can hit the reply all button and that will send the reply to all people or you can copy the email addresses from the original email into a new email

Answer:

the answer is c :D

Explanation:

Write a program to display the following diamond-shape like pattern based on the height given by the user. Assume that the user will always enter a positive odd number.

Answers

Answer:

try:

   size = int(input("Enter a number: "))

except ValueError:

   print("must be a number")

if size==0:

   print("number must be greater than zero.")

elif size%2==0:

   print("number must be odd.")

   

else:

   obj = '#'

   mid_size = round(size/2)

   s = size - mid_size

   count = 2

   counts = 1

   for i in range(size+1):

       if i<=mid_size:

           print(" " *(size - i) + (obj+" ") * i)

       elif i>mid_size:

           print(" " * (s + counts) + (obj + " ") * (i - count))

           count += 2

           counts += 1

Explanation:

The python source code uses a try and except statement to check for value error and print a diamond shape of the object "#" determined by the input number.

Which term describes a visual object such as a picture a table or text box

Answers

the correct answer is “caption”

Answer: caption

Explanation:

Edge 2020

Write a program that repeatedly takes integers from the user as long as he
wants to input. The program then, shows a summary of the inputs. The summary
should include: 1) minimum of the inputs, 2) maximum of the inputs, 3) total Even
inputs , 4) total Odd inputs, 5) Average of Even numbers, 6) Average of Odd
numbers, and 7) the total Average

Answers

Answer:

Written in Python:

evens = 0

odds = 0

oddtotal = 0

eventotal = 0

total = 0

mylst = []

tryag = "Y"

while tryag == "Y" or tryag == "y":

     num = int(input("Input: "))

     mylst.append(num)

     tryag = input("Another Input (Y/y): ")

mylst.sort()

print("Minimum: "+str(mylst[0]))

print("Maximum: "+str(mylst[-1]))

for i in mylst:

     total = total + i

     if i%2 == 0:

           evens = evens + 1

           eventotal = eventotal + i

     else:

           odds = odds + 1

           oddtotal = oddtotal + i

print("Evens: "+str(evens))

print("Odds: "+str(odds))

print("Even Average: "+str(eventotal/evens))

print("Odd Average: "+str(oddtotal/odds))

print("Total Average: "+str(total/(evens+odds)))

Explanation:

The following lines initializes useful variables to 0

evens = 0

odds = 0

oddtotal = 0

eventotal = 0

total = 0

This declares an empty list

mylst = []

tryag = "Y"

This is repeated until user stops the loop by entering strings other than y or Y

while tryag == "Y" or tryag == "y":

This prompts user for input

     num = int(input("Input: "))

User input is appended to the list

     mylst.append(num)

This prompts user to try again the loop

     tryag = input("Another Input (Y/y): ")

This sorts the list from small to large

mylst.sort()

This prints 1. The minimum

print("Minimum: "+str(mylst[0]))

This prints 2. The maximum

print("Maximum: "+str(mylst[-1]))

The following iterates through the list

for i in mylst:

This calculates the total

     total = total + i

This checks for even entry

     if i%2 == 0:

This counts the number of even entries

           evens = evens + 1

This sums the even entries

           eventotal = eventotal + i

     else:

This counts the number of odd entries

           odds = odds + 1

This sums the odd entries

           oddtotal = oddtotal + i

This prints 3. Sum of Even entries

print("Evens: "+str(evens))

This prints 4. Sum of Odd entries

print("Odds: "+str(odds))

This prints 5. Average of Even entries

print("Even Average: "+str(eventotal/evens))

This prints 6. Average of Odd entries

print("Odd Average: "+str(oddtotal/odds))

This prints 7. Total Average

print("Total Average: "+str(total/(evens+odds)))

Using range(1,101), make two list, one containing all even numbers and other containing all odd numbers. How can I do this on Python

Answers

Answer:

even = []

odd = []

for i in range(1,101):

if i % 2 == 0:

even.append(i)

else:

odd.append(i)

Using range(1,101), the list of even and odd number can be done in python as follows;

odd_numbers = []

even_numbers = []

for i in range(1, 101):

  if i%2 == 0:

     even_numbers.append(i)

  else:

     odd_numbers.append(i)

print(even_numbers)

print(odd_numbers)

The variable odd_numbers is initialise with an empty list

The variable even_numbers is initialise with an empty list.

Then we loop through the range 1 to 101 as required.

If the looped numbers is divided by 2 without a remainder then the number is appended to the empty list even_numbers.

Else if it has a remainder, the looped number are appended to the empty list, odd_numbers.

Then we print the even_numbers and odd_numbers.

learn more about python here; https://brainly.com/question/14157737?referrer=searchResults

Write a multi-way if statement that compares the double variable pH with 7.0 and makes the following assignments to the bool variables neutral, base, and acid:

Answers

Answer:

try:

   pH = float(input("Enter number between 0 to 14: "))

except ValueError:

   print("input must be a number")

if pH < 7:

   print("pH is Acidity")

elif pH == 7:

   print("pH is neutral")

else:

   print("pH is Base/alkaline")(

Explanation:

The try and except statement is used to check if the input is a number, if its not, the print statement is displayed. The nested if statement compares the pH input to know if it is an acid, base or neutral.

Why would a network administrator want to filter certain ports when capturing data such as FTP traffic

Answers

Answer:

To avoid receiving malware-infected files like spam.

Explanation:

Hackers use malware to gain unauthorized access to company files and information for personal gain. Files infected by the malware can infect other systems or files. There are various types of malware namely; virus, trojan horse, worm, spyware, ransomware, adware etc.

What is the role of CPU in the computer system?

Answers

Answer:

role of cpu in computer is ut is a brain nd a power point if a computer

Explanation:

It helps of shut down and open it

Answer:

CPU is considered as the brain of the computer. CPU performs all types of data processing operations. It stores data, intermediate results, and instructions (program). It controls the operation of all parts of the computer.

True or false: Simultaneous multithreading (SMT) uses threads to improve resource utilization of a dynamically scheduled, out-of-order processor.

Answers

Answer:

True

Explanation:

Simultaneous multithreading or otherwise called, SMT that is a technique that us used for improving the total and overall efficiency of superscalar CPUs with hardware multithreading. Simultaneous Multithreading allows different types of independent threads, ability to execute and then eventually take optimum and much better use of the resources that is provided by modern processor architectures. Multithreading can not only allow multiple threads to be executed simultaneously in a single CPU core, it also allows multiple tasks some of which are different page tables, different I/O permissions, and others to be executed

What is something about online conferencing that you understand better now.
What did you learn?

Answers

Answer:

man this question is really about your personal experience but i'll try my best to answer this

Explanation:

onnline Web Conferencing is used by businesses and now schools who went to online because of the virus. for businesses i learned they use it to present and share with online collaboration on different applications including documents, web sites, data files, video, emails, and reduce the time and cost of business travel for meetings. i understand now that online conferencing can be used for Applications for web conferencing include meetings, training events, lectures, or presentations from a web-connected computer to other web-connected computers.

How do I do these? I dont understand.

Answers

I don’t understand either, I would suggest contacting your teacher or maybe searching up videos or tutorials on how to solve such a problem.

Allison is writing a program in Java and keeps getting an error. Which line of code is causing the error?

A. Int a = 0, b = 3, c;
B. for(i = 0, i <= 13, i++) {
C. c = (a * 2) + i;
D. System.out.println(c);

}

Answers

B will cause an error.

Allison needs to declare a type for variable i and use semi-colons.

The for statement should be for(int i = 0; i <=13; i++){

1. It is one way to attain one's holistic health condition.​

Answers

Answer:

It focuses on complete human body condition rather than single parts. The person should be healthy in all dimensions.

Explanation:

Holistic health condition is an ancient approach to a healthy life. This is a study where human is considered as healthy if he has no illness plus he is able to interact with others. he healthy condition depicts mind, soul and body. The health conditions are based on dimensions rather than single body function.

What is payload?
a block of data inside the packet
a block of data transmitted across a network
the maximum amount of data a network can transmit
a 32-bit numeric address

Answers

Answer:

a block of data inside the packet

An IEEE 802.1D port goes through four states when transitioning to the forwarding state. What is the correct order?

Answers

Answer:

Blocking, listening, learning and forwarding.

Explanation:

An IEEE 802.1D is the media access control (MAC) Bridges standardized by the IEEE group which includes bridging, Spanning tree and other protocols.

An IEEE 802.1D port goes through four states when transitioning to the forwarding state. The correct order are blocking, listening, learning and forwarding.

Write a program to print the prime numbers from 500 to 700. The program should also print the count of prime numbers between 500 and 700. A number is called a prime number if it has exactly two positive divisors, 1 and the number itself. For example, the number 5 is prime as it has only two divisors: 1 and 5.

Answers

primes = 0

for x in range(500, 701):

   count = 1

   for w in range(2, x+1):

       if x % w == 0:

           count += 1

   if count < 3:

       print(x, end=" ")

       primes += 1

print("\nThere are {} prime numbers between 500 and 700".format(primes))

I hope this helps!

a rectangle is 12 cm long and 9 cm wide.Its perimeter is doubled when each of its sides is increased by a fixed length.what is the length?​

Answers

Answer:

length = 12 cm

breadth = 9 cm.

perimeter of rectangle = 2( l+b)

= 2(12+9) = 2(21) = 42cm.

New length = (12+x) cm

New breath = (9+x) cm

2(12+x+9+x) = 42×2

2(21+x) = 84

21+ x = 84/2

21+x = 42

x= 42-21= 21

x= 21.

Therefore, length = (12+x)cm

=( 12+21) cm = 33cm.

Explanation:

Firstly we have written the length and breadth of the rectangle.

And the perimeter of rectangle i.e. 2(l+b)

Then, as it is in question we have doubled the perimeter

And at last, we have got the value of x.

and by putting the value in the new length we will get our answer.

hope you have got your answer dear.

One of the primary principles of the Rapid Application Development methodology is early prototyping of the _______ in the development cycle

Answers

Answer:

Software Applications

Explanation:

Rapid Application Development (RAD) also is an agile project management strategy used in the development of software. RAD is also referred to as Rapid Application Building (RAB).

Its greatest advantage is that it reduces the time taken to churn out a program and this is why a lot of developers are now adopting it.

This is made possible by reducing the amount of time and effort spent on planning and increasing the amount of energy spent on creating prototypes.

Other merits of this methodology are:

It reduces the risk associated with the project by ensuring that the program is first used as a prototype rather than the real deal. It ensures better quality. When users interact with the prototypes, they are able to provide very useful feedback that goes back into development to enhance the quality of the project.

Cheers!

If a priority queue is being implemented using an unordered list, what is the Big-O complexity of the Enqueue operation?

Answers

Answer:

the answer is O(1)

Explanation:

A priority queue is a type of queue whereby each of the elements are linked with a priority and the elements are served according to their priority.

The word enqueue means to add elements to the back of the queue

For this question, while using an unordered list, O(1) is the big-O complexity of the enqueue operation. O(1) is a natural Choice for queues.

Type the correct answer in the box. Spell the word correctly.
Under which menu option of a word processing program does a star appear?
A star appears under the
menu of the word processing program.
Reset
Next

Answers

Answer:

"a callout is a type of text box that also includes a line for pointing to any location on the document. A callout appears under the SHAPES menu of the word processing program. The answer that completes this statement is the word "shapes". Hope this answers your question."

Explanation:

The correct answer in the box is as follows:

A star appears under the shapes menu of the word processing program.

What is the word processing program?

The word processing program may be characterized as a type of MS software that is significantly used to create, edit, save, and print documents on a computer. It permits a user to create documents that mimic the format and style of the original document along with diverse functions.

The Shapes menu in the word processing program has numerous shapes like rectangles, Ellipses, and Freehand polygons. There are some other numbers of other shapes such as arrows, speech balloons, various stars, and others are also included in this menu tool.

If a user wants to add any specific shape, he/she is allowed to click Insert, click Shapes, select a shape, and then click and drag to draw the shape. That specific shape is now inserted in the word processing documents.

Therefore, a star appears under the shapes menu of the word processing program.

To learn more about Word processing documents, refer to the link:

https://brainly.com/question/1596648

#SPJ7

label parts of camera

Answers

Answer:

Viewfinder.

Pentaprism.  

Focusing Screen.

Condenser Lens.

Digital Sensor.

Shutter. ...

Display. ...

Electronics.

Explanation:

Which of these four things should not be included in a problem statement?

a
Creating a sketch
b
planning the process
c
Identify and validate
d
Understanding Criteria

Answers

I’m pretty sure it’s A. Creating a sketch.
Other Questions
Use the table and graph that relates dog ages to human ages tofollowing question.question: would there ever be one year assigned to two different quantities? explain. please help ill mark brainlest and like and rate your answer. What is the main cause described in this paragraph?What is the effect of that cause?As soon as the first shouts of "Fire!" were heard, scores ofpeople swarmed toward De Koven Street. Many helpedtheir neighbors fight the fire or drag furniture and clothesto the safety of the street. Most stood by watching theyellow-orange flames leaping from roof to roof andlistening to the horrible crackle pop of dry pine beingconsumed. Fires were extremely common back then andthought to be as exciting and dramatic as a night at thetheater.-The Great FireJim Murphypeople shouting, "Fire!"people swarming toward the streetfire consuming the dry pine of the rooftops The two tables below show the amount of tip,y, included on a bill charging x dollars.which compared the slopes of the lines created by the tables? Click to review the online content. Then answer the question(s) below, using complete sentences. Scroll down to view additional questions.Online Content: Site 1What is located between the paws of the Sphinx? (site 1) Read the excerpt from "On Becoming an Inventor" by Dean Kamen.When I was twelve years old and Barton, my older brother, was around fifteen, we took over the family basement. At first, I made a darkroom for developing pictures, and Bart was using it as his lab where he was raising about one hundred white rats, removing their thymus glands, and trying to figure out the glands' dysfunction. He wanted pictures taken of his experiment, doing the surgery on rats, and since I already had a darkroom, I took the pictures, though somewhat reluctantly. I didn't like the blood.What can you conclude about Barton from the excerpt?He was interested in solving medical mysteries at a rather early age.He did not understand why Dean would be squeamish about the blood.He went on to become a very famous and successful doctor.He had a severe dislike for rats and all other kinds of rodents. Which of the following would BEST fit into the category of a revenue bill?A.a new law against smoking in publicB.a new law proposed to increase federal income taxesC.a new law proposed to increase the size of the militaryD.a new law requiring all states to prohibit texting while driving Which of the following is not a requirement for an adult to become a U.S. citizen? Have been born on U.S. soil Pass a U.S. history and government test Be a legal, permanent U.S. resident Swear loyalty to the United States help me fast please. brainliest will be given if correct are nutrients recycled through living systems? is energy recycled through living systems? A student created a sonnet with an octave followed by a quatrain and a sestet. The rhyme scheme is abab abab for the octave, bcbc for the quatrain, and cdccdc for the sestet. How should the student edit the sonnet to make the structure consistent with an Italian sonnet? by deleting the quatrain and sestet and adding a couplet with an ee rhyme scheme by changing the octave's rhyme scheme to abba abba and deleting the quatrain by changing the quatrain's rhyme scheme to cdcd and replacing the sestet with a couplet by deleting the octave and sestet and adding two quatrains with the rhyme schemes abab and cdcd ASAP ASAP ASAP ASAP... Find the unit rate. Round to the nearest hundredth, if necessary.$340 for 18 ft2 30 points for the right answer! PLEASE HELP!! ;)What is the result when the number 14 is increased by 4.1%? QUOTES THAT SUPPORT THE CITY OF NEWPORT NEWS 1. 2. 3. 4. please help me identify which part goes where so I dont gotta keep staring at this picture Which of the following best describes Sacagawea? A.nervous B.helpful C.talkative D.disappointed Your meal plan allows you 500 dollars to use per month. So far this month, you have used 345 dollars and you have 9 days left on this month's plan. Which inequality could you use to determine how many dollars at most you can use per day so that you don't go over your monthly plan dollars? Part A: Which of the following best identifies a central idea in the text