You want a cable that could be used as a bus segment for your office network. The cable should also be able to support up to 100 devices. Which cable should you use?

A.
RG-6
B.
RG-8
C.
RG-58U
D.
RG-59

Answers

Answer 1

Answer: C

Explanation:


Related Questions

Page Setup options are important for printing a PowerPoint presentation a certain way. The button for the Page Setup dialog box is found in the
File tab.
Home tab.
Design tab.
Slide Show tab.

Answers

Answer: Design tab

Explanation:

The page setup simply refers to the parameters which are defined by a particular user which is vital in knowing how a printed page will appear. It allows user to customize the page layout. The parameters include size, page orientation, quality of print,margin etc.

It should be noted that page setup options are vital for printing a PowerPoint presentation in a certain way and the button for the Page Setup dialog box can be found in the design tab.

Which line of code will use the overloaded multiplication operation?

class num:
def __init__(self,a):
self.number = a

def __add__(self,b):
return self.number + 2 * b.number

def __mul__(self, b):
return self.number + b.number

def __pow__(self, b):
return self.number + b.number

# main program
numA = num(5)
numB = num(10)

Which line of code will use the overloaded multiplication operation?

class num:
def __init__(self,a):
self.number = a

def __add__(self,b):
return self.number + 2 * b.number

def __mul__(self, b):
return self.number + b.number

def __pow__(self, b):
return self.number + b.number

# main program
numA = num(5)
numB = num(10)

a) product = numA * numB
b) product = numA.multiply(numB)
c) product = numA.mul(numB

Answers

For multiplication one: product = numA * numB

For the addition: result = numA + numB

got 100 on this ez

(searched all over internet and no one had the answer lul hope this helps!)

Answer: First option: product = numA * numB

second option-numA + numB

Explanation:

a) Why is eavesdropping done in a network?
b) Solve the following using checksum and check the data at the
receiver:
01001101
00101000​

Answers

Answer:

An eavesdropping attack is the theft of information from a smartphone or other device while the user is sending or receiving data over a network.

Missing: checksum ‎01001101 ‎00101000

Which of the following best explains how an analog audio signal is typically represented by a computer?
a. An analog audio signal is measured at regular intervals. Each measurement is stored as a sample, which is represented at the lowest level as a sequence of bits.
b. An analog audio signal is measured as a sequence of operations that describe how the sound can be reproduced. The operations are represented at the lowest level as programming instructions.
c. An analog audio signal is measured as input parameters to a program or procedure. The inputs are represented at the lowest level as a collection of variables.
d. An analog audio signal is measured as text that describes the attributes of the sound. The text is represented at the lowest level as a string.

Answers

Answer:

A. An analog audio signal is measured at regular intervals. Each measurement is stored as a sample, which is represented at the lowest level as a sequence of bits.

Explanation:

I took the test

what is the best plugin for subscription sites?

Answers

Answer:

Explanation:

MemberPress. MemberPress is a popular & well-supported membership plugin. ...

Restrict Content Pro. ...

Paid Memberships Pro. ...

Paid Member Subscriptions. ...

MemberMouse. ...

iThemes Exchange Membership Add-on. ...

Magic Members. ...

s2Member.

is used for finding out about objects, properties and methods​

Answers

Answer:

science

Explanation:

What is the hamming distance between the following bits? Sent
bits: 101100111, Received bits: 100111001
Select one: 5. Or 3 or 6 or4​

Answers

I think

the hamming distance between the following bits its 5

Which of the following is not the disadvantage of closed
network model?
Select one:
O Flexibility
O Public network connection
O Support
O External access​

Answers

Answer:

public network connection

Answer:

public network connection

Write a MIPS assembly language program that prompts for a user to enter a series of floating point numbers and calls read_float to read in numbers and store them in an array only if the same number is not stored in the array yet. Then the program should display the array content on the console window.
Consult the green sheet and the chapter 3 for assembly instructions for floating point numbers. Here is one instruction that you might use:
c.eq.s $f2, $f4
bc1t Label1
Here if the value in the register $f2 is equals to the value in $f4, it jumps to the Label1. If it should jump when the value in the register $f2 is NOT equals to the value in $f4, then it should be:
c.eq.s $f2, $f4
bc1f Label1
To load a single precision floating point number (instead of lw for an integer), you might use:
l.s $f12, 0($t0)
To store a single precision floating point number (instead of sw for an integer), you might use:
s.s $f12, 0($t0)
To assign a constant floating point number (instead of li for an integer), you might use:
li.s $f12, 123.45
To copy a floating point number from one register to another (instead of move for an integer), you might use:
mov.s $f10, $f12
The following shows the syscall numbers needed for this assignment.
System Call System Call System Call
Number Operation Description
2 print_float $v0 = 2, $f12 = float number to be printed
4 print_string $v0 = 4, $a0 = address of beginning of ASCIIZ string
6 read_float $v0 = 6; user types a float number at keyboard; value is store in $f0
8 read_string $v0 = 8; user types string at keybd; addr of beginning of string is store in $a0; len in $a1
------------------------------------------
C program will ask a user to enter numbers and store them in an array
only if the same number is not in the array yet.
Then it prints out the result array content.
You need to write MIPS assembly code based on the following C code.
-------------------------------------------
void main( )
{
int arraysize = 10;
float array[arraysize];
int i, j, alreadyStored;
float num;
i = 0;
while (i < arraysize)
{
printf("Enter a number:\n");
//read an integer from a user input and store it in num1
scanf("%f", &num);
//check if the number is already stored in the array
alreadyStored = 0;
for (j = 0; j < i; j++)
{
if (array[j] == num)
{
alreadyStored = 1;
}
}
//Only if the same number is not in the array yet
if (alreadyStored == 0)
{
array[i] = num;
i++;
}
}
printf("The array contains the following:\n");
i = 0;
while (i < arraysize)
{
printf("%f\n", array[i]);
i++;
}
return;
}
Here are sample outputs (user input is in bold): -- note that you might get some rounding errors
Enter a number:
3
Enter a number:
54.4
Enter a number:
2
Enter a number:
5
Enter a number:
2
Enter a number:
-4
Enter a number:
5
Enter a number:
76
Enter a number:
-23
Enter a number:
43.53
Enter a number:
-43.53
Enter a number:
43.53
Enter a number:
65.43
The array contains the following:
3.00000000
54.40000153
2.00000000
5.00000000
-4.00000000
76.00000000
-23.00000000
43.52999878
-43.52999878
65.43000031

