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

Consider the following method, which is intended to return the product of 3 and the nonnegative difference between two int parameters.

public int threeTimesDiff(int num1, int num2) {

return 3 * (num1 - num2);

}
Which precondition is required so that the method works as intended for all values of the parameters that satisfy the precondition?
A. num1 > 0, num2 > 0
B. num1 >= 0, num2 >= 0
C. num1 >= num2
D. num2 >= num1

Answers

Methods are code segments that are executed when called or evoked.

The required precondition for the method to work as intended is (c) num1 >= num2

The return value of the method is given as:

3 * (num1 - num2).

The return value is said to be non-negative.

So, the following condition must be true

[tex]3 \times (num1 - num2) \ge 0[/tex]

Divide both sides of the equation by 3

[tex](num1 - num2) \ge 0[/tex]

Remove the bracket

[tex]num1 - num2 \ge 0[/tex]

Add num2 to both sides of the equation

[tex]num1 \ge num2[/tex]

Hence, the required precondition for the method to work as intended is (c) num1 >= num2

Read more about preconditions at:

https://brainly.com/question/13795586

Sort the layout options for two types of masters in PowerPoint.

Answers

Answer:

The program photo is showing the correct answers and the correct place for the two that you missed.

Explanation:

Answer: ANSWER IS SHOWN CORRECTLY

Explanation:

I REALLY HOPE IT HELPS YOU!!!!!!!!!!!!!

THANK YOU & BE SAFE TOO!!!!!!!!!!!!!!!

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 UPPER function is written so that all text in cell B4 will be capitalized? O=UPPER(B4) O=UPPER[B4] O UPPER B4 O=UPPER

Answers

The Excel UPPER function converts a text string to all uppercase letters. Numbers, punctuation, and spaces are not affected.

So , Which upper function is written so that all text in cell b4 will be capitalized

Answer is : PROPER function

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

which computer language uses short words known as mnemonics for writing programs?

Answers

The answer is Assembly

what is meant by formatting the presentation?​

Answers

It's deciding how things look. If you are on powerpoint you would choose the text style and colors and organize your information how you would like. If you were giving a speech you would decide what order your information is in.

what is the difference between windows 10 and windows 11

Answers

Answer: Windows 11 brings a brand-new, more Mac-like interface to the OS. It features a clean design with rounded corners and pastel shades. The iconic Start menu also moves to the centre of the screen along with the Taskbar. But you can move those back to the left, as they are in Windows 10, if you prefer.

Explanation:

Windows 11 will be a better operating system than Windows 10 when it comes to gaming. ... The new DirectStorage will also allow those with a high-performance NVMe SSD to see even faster loading times, as games will be able to load assets to the graphics card without 'bogging down' the CPU.

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

A professional is someone who uses education and acquired skills to earn money in a career.
Question 10 options:
True
False

Answers

After using my big brain it’s true

Unit 6: Lesson 2 - Coding Activity 1 AP Computer science

Answers

The complete program is to define a boolean method that returns true if all elements of an array are negative, or return false, if otherwise

The method in java, where comments are used to explain each line is as follows:

//This defines the method

public static boolean chkNegative (double[] myArr) {

   //This initializes a boolean variable

   boolean isNeg = true;

   //This iterates through the array

   for (int i = 0; i < myArr.length; i++) {

     //If the array element is 0 or positive

     if (myArr[i] >= 0) {

         //Then the boolean variable is set to false

       isNeg = false;

       //And the loop is exited

       break;

     }

   }

   //This returns true or false

   return isNeg;

 }

Read more about boolean methods at:

https://brainly.com/question/18318709

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.

16. If a user can make modifications to database objects, what permission has that
user been assigned?
A. Update
B. Alter
C. Create
D. Select

Answers

B

Explanation:

The Alter command is used when we want to modify a database or object contain in database.

Jordan likes to use his smartphone in his car. He uses it as a navigation device and connects it via Bluetooth to listen to music. He has purchased accessories that allow him to see his smartphone while he is driving. On a very cold day, and after driving for several minutes, Jordan receives a warning from his smartphone that it is overheating and needs to shut down. When he touches his smartphone, it is hot. What might cause Jordan’s smartphone to overheat?
A. Bluetooth receiver is causing the smartphone to overheat.
B. The smartphone is located too close to the car’s heat vent.
C. The GPS receiver is causing the smartphone to overheat.
D. The screen has been active too long.

