Word Processing - Tab
Arrange in sequence to add borders to a table...
A) Select cells you want
B) Select the Design tab
C) Click the Borders drop-down
D) Select the desired border type
E) Select the required Style, weight and Colour​

Answers

Answer 1

Answer:

The answer to this question is given below in the explanation section

Explanation:

This question is about to add borders to a table, the given orders in question are:

A) Select cells you want

B) Select the Design tab

C) Click the Borders drop-down

D) Select the desired border type

E) Select the required Style, weight and Colour​

The correct orders to add borders to the table are:

Select cells you wantSelect the Design tabClick the border dropdownSelect the desired border typethen select the required Style, Weight, and colour.


Related Questions

Java Eclipse homework. I need help coding this

Project 5A - Mixed Results

package: proj5A
class: MixedResults

Create a new project called MixedResults with a class called Tester. Within the main method of Tester you will eventually printout the result of the following problems. However, you should first calculate by hand what you expect the answers to be. For example, in the parenthesis of the first problem, you should realize that strictly integer arithmetic is taking place that results in a value of 0 for the parenthesis.

double d1 = 37.9; //Initialize these variables at the top of your program
double d2 = 1004.128;
int i1 = 12;
int i2 = 18;

Problem 1: 57.2 * (i1 / i2) +1
Problem 2: 57.2 * ( (double)i1 / i2 ) + 1
Problem 3: 15 – i1 * ( d1 * 3) + 4
Problem 4: 15 – i1 * (int)( d1 * 3) + 4
Problem 5: 15 – i1 * ( (int)d1 * 3) + 4

Your printout should look like the following:

Problem 1: 1.0
Problem 2: 39.13333333333333
Problem 3: -1345.39999999999
Problem 4: -1337
Problem 5: -1313

Answers

public class MixedResults {

   public static void main(String[] args) {

       Tester test = new Tester();

       test.tester_method();

   }

   

}

class Tester{

   double d1 = 37.9, d2 = 1004.128;

       int i1 = 12, i2 = 18;

   Tester(){  

       

   }

   void tester_method(){

       System.out.println(57.2*(i1/i2)+1);

       System.out.println(57.2*((double)i1/i2)+1);

       System.out.println(15 - i1 * ( d1 * 3) + 4);

       System.out.println(15 - i1 * (int)( d1 * 3) + 4);

       System.out.println(15 - i1 * ( (int)d1 * 3) + 4);

   }

}

I think this is what you're looking for. Best of luck.

An example of an objective statement would be which of the following? Group of answer choices I have two dimes and a nickel in my purse. Green is the ideal color for a baby’s room. Air conditioning is the best invention, ever! Movies should not be more than three hours long.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct objective statement is:

Movies should not be more than three hours long.

As we know that the objective is something that is achievable and should be SMART (specific, measurable, achievable, realistic , and time-bound)

Other options are incorrect because:

I have two dimes and a nickel in my purse. (it is not an objective, it is an ordinary statement)

Green is the ideal color for a baby’s room. (it is not an objective, it is an opinion)

Air conditioning is the best invention, ever! (it is not an objective, it is like a fact)

list four products that normally requires copyright protectio.​

Answers

The  four products that normally requires copyright protection are:​

Books and written literary works.Music compositions and sound recordings.Artistic creations such as paintings, sculptures, and photographs.Software programs and computer applications.

What is the copyright protection.

Books and written literary works need copyright protection to keep the original ideas and writings of authors safe. This stops people from copying, sharing, or making more copies without permission.

Copyright protection is important for music compositions and sound recordings to make sure that composers, songwriters, and performers have power over how their works are used, shared, and performed for the public.

Read more about copyright protection here:

https://brainly.com/question/27976194

#SPJ1

. How to insert Section Break in Microsoft word 2016 ?

A. Insert Tab – pages group – Page Break button

B. View Tab – Document View group – Break button

C. Layout Tab – Page setup group – Breaks – Next page button.​

Answers

Answer:

C. Layout Tab – Page setup group – Breaks – Next page button.

Change the screen resolution so you can view more information on your screen. Use the resolution that enables you to fit the most information on the screen while still being able to read the display.

