This is an Image of the ......... Topology.


The person who got it right ,i will mark hem or her as brainly.​

This Is An Image Of The ......... Topology. The Person Who Got It Right ,i Will Mark Hem Or Her As Brainly.

Answers

Answer 1

Answer:

Bus Topology

Explanation:

[tex]{}[/tex]


Related Questions

Write a program to print sum on first 10 natural numbers.
#include
int main()
{
int i, sum;
for(i=1;i<=10;++i);
{
sum =sum + i;
}
printf("The sum is = %d",sum);
}

Answers

A program that prints the sum on the first 10 natural numbers is:

int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //

What is a program?

A computer program in a programming language is a set of instructions and commands written in a language that a computer can execute or understand. 

Using the For Loop program, the variables of the first 10 natural numbers can be written as:

int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //

Learn more about writing a program here:

https://brainly.com/question/23275071

HELP PLZ 50 POINTS
What code would add a new array item named "home" to the array below?

var titles = ["score", "points"];

titles.put("home");
titles.push("home");
titles.set("home");
array.push("home");

Answers

Answer:

titles.push("home");

Explanation:

        It depends on if you want to change the original array or not, but since you are just adding on I think this is the correct option.

        "... 5 ways to add an item to the end of an array. Push, splice, and length will mutate the original array. Whereas concat and spread will not and will instead return a new array. Which is the best depends on your use case" (www.samanthaming.com)

[] Attached is from the same source

-> I think this is correct

Have a nice day!

     I hope this is what you are looking for, but if not - comment! I will edit and update my answer accordingly. (ノ^∇^)

- Heather

Can someone help me please and please answer all the questions and explain :D

Answers

Answer:

1. is A. 2. is C.  3. is A.

Explanation:

Filters remove all data that does not match the requirements.

Describe the function of memory and
processing unit of Computer system​

Answers

Answer:

Computer memory is a temporary storage area. It holds the data and instructions that the Central Processing Unit (CPU) needs. ... This allows the CPU direct access to the computer program. Memory is needed in all computers.

Explanation:

hope it help

PLEASE ANSWER (CODING IN PYTHON)


Ask what kind of pet the user has. If they enter cat, print “Too bad...”, if they enter

dog, print “Lucky you!" (You can change the messages if you like). Once this works,

add other pets. (Iguana, Pig, Rabbit...)

Answers

Answer:

Explanation:

a = input("what kind of pet the user has")

if a == 'cat':

  print("Too bad")

elif a == 'dog':

   print("Lucky you!")

The program based on the information is given below.

What's the program about?

def main():

   pet = input("What kind of pet do you have? ").lower()

   if pet == "cat":

       print("Too bad...")

   elif pet == "dog":

       print("Lucky you!")

   elif pet == "iguana":

       print("That's interesting!")

   elif pet == "pig":

       print("Oink oink!")

   elif pet == "rabbit":

       print("Hop hop!")

   else:

       print("I'm not familiar with that pet.")

if __name__ == "__main__":

   main()

Learn more about program

https://brainly.com/question/26642771

#SPJ2

This program is an example of:

def factorial(x):

if x == 1:

return x

else:

return x * factorial(x-1)

Group of answer choices

a do while loop.

recursion.

a for loop.

a while loop.

Answers

The program is an example of recursion

In computer programming, recursion is a process in which a function calls itself.

In a recursive program, there is a

base case and a recursive case.

When the condition of recursion is met, the base case is returned, else, the recursive case is continued.

In the function given above,

the base case is 'return x' under the condition 'if x == 1'. The recursive case is 'return x * factorial(x - 1)'.

So, the function runs until the base case it met and then it stops.

So, the program is an example of recursion.

Learn more about recursion here:

https://brainly.com/question/25797503

One of the Windows workstations you manage has four user accounts defined on it. Two of the users are limited users while the third (your account) is an administrative user. The fourth account is the Guest user account, which has been enabled to allow management employees convenient workstation access. Each limited and administrative user has been assigned a strong password. File and folder permissions have been assigned to prevent users from accessing each other's files. Autorun has been disabled on the system.

Required:
What actions is MOST likely to increase the security of this system?

Answers

Answer:

All users on a Windows workstation are limited users except for one user who is responsible for maintaining the system.Explanation:

Which phrase will be coded using the element in HTML?

Answers

Answer:

The <i> tag is often used to indicate a technical term, a phrase from another language, a thought, a ship name, etc. Use the <i> element only when there is not a more appropriate semantic element, such as: <em> (emphasized text) <strong> (important text)

Explanation:

brainliest please thank you :)#CARRYONLEARNINGCORRECT ME IF IM WRONG

Which of the following statements best explains how multitasking works in the human mind?

Answers

Multitasking is a myth—everyone can only process information one piece at a time.

Answer: He's right

Explanation: I got the answer too

(01.02
High-level programming languages are used to write a wide variety of programs, like
operating systems, scientific modeling, and general applications.

True
False

Answers

Answer:

ture

Explanation:

hope it help u

in addition to good design sense, what else do web designers need to be proficient in?

Answers

Web designers need to be proficient in Front-end coding languages in addition to good design sense.

Web designers build or redesign websites. They understand what it takes to make a website functional and easy to use, but also understand what is needed to make it aesthetically appealing to the user.

Web designers need to be proficient in Front-end coding languages in addition to good design sense.

Find out more on web design at: https://brainly.com/question/8391970

Computers were originally developed to accomplish various tasks in relative isolation, very different from the collaboration and communication we see today.

A.
True

B.
False

Answers

The answer is A, they were built for work.

I'm confused as to if subclasses can call the supers without any implementation and what the right answer is

Answers

Answer:

E

Explanation:

Since Example1 and Example2 inherit from Example0, all classes have the method doNothing() at their disposal, so you can call it from e0, e1 and e2.

However, the arguments of this method are Example1 and Example2, so you cannot pass Example0 as a first argument, and you cannot pass Example0 or 1 as a second argument. That only leaves answer E.

You can call the inheritance relation an "is a kind of" relation. So Example1 is a kind of Example0, and Example2 is a kind of Example1, but also Example2 is a kind of Example0.

Now you can understand why e2 can be passed as an argument for Example1, because e2 is a kind of Example1.

# I need help with my python code, it won't work, and no matter what I try, I can't get it to run properly. Every time I try top run it, it gives me an error saying:

# syntaxError, bad input on line 43, I am not very good at programming, and I just started. I wanted to ask if you guys could help me.
# Here's my code, the purpose of it is to be a rock paper scissors game:

```
import random

def welcome_prompt():
print ("Rock paper Scissors game")
print ("Rules: Rocks beats Scissors, Scissors beats Paper, Paper beats Rock")

def get_player_move():
print ('Round ' + str(round))
print ("Please play one of the following")
move = raw_input(" 1) [R]ock, 2) [P]aper, 3) [S]cissors:")

if get_player_move == ("R"):
print ("You used Rock!")
return 1
elif get_player_move == ("P"):
print ("You used Paper!")
return 2
elif get_player_move == ("S"):
print ("You used Scissors!")
return 3
else:
print "Invalid input, please use capitalized initial (R,P,S)"
return get_player_move()

def get_computer_move():
get_computer_move = random.randint(1,3)

if get_computer_move == 1:
print ("Computer used Rock!")
return 1
elif get_computer_move == 2:
print ("Computer used Paper!")
return 2
elif get_computer_move == 3:
print ("Computer used Scissors!")
return 3

def compare_moves(get_player_move, get_computer_move):

if (get_player_move == 1 and get_computer_move == 1) or (get_player_move
== 2 and get_computer_move == 2) or (get_player_move == 3 and
get_computer_move == 3):
print ("It's a tie!")
return 0

elif (get_player_move == 1 and get_computer_move == 3) or
(get_player_move == 2 and get_computer_move == 1) or (get_player_move ==
3 and get_computer_move == 2):
print ("You win the round!")
return 1

elif (get_player_move == 1 and get_computer_move == 2) or
(get_player_move == 2 and get_computer_move == 3) or (get_player_move ==
3 and get_computer_move == 1):
print ("You lose the round!")
return -1

elif (get_player_move == 4):
print ("You didn't put in correct input, computer gets a free win")
return -1

player_score = 0
comp_score = 0
round = 0

welcome_prompt()

('Round ' + str(round))
while round< 10:
round = round + 1
get_player_move()
get_computer_move()
compare_moves(get_player_move, get_computer_move)

if compare_moves == 1:
player_score = player_score + 1
print 'Player Score'+ str(player_score)
print 'Computer Score'+ str(player_score)
elif compare_moves == -1:
comp_score = comp_score + 1
print 'Player Score'+ str(player_score)
print 'Computer Score'+ str(player_score)

print ("Game Over")

Answers

Answer:

hmm i would assume your syntax code has a hidden error that's messing up your code that you are trying to input inside your computers field matrix to do the game. question is where is that error?

Explanation:

What is this on googel documents and how do I fix it

Answers

Answer:

if you're trying to take off the words on the side, when you hover over it, an "X" will appear and you can delete it

Explanation:

In Super Mario Bros., you become Mario and your friend is Mario’s younger brother Luigi. Your job is to race through Mushroom Kingdom to save Princess Toadstool and avoid the enemy, Bowser. You can jump from and to different objects, picking up coins and other items to help you on your journey through the levels. What game genre (or combination of genres) best describes this game?

A.
strategy simulation
B.
action adventure
C.
RPG
D.
sports action

Answers

B action adventure ——————

is a virtue by which you need to secure information by limiting computer access to authorized personnel only.

Answers

Answer:

ummmmmmmmm

Explanation:

Confidentiality is a virtue which states that you need to secure information by limiting computer access to authorized personnel only.

Keeping confidential data is crucial especially if your business deals with very important information about a person and his security.

Trust is built between a company and a client. The client trusts the company to keep his information secure and confidential from outside parties. Once the confidentiality of the company is compromised, the business will suffer because clients will no longer trust the company to keep their data secure.

Draw truth table for the following logic circuit:

(Please I really need help with this)

Answers

Keep Scrolling! :D

[tex] \rule{999pt}{66646pt}[/tex]

write 10 place where computer use and it uses​

Answers

Answer:

dynamite ohohoh

Explanation:

nânnananananananann eh

house store school park

- What is the use of border? Differentiate between changing color of cells and color of data class 6​

Answers

Conditional formatting makes it easy to highlight interesting cells or ranges of cells, emphasize unusual values, and visualize data by using data bars, color scales, and icon sets that correspond to specific variations in the data.

A conditional format changes the appearance of cells on the basis of conditions that you specify. If the conditions are true, the cell range is formatted; if the conditions are false, the cell range is not formatted. There are many built-in conditions, and you can also create your own (including by using a formula that evaluates.

A portfolio is a collection of materials that demonstrates your skills, abilities, achievements, and potential.
Question 22 options:
True
False

Answers

A portfolio is a collection of materials that demonstrates your skills, abilities, achievements, and potential.

A portfolio is a living and changing  collection of records that reflect your  accomplishments, skills, experiences,  and attributes. It highlights and  showcases samples of some of your best  work, along with life experiences, values  and achievements. A portfolio does not take the place of a resume, but  it can accentuate your abilities and what  you can offer in the chosen field.

Find out more about portfolio at: https://brainly.com/question/24811520

Open-ended games give players the most freedom to explore other worlds.

A.
True
B.
False

Answers

A - trueeeeeeeeeeeeee

I know this isn't the right platform for this question, but where should I go to get a good PC and a good monitor? I'm thinking about becoming a streamer.

Answers

Answer: Alienware is really good if you are into fps games such as call of duty but it depends on your price I know alien ware can be pretty expensive so it's up to you.

Very few games have any sort of narrative, not even a simple one that involves setting the mood through color, sound, environment, and game mechanics.

A.
True
B.
False

Answers

Answer:

B. False

Explanation:

Numerous amount of games have narrative, there is an entire genres built around narratives. Any RPG game has a narrative and even bog standard FPS games have some sort of backstory and effects setting a mood.

Which of the following described a global network connecting billions of computers and other
devices?
A) WiFi
B
ISP
C
World Wide Web
D
Internet

Answers

pretty sure its wifi
A that pretty much it! Lol

how many pages is 1500 words double spaced 12pt font?

Answers

Answer:

6 pages

Explanation:

Shadow and highlight create depth (3D).
TRUE OR FALSE

Answers

Answer:

true because then it would be like not popping out

Alex needs to create a function capable of counting item reference numbers that he is inserting into a spread sheet. The purpose of this function will be to keep track of inventory. How would Alex go about finding a function to do this? Click the Home tab and use the Find.

Answers

Alex can find a function to do this by entering the item reference numbers into the worksheet, and click the Sort button to count the items.

A spreadsheet can be defined as a document or file which comprises cells in a tabulated format (rows and columns), that are typically used for formatting, arranging, analyzing, storing, calculating, counting, and sorting data on computer systems through the use of a spreadsheet application such as Microsoft Excel.

In this scenario, Alex wants to keep track of inventory by creating a function that is capable of counting item reference numbers as he is inserting into a spread sheet. Thus, he should enter the reference numbers of each item into the worksheet, and click the Sort button to count the items.

Read more: https://brainly.com/question/14299634

Answer:

It’s C

Explanation:

edge

Axel is conducting some online research, and he wants to narrow down his search to a specific date
range, and he only wants to find images. What should he use?
O quotations
O a Boolean search
O truncation of terms
O filters

Answers

Answer:

filters

Explanation:

you use filters to specify what you want to find

To remove a specified number of characters from anywhere within a string, you should use the ____ method.

Answers

Answer:

remove

Explanation:

Other Questions
Plssss help congruent triangles exercises . The Ramirez family has a circular garden with a diameter of 22 feet. They cover the garden with mulch. The cost of mulch is $1.25 per square foot. To the nearest dollar, how much will it cost to cover the garden with mulch. Show your work.A.$380 B. $475C. $1.520 D. 1.900 Which of the following is something a "smart pick list" does NOT help pickers do?pick materials based on order of deliverypick materials based on due datephysically lift heavy itemspick materials using a pre-programmed, efficient route Which of the following statements is true about CO?The carbon and oxygen share electrons.bCarbon is the cation and oxygen is the anion.It is the element cobalt.dIts name is monocarbon monoxide.enone of these is the material a primary, secondary or tertiary source of information? Explain 2. What is the main goal of launching NASA's rover Perseverance towards Mars? 3. What essential object is aboard rover Perseverance? * What is considered to be one of the most complex maneuvers in Perseverance's journey? 5. What does the United States plan to do in 2030? 6. What other significant details does the text provide?ano po sagot? .............................. The volume of an eraser is 9.6cm cube Its height is 0.8cm find the area of it base Read the following excerpt from The Strange Case of Dr. Jekyll and Mr. Hyde. How could the presence of these articles in my house affect either the honour, the sanity, or the life of my flighty colleague? If his messenger could go to one place, why could he not go to another? And even granting some impediment, why was this gentleman to be received by me in secret? The more I reflected the more convinced I grew that I was dealing with a case of cerebral disease. . . The point of view in the excerpt allows the reader to know Hydes thoughts directly. Predict an action that Hyde will take. Know Lanyons thoughts directly. Learn something that Lanyon does not know. 13. Which of the following is TRUE of Africa after the Berlin Conference?A. Italy held more territory than anyone elseB. There were no independent nations in AfricaC.France held most of the territory in West AfricaD.Spain held most of the territory in South Africa guys? can ypu pls help me with this? it's our exam day, thank you very much Two similar triangles are shown on the coordinate grid:A coordinate grid is shown from positive 6 to negative 6 on the x-axis and from positive 6 to negative 6 on the y-axis. A triangle ABC is shown with vertex A on ordered pair negative 2, negative 1, vertex B on ordered pair 0, 0, and vertex C on ordered pair 1, negative 3. A triangle A prime B prime C prime is also shown with vertex A prime on ordered pair negative 4, 2 , vertex B prime on ordered pair 0, 0 and vertex C prime on ordered pair 2, 6.Which set of transformations has been performed on triangle ABC to form triangle ABC? (5 points)Dilation by a scale factor of 4 followed by reflection about the x-axisDilation by a scale factor of 2 followed by reflection about the x-axisDilation by a scale factor of 4 followed by reflection about the y-axisDilation by a scale factor of 2 followed by reflection about the y-axis Why were the U.S forces not along the western front? 7/8 = ?/48A. 1B. 42C. 6D. 13 write a letter to your friend describing our corona virus say to your friends Between 1981 and 1984, President Reagan doubled the:A. Living space in the White House.B. Budget for welfare programs.C. Defense Department's budgetD. None of the above. Pleaseeeee heeeeelp!!! The graphs below have the same shape. What is the equation of the blue graph?G(x) =O A. G(X) = x^2 + 1O B. G(X) = (x - 1)^2O C. G(X) = (x + 1)^2O D. G(x) = x^2-1 A cylindrical tank with radius 5 m is being filled with water at a rate of 3 m^3/min. How fast is the height of the water increasing Read the passage below.You will respond by writing an informational response paragraph.You will find specific writing directions below the passage.GOLD IN THE SKYBy Alan E. NourseChapter 1. Trouble Times TwoThe sun was glowing dull red as it slipped down behind the curving horizon of Mars, but Gregory Hunter was not able to see it.There was no viewscreen in the ship's cabin; it was too tiny for that. Greg twisted around in the cockpit that had been built just big enough to hold him, and shifted his long legs against the brace-webbing, trying to get them comfortable.He knew he was afraid ... but nobody else knew that, not even the captain waiting at the control board on the satellite, and in spite of the fear Greg Hunter would not have traded places at this moment with anyone else in the universe.He had worked too hard and waited too long for this moment.He heard the count-down monitor clicking in his ears, and his hands clenched into fists. How far from Mars would he be 10 minutes from now? He didn't know. Farther than any man had ever traveled before in the space of 10 minutes, he knew, and faster. How far and how fast would depend on him alone."All set, Greg?" It was the captain's voice in the earphones."All set, Captain.""You understand the program?"Greg nodded. "24 hours out, 24 hours back, 90 degrees to the ecliptic1, and all the acceleration2 I can stand both ways."Greg grinned to himself. He thought of the months of conditioning he had gone through to prepare for this run ... the hours in the centrifuge to build up his tolerance to acceleration, the careful diet, the rigorous hours of physical conditioning. It was only one experiment, one tiny step in the work that could someday give men the stars, but to Gregory Hunter at this moment it was everything."Good luck, then." The captain cut off, and the blastoff buzzer sounded.He was off. His heart hammered in his throat, and his eyes ached fiercely, but he paid no attention. His finger crept to the air-speed indicator, then to the cut-off switch. When the pressure became too great, when he began to black out, he would press it.But not yet. It was speed they wanted; they had to know how much acceleration a man could take for how long and still survive, and now it was up to him to show them.Fleetingly, he thought of Tom ... poor old stick-in-the-mud Tom, working away in his grubby little Mars-bound laboratory, watching bacteria grow. Tom could never have qualified for a job like this. Tom couldn't even go into free-fall for 10 minutes without getting sick all over the place. Greg felt a surge of pity for his brother, and then a twinge of malicious anticipation. Wait until Tom heard the reports on this run! It was all right to spend your time poking around with bottles and test tubes if you couldn't do anything else, but it took something special to pilot an XP ship for Project Star-Jump. And after this run was over, even Tom would have to admit it....There was a lurch, and quite suddenly the enormous pressure was gone.Something was wrong. He hadn't pushed the cut-off button, yet the ship's engines were suddenly silent. He jabbed at the power switch. Nothing happened. Then the side-jets sputted, and he was slammed sideways into the cot.He snapped on the radio speaker. "Control ... can you hear me? Something's gone wrong out here...."1The great circle that is the apparent path of the Sun.2The process of moving faster or happening more quickly.------------------------Now that you have read the passage, you will write an informational response paragraph to answer the following question:How does this story create a feeling of tension or conflict?Read the directions carefully so you know what to include in your essay.Begin your paragraph by rephrasing the question into a topic sentence. Be sure to include the title and the author.Include 3 or more specific examples, details, or quotes from the passage to support your answers to the prompt.End with a conclusion sentence to wrap up your ideas.Proofread your work before submitting. (100 points) Which part of Asia has deserts ? Name the deserts. Please help me.....