Answers

Explanation:

Here if the value in the register $f2 is equals to the value in $f4, it jumps to the Label1. If it should jump when the value in the register $f2 is NOT equals to the value in $f4, then it should be

Other Questions
which war had recently ended at the start of the 1920s? point a and point b are placed on a number line point a is located at -20 and point b is 5 less then point a Wich statement about point b is true Find the volume of the triangular prism below 5mm 12mm 3mm HELP Please help me 15 points, needs to be done ASAP! Any joking around will lead to a report. When electricity (the flow of electrons) is passed through a solution, it causes an oxidation-reduction (redox) reaction to occur. If the solution contains a metal cation such as Ag+, the flow of electrons will reduce the silver ion, causing solid silver to plate onto the electrode. The amount of metal plated depends on the number of electrons passed. The total charge of a mole of electrons is 96, 485 coulombs (C) and 1 ampere = 1 coulomb/second (C/s).What mass of Cu(s) is electroplated by running 28.5 A of current through a Cu2+ (aq) solution for 4.00 h? Express your answer to three significant figures and include the appropriate units.How many minutes will it take to electroplate 37.1 g of gold by running 5.00 A of current through a solution of Au+(aq)? Express your answer to three significant figures and include the appropriate units. Please help worth 30 points its geometry.I have a grade check tmr and I have an F in geometry please help!!! What where the political parties from the Russian revolution of 1917? Fleas are tiny insects that you might find on your dog. Fleas bite animals' skin and suck their blood, causing the animal to itch while the fleas get food and a warm home. This is an example of _________. Select one:parasitismpredationmutualismcommensalism This is a pic of my question.. How much does 3 moles of silica weigh Which of the following best explains why cosine StartFraction 2 pi Over 3 EndFraction not-equals cosine StartFraction 5 pi Over 3 EndFraction Help me with my homework, please What is the slope of the line passing through the points (-5, -4) and (-1, 6)?A.2/5B.-5/2C.-2/5D.5/2 Create an application containing an array that stores eight integers. The application should call five methods that in turn:Display all the integersDisplay all the integers in reverse orderDisplay the sum of the integersDisplay all values less than a limiting argumentDisplay all values that are higher than the calculated average value. public class ArrayMethodDemo { public static void main (String args[]) { int[] numbers = {12, 15, 34, 67, 4, 9, 10, 7}; int limit = 12; display(numbers); displayReverse(numbers); displaySum(numbers); displayLessThan(numbers, limit); displayHigherThanAverage(numbers); } public static void display(int[] numbers) { // Write your code here } public static void displayReverse(int[] numbers) { // Write your code here } public static void displaySum(int[] numbers) { // Write your code here } public static void displayLessThan(int[] numbers, int limit) { // Write your code here } public static void displayHigherThanAverage(int[] numbers) { // Write your code here }} Help pls??Thank you!! There is a stack of 10 cards, each given a different number from 1 to 10. Suppose we select a card randomly from the stack, replace it, and then randomlyselect another card. What is the probability that the first card is an even number and the second card is less than 3?Write your answer as a fraction in simplest form. What is the primary purpose of source code editor features such as keyword hi lighting and auto-completion A.to speed up the coding process B.to improve the visual appeal of the editor C.to help programmers debug the code. D.to make coding easier for learners E.to make it easier for machines to read the code DESCRIBA EL CLIMA DESRTICO Think about an organizational change that recently affected you. This could be a change at work in which jobs or procedures were changed, or it could be a change at school, such as a change in curriculum requirements or major revisions in registration procedures. How effectively did the organization manage the change? What could the organization have done differently to reduce resistance to the change? Your post should reflect the terms and concepts in Chapter 15.