Use the space below to indicate your screen resolution and to describe the steps you used to do this.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

My laptop's current screen resolution is (1366 by 768 recommended). When you change your screen resolution, your pc automatically suggests the recommended screen resolution that helps you to view more information on your screen and enable you to fit the most information on the screen while still being able to read the display.

To change the screen resolution, you need to go through from the following steps:

Right-click on empty space of desktop.As you right-click, a list of options will open, select "display setting" among themA new setting window will get open, at the left of the window, among given option, click on the first option i.e "display"The content of the display setting gets open in the right area of the window. scroll down and find the "Scale and Layout"under scale and layout, you can change your screen resolution while selecting the different screen resolution. However, it is good to select the recommended screen resolution based on your screen size.

Write a subprogram that is given an array of integers and a given integer to search for. Scan the array for matches with the given integer and create an array of the indexes with the matching entries. To store the indexes, start with an array of the same size, but, after finishing the scan, allocate an array of just the right size, copy the contents, and return the (potentially) smaller array.

Answers

Answer:

public class Main

{

public static void main(String[] args) {

    int[] numbers = {28, 7, 92, 100, 0, 7, 300, 2873};

    int target = 7;

    int count = 0;

   

    int[] matchedIndexes = new int[numbers.length];

   

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

        if (numbers[i] == target){

            matchedIndexes[count] = i;

            count++;

        }

    }

   

    int[] indexes = new int[count];

   

    for(int i = 0; i<count; i++){

       indexes[i] = matchedIndexes[i];

    }

   

    for(int i = 0; i<count; i++){

     System.out.print(indexes[i] + " ");

    }

}

}

Explanation:

Initialize the numbers array, target value and count

Create a new array called matchedIndexes with the size of the numbers array

Create a for loop that iterates through the numbers array and checks if the target is in the numbers array. If it is, put the index of the number in to the matchedIndexes array and increment the count by 1.

Create another array named indexes with size of count

Create a for loop that copies the values from matchedIndexes to indexes

Print the values in the indexes

What will happen if a white background is underexposed?
The subject will be overexposed.
The subject will be washed out.
It will appear gray.
O No shadows will appear.

Answers

Unlike most color images you shoot, subjects that are mostly white will always fool the meter in your camera. The pictures will turn out consistently underexposed. The reason this happens is because meters are designed to give you an accurate light reading when they “see” middle toned subjects.

Hope this helps :)

I want to use an external keyboard but my father is not allowing what should I do Can someone help me out with this I know this not related to subjects but i hope you all will answer

Answers

Answer:

payattention in class

Explanation:

how is digital footprint created ?

Answers

Answer:

by simply just logging on and using the internet.

Explanation:

Answer:

They are left by if you search something or post or even if someone else post something about you it will be online forever.

Explanation:

timeline:
At least three different historical periods in time to examine and explore in terms of art
and photography as well as our current time period (you will therefore research four time
periods in total).
• For each historical period that you choose, as well as the current time period:
• Explore and identify at least one artistic theme associated with this period
• Explore and identify at least one artistic trend associated with this period
• Explore and identify the most popular or relevant photographic styles used during this period
Explore and identify the most popular or frequently photographed subjects during this period
O
Now for the fun part! Your timeline should feature more images, graphics, and visual
components than text. While you will certainly need to include text to further explain the
images that you include and the research that you do, you want your timeline to ultimately
appear as a beautiful work of art-a visual exploration through the history of photography
neral. This timeline can be created using any program you wish, or feel free to

Answers

The timeline is a representation of a chronological sequence of events that occurred in a specific period. It is an important aspect of analyzing art and photography. Below are the three historical periods, art themes, and trends associated with the era, photographic styles, and most popular or frequently photographed subjects during the period:1.

Renaissance Period (1400-1600)Art Theme: Religious themes, classic myths, and historical events were a prominent theme.

Trend: The dominant trend during this period was the perfection of art as a skill. A focus on balance, symmetry, and realistic human features.

Photographic Style: There were no photographs at this time. The art was created by paint and other art forms.Most Popular/Frequently Photographed Subjects: People, daily life, architecture, and nature2.