Answers

Answer:

I think A Bluetooth receiver is causing the smartphone to over heat

If a flowchart has a diamond with the words “yes” and “no” to the sides of it, then it is representing a program that is a sequence.
Group of answer choices

True

False

Answers

Answer:

true

Explanation:

hope it help

# 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:

it is defined as the interloping of yarn with the use of a hook to make a design . A smocking B knitting C crocheting D embroidery​

Answers

Answer:

letter C

Explanation:

because the crocheting is defined as the interloping yarn and use to make and made a design to excellent.

how many 2/8 pound patties can she make from 7/8 of a pound of hamburger

Answers

Answer:

3/8

Explanation:

Because 2 can't go into 7, the next best thing is 6, so 2x3 is 6 with 1/8 left over~~~~~hope this helps :) pls brainlist

My sister told me an extremely funny joke. what is the direct object for this sentence ?

Answers

Answer:

Explanation:

Choose one scene or object to photograph. Take and submit at least three photographs of this scene at three different times of day. Be sure to note the times of day that you choose. Write a brief response about how the light changed in the photograph.
Take and submit photographs of someone using frontlighting, backlighting, and sidelighting. You can use the sun or other lighting.
Practice taking photographs on a cloudy or rainy day. Turn in three of your favorites from that practice.
Take some portrait photographs using a reflector. (Remember that white paper, poster board, sheets, or a wall can all act a reflector.) Practice moving the subject in different positions relative to the reflector. Turn in three of your favorite photographs.
Practice taking photographs in different lighting conditions (indoors and outdoors, different times of day, different weather, and so on) to help you better understand the impact of light on your photographs. Turn in three of your favorite photographs from your practice sessions.

Answers

Answer:

i dont get what you mean

Explanation:

(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

EASY 15 POINTS IF YOU CAN HELP
What is the value of the variable named result after this code is executed?

numA = 3

numB = 2

result = numA ** numB

A. 5
B. 9
C. an error has occurred
D. 6

Answers

Answer:9

Explanation:

The value of the variable named result after this code is executed "numA = 3 numB = 2 result = numA ** numB  is 9.

What does value mean?

The value of an output is known to be the sum or the monetary worth of that thing.

Note that looking at the  variable of the code that is executed "numA = 3 numB = 2 result = numA ** numB, we can say that the output is 9.as one can ger it when 3 multiplied itself twice.

Learn more about value from

https://brainly.com/question/843074

#SPJ2

For Internet Protocol (IP) v6 traffic to travel on an IP v4 network, which two technologies are used? Check all that apply.

Answers

The two (2) technologies that must be used in order to allow Internet Protocol version 6 (IPv6) traffic travel on an Internet protocol version 4 (IPv4) network are:

1. Datagram

2. IPv6 tunneling

An IP address is an abbreviation for internet protocol address and it can be defined as a unique number that is assigned to a computer or other network devices, so as to differentiate them from one another in an active network system.

In Computer networking, the internet protocol (IP) address comprises two (2) main versions and these include;

Internet protocol version 4 (IPv4)Internet protocol version 6 (IPv6)

IPv6 is the modified (latest) version and it was developed and introduced to replace the IPv4 address system because it can accommodate more addresses or nodes. An example of an IPv6 is 2001:db8:1234:1:0:567:8:1.

Furthermore, the two (2) technologies that must be used in order to allow Internet Protocol version 6 (IPv6) traffic travel on an Internet protocol version 4 (IPv4) network are:

1. Datagram

2. IPv6 tunneling

Read more on IPv6 here: https://brainly.com/question/11874164

10. What Microsoft program is frequently used to develop pictorial representations
of a database's logical relationships?
A. Visio
B. Access
C. Excel
D. Word

Answers

Answer:

A. Visio

It's a "powerful tool for diagramming needs". In other words, pictures.

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

akira has a mobility impairment that makes it difficult to type on a keyboard. what technology can she use to create written documents without using a keyboard?

Answers

Answer:

speech recognition software

The screen reader technology she can use to create written documents without using a keyboard if Akira has a mobility impairment that makes it difficult to type on a keyboard.

What is Screen reader technology?

An assistive technology known as a screen reader reads text, such as the document you see on your screen.

The audio output of screen reader technology is used to describe the information on the screen. A screen reader may narrate the operations of the computer or device as well as read aloud webpages and documents.

When reading text on a screen, a screen reader employs a Text-To-Speech engine to convert it to speech.

Thus, the screen reader technology she can use to create written documents without using a keyboard if Akira has a mobility impairment that makes it difficult to type on a keyboard.

Learn more about the Screen reader technology here:

https://brainly.com/question/7600315

#SPJ2

WHEN IS THE DESIGN PROCESS FINISHED IN ENGINEERING?​

Answers

Answer:

I think answers is it never ends

Help please

What is an ordered pair?

1. a type of font in Microsoft Word

2. the end of the x-axis on a coordinate grid

3. two numbers that tell the location of a point on a coordinate grid

4. a type of table located in the Table drop-down menu

Answers

Answer:

two numbers that tell the location of a point on a coordinate grid

Explanation:

Answer:

Two numbers that tell the location of a point on a coordinate grid.

Explanation:

An ordered pair would look like this

(0, 4) or (7, 2)

the first number would be on the x-axis and then the second would be on the y-axis

Please help please help

Answers

Answer:

Explanation:

je pense que la reponse est la suivante a et b puis c

What are the two main types of software​

Answers

system software and application software

Answer:

System software and application software

Explanation:

Other Questions
Write code that assigns bigValue with the return value of calling the function GetBiggestValue passing number1 and number2 as arguments (in that order). Then, assign bigValue with the return value of calling GetBiggestValue passing bigValue and number3 as arguments (in that order). 20x+10x-8=0 solution set of equation a simplifie 6 ( - 24 ) ( -4 ) Part A: Which of the following best summarizes a theme of the excerpt? pls answer dont scam HELP ME ASAP PLS THANK YOU! Does anybody know how to does this pleaseee helppppp. The first 2 my teacher did them for me but Im still confused pleaseee helpppp Could someone help me with this? Despite the numerous contributions to the progress of the United States made in part due to Latinos andNative Americans, they still faced adversity. List specific examples of the rights they were fighting for: Triangle in space with vertices P= (1, 0, 0), Q = (0,1,0), R=(0, 0, 2), find angle at P P= Netan surveyed 460 teenagers to find out their favorite type of movie. He found that 45% of the teenagers surveyed like comedies.Part A: How many teenagers surveyed like comedies? Show your work. (4 points)Part B: In another survey, Hannah found that 50% of the total number of teenagers surveyed like thrillers. If 40 teenagers like thrillers, what is the total number of teenagers that Hannah surveyed? Show your work. (4 points)Part C: Give an example of a situation in which a percentage is greater than 100%. (2 points)Question 3 options: Under the Big Top elephant. Ella [2500 kg]. is attracted to Phant, the 3,000 kg elephant. They are separated by 8 m. What is the gravitational attraction between them? G=6.6710^-11 (-11 is an exponent) Sketch the region enclosed by the given curves. Decide whether to integrate with respect to x or y. Then find the area of the region y=4x^2, y=x^2 + 3 Four drops of yellow food coloring are added to 10 mL of water. The mixture is pale yellow. Did a chemical change take place? Explain completely your evidence for your answer, using some of the scientific terms you have learned in this unit. Can someone help me answer please Cada invierno de nio, Quico, mi primo, y yo (1) (ir) de excursin a las montaas. Siempre nos (2) (gustar) el aire libre. Nosotros (3) (esquiar) mejor cada ao. El fin de semana pasado, nosotros (4) (hacer) planes para ir a estas mismas montaas. Nos (5) (levantar) temprano. Primero, yo (6) (ir) al correo para mandarle un paquete a mi hermana. Despus, Quico y yo (7) (llevar) el carro al taller para revisar el aceite. El mecnico nos (8) (decir) que el carro tuvo un problema con el motor. As que nosotros (9) (decidir) volver a casa y descansar tranquilamente durante el fin de semana porque (10) (estar) muy cansados. Child labor continued even after the reforms of the 1910s because. in the given figure ,o is the centr of the circle, ab is the diameter and do is perpendicular to ab. prove that angle AEC= ANGLE ODA Why arent the Appalachian Mountains still as tall as the Himalayas? In Passage 1, to what does the word nature, as inscribed on the silver casket, refer?The tale of the three caskets Human nature Natural beauty Mother Nature The natural world