Modernism Period (1900-1930)Art Theme: Experimental, abstraction, and simplification were the prominent art themes.

Trend: The dominant trend was the change of perception towards art and creative representation.

Photographic Style: During this period, photographers shifted their interest in capturing events in reality to exploring the abstract.

Most Popular/Frequently Photographed Subjects: Human faces, motion, and landscape3.

Postmodernism Period (1960-1990)Art Theme: The prominent art theme was the exploration of cultural differences and diversity.

Trend: The dominant trend was the creation of art that served as a critique to modernism.

Photographic Style: Photography became a primary source of artistic expression, and photographers created various styles.

Most Popular/Frequently Photographed Subjects: Social changes, women's rights, multiculturalism, and globalization.In conclusion, exploring the history of photography is an essential aspect of analyzing art and understanding the various artistic themes, trends, styles, and subjects that dominated each period.

For more such questions on Renaissance Period, click on:

https://brainly.com/question/879750

#SPJ8

Directions: On the line before each item, write ”I” if the substance is an electric insulator or “C” if the substance is an electric conductor.

_____22. paper

_____23. glass

_____24. iron

_____25. plastic

_____26. gold

_____27. copper

_____28. wood

_____29. Rubber

_____30. Aluminum

Answers

Answer:

___I__22. paper

___I__23. glass

___C__24. iron

___I__25. plastic

___C__26. gold

__C___27. copper

___I__28. wood

___I__29. Rubber

___C__30. Aluminum

Materials which do not allow current to flow easily are called insulators.

Materials which allows current to flow easily are called Conductors.

Write a program that prompts the user to enter three integers one at a time. The program should determine which integer is smallest and print the result (see example output). Include a nested decision block and pay close attention to proper indentation.

Answers

Then's a Python program that does this  

num1 =  int( input(" Enter the first integer"))  

num2 =  int( input(" Enter the alternate integer"))  

num3 =  int( input(" Enter the third integer"))  

if num1< num2  

if num1< num3  

lowest =  num1      

lowest =  num3    

if num2< num3  

lowest =  num2      

lowest =  num3  

print(" The  lowest integer is",  lowest)    

In order to write a program that prompts the  stoner to enter three integers one at a time and determines which integer is the  lowest, we need to use nested decision blocks and pay close attention to proper indentation.

Then's a Python program that does this  Prompt the  stoner to enter three integers one at a time:

num1 =  int( input(" Enter the first integer"))  

num2 =  int( input(" Enter the alternate integer"))  

num3 =  int( input(" Enter the third integer"))  

Determine which integer is the  lowest using nested decision blocks  

if num1< num2  if num1< num3   lowest =  num1   additional   lowest =  num3   additional  if num2< num3   lowest =  num2   additional   lowest =  num3  publish the result  print(" The  lowest integer is",  lowest)

In this program, we first prompt the  stoner to enter three integers one at a time using the input() function and convert them to integers using the int() function. Also, we use nested decision blocks to determine which integer is the  lowest.

Eventually, we  publish the result using the print()function.The program will affair the  lowest integer out of the three integers entered by the  stoner.

For more such questions on Python, click on:

https://brainly.com/question/26497128

#SPJ8

To start slide show of a presentation from the first slide.

A. From Slide Show Tab choose from Beginning button

B. From Slide Show Tab choose View Show button

C. From Slide Show Tab choose Rehearse timing button

D. From Slide Show Tab choose Custom Slide Show button​

Answers

the answer is a




step by step explanation:

Answer:

a

Explanation:

What is the main advantage of a bitmap image?

a
It is HTML-specific.function
b
It is Python-specific.
c
It includes minimal detail.
d
It includes a lot of detail.

Answers

The answer is d. Hope this helps

Find the solution of the equation
4x+10/3=25?3-x ​

Answers

I’m going to assume the ? is dividing and if that’s the case X = 1

hype or sway house and why

me hype bc they are funny to me

Answers

Hype house easy it’s way better

who you on
1. What type of web page is classified as flat or stationary?
A. Web 1.0 B. Web 2.0 C. Web 3.0 D. Web 4.0​

Answers

Answer:

Web 1.0

Explanation:

Web 1.0 was its terminology used during the World Wide Web to reference to the first period of growth that was characterised by basic static websites. Flat pages: Pages did not provide dynamic functionality that modified depending on the activities of website users. Websites were primarily informative at that time.

Web pages which lacks interactivity such that only contents which have been originally posted remains there and hence do not change characterize the earliest form of web pages called Web 1.0.

The name stationary or flat web was culled from how the the earliest form of web pages appear. They do not contain visuals or interactive capability.

In static web pages, contents remain as they are posted as editing cannot be made on the go as it is possible with dynamic web pages which characterizes more newer forms of web pages.

Therefore, the earliest form of web pages, Web 1.0 are referred to as being flat or stationary.

Learn more :https://brainly.com/question/9060926

#Write a function called grade_scantron. grade_scantron should
#take as input two lists: answers and key. Each list contain
#strings. Each string will be only one letter, a character
#from A to E. grade_scantron should return how many questions
#the student got "right", where a student gets a question
#right if their answer for a problem matches the answer key.
#
#In other words, if value of the first item in answers matches
#the value of the first item in key, the student gets a point.
#If it does not, the student does not get a point.
#
#If the lists do not have the same number of items, return
#-1 to indicate that the answer key did not belong to the
#same test as the student's answers.\
#
#Hint: in the past, lots of people have tried to do this using
#the index() method. That won't work! You'll need to track the
#index yourself.


#Write your function here!
def grade_scantron(answers,key):
count=0
result=-1
try:
if len(key) != len(answers):
result=-1
except:
result=count
for index, item in enumerate(answers):
if(key[index] == answers[index]):
count+=1

return(result)

#Below are some lines of code that will test your function.
#You can change the value of the variable(s) to test your
#function with different inputs.
#
#If your function works correctly, this will originally
#print: 7
answers = ["A", "B", "B", "A", "D", "E", "B", "A","D"]
key = ["A", "B", "B", "A", "D", "E", "B", "A", "D"]
print(grade_scantron(answers, key))

I keep getting -1 and I don't know why. No matter what I do, I can't get the code to print either -1 (if the lengths don't match) or the amount of correct answers ( if the lengths do match up).

Answers

En este ejemplo vemos que, por la información dada, no es posible que esta oración tenga coherencia o sentido. En este caso el nexo o conector que une ambas oraciones no debería haberse utilizado, puesto que ambas oraciones no tienen relación. Por ende corresponden a estructuras diferentes y no es posible que mantengan una coherencia. Varias oraciones sin coherencia, generan textos incoherentes.

Create a class named Console, and move all the methods that retrieve and validate user input to that class. These methods can remain static. Create a class named Game, and move all the methods that display messages and handle user guesses to that class. Adjust these methods so they aren't static, and use instance variables of the Game class to keep track of numbers, guesses, and so on. Update the application to use these classes and their methods. Make sure the application functions the same as it did before.

Answers

Answer:

Here is the Console class:

import java.util.Scanner;  // to accept input from user

public class Console {   // class name

public Console() {}   //class constructor

public int getInt(Scanner sc, String prompt) { //gets user's number  

int i = 0;   //initialize i to 0

boolean isValid = false;   // checks for valid input

while (!isValid) {   //loop iterates as long as input remains valid

System.out.print(prompt);   //displays prompt

if (sc.hasNextInt()) {   // checks for the next token (input number)

i = sc.nextInt();   // scans and reads the next number

isValid = true;   // checks if input is valid

} else {   //if input is not valid

System.out.println("Error! Invalid integer value. Try again.");  }  //displays error message

sc.nextLine(); // discard any other data entered on the line   }

return i;  }  //returns number

public int getIntWithinRange(Scanner sc, String prompt, //checks users guess if outside parameters or not  

int min, int max) {  

int i = 0;  

boolean isValid = false;   //sets isValid to false

while (!isValid) {   //keeps iterating and stops when isValid is false

i = getInt(sc, prompt);   //calls getInt method to get users number

if (i <= min) {   //if number is less than value of min

System.out.println("Error! Number must be greater than " + min);   //displays this message

} else if (i >= max) {   //if number is greater than that of max

System.out.println("Error! Number must be less than " + max);   //displays this message

} else {   //if guess is right

isValid = true;   } } //sets isValid to true

return i;  } //returns that number

public  String getRequiredString(Scanner sc, String prompt) { //Asks for user's string input  

String s = "";  

boolean isValid = false;   //sets isValid to false

while (!isValid) {      //keeps iterating and stops when isValid is false

System.out.print(prompt);    //displays prompt

s = sc.nextLine();   //reads next line (read next string input value)

if (s.equals("")) {   //if user enters nothing

System.out.println("Error! This entry is required. Try again.");   //display this message

} else {   //if user enters a string input

isValid = true;   }  }  //sets isValid to true

return s; }  //returns string

public  String getChoiceString(Scanner sc, String prompt, //Checks for users input for Y/y ignores caps  

String s1, String s2) {

String s = "";  

boolean isValid = false;   //sets isValid to false

while (!isValid) {   //iterates until isValid is false

s = getRequiredString(sc, prompt);   //calls method to get the input string

if (!s.equalsIgnoreCase(s1) && !s.equalsIgnoreCase(s2)) {  // checks users input for Y/y ignores caps  

System.out.println("Error! Entry must be '" + s1 + "' or '" + s2 + "'. Try again.");   // displays error message that entry must be y or Y

} else {   //if user enters y or Y

isValid = true;   } }   //sets isValid to true

return s;  } } //returns y or Y

Explanation:

Here is the Game class

public class Game {  // class name

public Game() {}   //class constructor

public void displayWelcomeMessage() { //displays message  

System.out.println("Welcome to the Guess the Number Game");  

System.out.println("++++++++++++++++++++++++++++++++++++");  

System.out.println(); }

public  void displayPleaseGuessMessage() { //displays message for user to guess from 1-100  

System.out.println("I'm thinking of a number from 1 to 100.");  

System.out.println("Try to guess it.");  

System.out.println();}

public  void displayCorrectGuessMessage(int counter) { //display user's current guess count

System.out.println("You got it in " + counter + " tries.");  

if (counter <= 3) {   //if user guesses the number in 3 or less tries

System.out.println("Great work! You are a mathematical wizard.\n");  

} else if (counter > 3 && counter <= 7) {   //if user guesses the number greater than 3 but less than or equals to 7 tries

System.out.println("Not too bad! You've got some potential.\n");  

} else {   //if user guesses the number after more than 7 tries

System.out.println("What took you so long? Maybe you should take some lessons.\n"); }}

public  void displayGuessAgainMessage(int number, int guessNumber) { //Asks user to guess again  

int difference = guessNumber - number;  

if (guessNumber > number) {   //if guessNumber is greater than number

if (difference > 10) {   //if difference between guessNumber and number is greater than 10

System.out.println("Way too high! Guess again.\n");   //guessed number is higher than correct one

} else {  

System.out.println("Too high! Guess again.\n");  }

} else {  

if (difference < -10) {   //if difference between guessNumber and number is less than -10

System.out.println("Way to low! Guess again.\n");   //guessed number is lower than correct one

} else {  

System.out.println("Too low! Guess again.\n");}}}}

The main program and explanation of these above programs are given in the attached document.

The output of the program is attached.

7. Ctrl + V is used to __________

A. Change the text direction

B. Chand page rotation to vertical (LandScape).

C. Copy and paste a selected text

D. Copy the selected text

E. Paste the selected text

F. Cut and paste a selected text

G. Both C and F​

Answers

Answer:

E=Paste

Explanation:

E= Paste the selected text

Answer:

e

Explanation:

because if you do Ctrl+c it copies and then you have to paste so you use Ctrl+v Therefore the answer is E

which type of tools enable you to choose only a portion of the image

selection, paint, exposure or color​

Answers

Answer-which type of tools enable you to choose only a portion of the image

selection, paint, exposure or color​?

Explanation:

Your answer is brush,eyedropper,and lasso all work.

Compute the approximate acceleration of gravity for an object above the earth's surface, assigning accel gravity with the result. The expression for the acceleration of gravity is: (G * M) / (d 2), where G is the gravitational constant 6.673 x10-11, M is the mass of the earth 5.98 x 1024 (in kg), and d is the distance in meters from the Earth's center (stored in variable dist center).

Sample output with input: 6.3782e6 (100 m above the Earth's surface at the equator) Acceleration of gravity: 9.81

Answers

Answer:

Written in Python

G = 6.673 *pow(10,-11)

M = 5.98 *pow(10,24)

d = float(input("Distance: "))

g = (G * M)/(pow(d,2))

print("Acceleration of gravity: "+str(g))

Explanation:

This line initializes the gravititational constant

G = 6.673 *pow(10,-11)

This line initializes the mass of the earth

M = 5.98 *pow(10,24)

This line prompts user for object distance

d = float(input("Distance: "))

This line calculates the object's gravity

g = (G * M)/(pow(d,2))

This line prints the calculated gravity without approximating

print("Acceleration of gravity: "+str(g))

Answer:

G = 6.673e-11

M = 5.98e24

dist_center = 6.3782e6

accel_gravity = (G*M)/(dist_center * dist_center)

print(accel_gravity)

Explanation:

Write one or more C statements that assign the correct value to discount, using the logic described here:
1. Assign .20 to discount if dept equals 5 and price is $100 or more.
2. Assign .15 to discount if dept is anything else and price is $100 or more.
3. Assign .10 to discount if dept equals 5 and price is less than $100.
4. Assign .05 to discount if dept is anything else and price is less than $100.

Answers

Answer:

See Explanation

Explanation:

To solve this, I'll skip variable declarations

if (dept == 5 && price >= 100){//1

discount = 0.20;

}

else if (price >= 100){ //2

discount = 0.15;

}

else if (dept == 5 && price < 100){//3

discount = 0.10;

}

else if (price < 100){//4

discount = 0.05;

}

The question requires if conditional statements and that has been shown in the above lines of code

Also, the comments (//) indicates the number of each line and it does exactly what is required.

Create a function called notBad that takes a single argument, a string.
It should find the first appearance of the substring 'not' and 'bad'.
If the 'bad' follows the 'not', then it should replace the whole 'not'...'bad' substring with 'good' and return the result.
If it doesn't find 'not' and 'bad' in the right sequence (or at all), just return the original sentence.
For example:
notBad('This dinner is not that bad!'): 'This dinner is good!'
notBad('This movie is not so bad!'): 'This movie is good!'
notBad('This dinner is bad!'): 'This dinner is bad!'

Answers

Answer:

The Following are the method definition to this question:

def notBad(s):#defining a method notBad that take s variable as parameter

   if 'not' not in s or 'bad' not in s: # defining If block that checks "not or bad" is not in the string

       return s#return string value

   n= s.index('not')#defining n variable that store index value of not

   b= s.index('bad')#defining b variable that store index value of bad

   if n<b:#defining if block that compare n and b value  

       return s[:n]+'good'+s[b+3:]#use slicling for remove value and add another value

print(notBad('This dinner is not that bad!'))#call method and print value

print(notBad('This movie is not that bad!'))#call method and print value

print(notBad('This dinner bad!'))#call method and print value

Output:

This dinner is good!

This movie is good!

This dinner bad!

Explanation:

In the above given, method definition a method "notBad" is defined that takes variable "s" as a parameter, which is used for input the string value.

In the next step, an if block, is defined, that checks in string value "not or bad" are not available in the input string. if the condition is true, it will return, that string value.

In the next line "n and b" variable has defined, that store "not and bad" index value, and use if block that the come to its value and use slicing to re remove its value.

How did punch cards improve the weaving process?

Punch cards allowed a weaver to give instructions to the loom.

Punch cards made it easier for the weaver to put the string on the loom.

Punch cards allowed a weaver to choose the colors for the fibers used in a loom.

Punch cards allowed a weaver to get feedback from the loom.

Answers

Answer:

Punch cards allowed a weaver to give instructions to the loom.

Explanation:

Cathy O'Neal refers to the practice of pursuing the perpetrators of minor crimes as "zero
tolerance" - what is the importance of the establishment of this policing strategy for the
building of tools to predict crime hot spots?

Answers

Answer:

Supporting the Establishment of Predictive Policing Processes . ... Crime Hot Spots in Richmond, Virginia, 8:00 p.m.–12:00 a.m.................. 48. 2.11. Trends ... Using a Risk Terrain Analysis Tool to Predict Purse Snatching Risk ............ 54 ... For a policing strategy to be considered effective, it must produce tangible results. The.

is this helpful if it is can  you give brainlest

Explanation:

We assume that ABC Corporation has two business offices. These offices are in the cities of Orlando and Miami. These cities are located 220 miles apart. We assume that there are 3 employees in Orlando and 6 employees in Miami. Further, we assume that each employee calls the other site 4 times a day and talks for an average of 5 minutes. Further, each employee calls others in the same office 10 times a day for an average of 3 minutes. We will assume that 20% of the calls happen in the peak hours of the day. A blocking rate of 5% is acceptable for calls between the 2 sites.
a. What is the cost of PSTN (straightforward) solution?
b. Perform the Erlang calculation
c. Calculate the Blocking
d. Number of links required between these sites with respect to 5% blocking rate.
e. Number of Leased lines and PSTN lines
f. Total cost of your design
The cost of communications services and components
Item Cost
Line to PSTN $25/Month
Local Call $0.05/Minute
Long Distance Call $0.40/Minute
PBX $2000 Purchase Price
Leased Line $275/Month

Answers

Answer:

The following are the answer to the given points:

Explanation:

In point (a):

Calculating the long-distance call cost:

[tex]= 4 \times 5 \times 0.40 \\= 20 \times 0.40\\= 8[/tex]

Calculating the local call cost:

[tex]= 10 \times 3 \times 0.05\\ = 30 \times 0.05\\= 1.5[/tex]

Calculating the overall cost of PSTN:

[tex]= 25 + (4 \times 5 \times 0.40) + (10 \times 3 \times 0.05) + 2000 + 275 \\= 25 + 8 + 1.5 + 2000 + 275 \\= 2309.5[/tex]

In point (b):

Calculating the call rate per second and the average arrival rate:

[tex]\to (\lambda) = 0.2[/tex]

The call average length:

[tex]\to (T_s) = - 8 \\\\ = (8 \times 60) \ seconds \\\\ = 480 \ seconds[/tex]  

The complete agent number:

[tex]\to (m) = 9[/tex]

The strength of traffic:

[tex]\to u = \lambda \times T_s \\\\ = (0.2 \times 480) \\\\ = 96[/tex]    

The occupancy of the agent:

[tex]\to p = \frac{u}{m} \\\\[/tex]

      [tex]= \frac{96}{9} \\ \\= 10.66[/tex]  

Calculation of obtained:

[tex]= \frac{(\frac{um}{m!})}{(\frac{um}{m!})} + (1-p) \sum {m-1} _{k=0} \ \frac{uk}{k!}[/tex]

We get = 0.329 to substitute values.  

In point (c):

The rate of blocking = [tex]5 \%[/tex]

average call time [tex](T_s) = 480 \ seconds[/tex]

                                    [tex]= 0.05 \times 480 \ seconds \\ = 24 \ second[/tex]

In point (d):

Calculating the number of link, which is required:  

[tex]= \frac{275}{5} \\\\ =55[/tex]

In point (e):

Calculating the Line Number:

[tex]= \frac{275}{5} \\\\ =55[/tex]

PSTN line number:

[tex]= (\frac{2000}{55}) \\\\ = 36.3636\\\\= 37[/tex]

In point (f):

The gross design expense = $ 2309. 5

mention two hardware groups​

Answers

Answer:

input Devices, Processing Devices, Output Devices, Memory/Storage Devices

Explanation:

true or false.the highest size of a font (html) is 10.

Answers

Answer:

False.

Explanation:

It's not true.

I believe it is False

Plz answer me will mark as brainliest​

Answers

First one I think RAM and second one is Barcode reader
Other Questions
a crate is lifted vertically 1.5m and then held at rest. the crate has a weight 100N. how much work was done in lifting the crate from the ground to its final position. now suppose the crate is lifted so rapidly that air resistance was significant during the raising. how much work was done by the lifting force as the box was raised 1.5m help plsss chose carefulL. if you are in k12 or you took the test in begging you hepl. A deductive argument is always a stronger argument than an inductive argumentO TrueFalseA Moving to another question will save this (ii)Elasticity is a useful decision making tool used by company management in running their operations. John is currently selling peanut butter for Zmw15.00 per bottle and demand at this price is 120 bottles per month. He is planning to reduce the current price by Zmw3.00 per bottle and expects that demand will increase by 30% per month. Using the Point Method and assuming that the projections will be achieved in full, advise John whether he should proceed with the price reduction decision. (50 marks) Points A (-5,6), B (2,-2), and C (-6,-3) are placed in three different quadrants of a Cartesian coordinate system. Convert each set of Cartesian coordinates to polar coordinates. The angle should be reported as a positive angle, in degrees, from the positive x-axis. (0 < < 360). What is the coordinate for point A? Recall this should be in units of degrees. t the break-even point of 2,000 units, variable costs are $110,000, and fixed costs are $64,000. How much is the selling price per unit? a. $87 b. $23 c. $32 d. Not enough information which brain structure is associated with the limbic system? multiple choice pons hippocampus medulla oblongata frontal lobes brain stem A principle of organization design is that organization design facilitates the ____________________________________. a. development of investment capital b. satisfaction of employees c. hiring of staff d. implementation of strategies Which of the following are disadvantages of bureaucratic organizations? Check all that apply. The division of labor may limit employees from gaining broad skills. Social processes may not receive adequate attention Changing rules may be difficult. Reliance on rules usually results in efficient operations. For each item, categorize the statement to indicate whether it is consistent with Likerts description of a System 1 organization or a System 2 organization. what lessons could you take from cinderella & what was the moral of the story ? What are the three major elements of the total customer response time? Multiple Choice Receipt time, manufacturing lead time, delivery time. Wait time, delivery time, cycle time. Manufacturing lead time, production cycle time, receipt time. Receipt time delivery time, order time. Receipt time, cycle time, wait time. Explain how the author's TONE and organization in What Is News help them achieve their purpose. Use examples from the text to support the authors claim. Can you think of product categories in the maturity ordecline stage that you think are poised for reinvention, or thathave been successfully reinvented? Give examples and explain youranswer. Miguel has 48photo and he said s allowed to use 12 pages An assembly must vreae on finished product every 5 minutes. The sum of the task times required to create a product is 700 seconds. What is theoretical minimum number of this assembly line? a.4 b.3 c.5 d.233e. 140 youhave decided to pursue a careerthere mate spacific to starbucks. Eucrefie 1-1 Accounting and accounting-reiated opportarites Lo3 Edernal auditiri, (2) a crotrolier, and (0) a ter speriallat. Fuencive 14 Applying the Cha What is Thoreaus first thought upon being imprisoned in "Civil Disobedience"?A. He is concerned about how long he will be there.B. He wishes to get out of prison as soon as possible.C. He considers the prison a foolish institution.D. He wonders why he was put behind bars. Providing for Doubtful Accounts At the end of the current year, the accounts receivable account has a debit balance of $629,000 and sales for the year total $7,130,000.a. The allowance account before adjustment has a debit balance of $8,500. Bad debt expense is estimated at 1/2 of 1% of sales. b. The allowance account before adjustment has a debit balance of $8,500. An aging of the accounts in the customer ledger indicates estimated doubtful accounts of $27,200c. The allowance account before adjustment has a credit balance of $8,100. Bad debt expense is estimated at 1/4 of 1% of sales.d. The allowance account before adjustment has a debit balance of $8,100. An aging of the accounts in the customer ledger indicates estimated doubtful accounts of $67,200Determine the amount of the adjusting entry to provide for doubtful accounts under each of the assumptions (a through d) listed above.a. $ ________b. $ ________c. $ ________d. $ ________ you borrowed $1,690 for 5 1/2 years at 5.7% compounded semianually. what total will you pay back? How would you rewrite the job advert you choose to ensure you attracted the right talent? Provide examples of the language/graphics you would use.Relate to the following HUMAN RESOURCES TOPIC: Attracting and Selecting Talent a zooarchaeologist may assign a small fragment of a small-sized long bone to class 1 of the five standard animal size classes because: