What is the difference between interLATA and intraLATA calls?

Answers

Answer 1

Answer:

A telephone call within the same LATA (same region). IntraLATA is local telephone service. InterLATA refers to a call from one LATA to another, which can be within a state or from state to state (interstate).

Explanation:

Answer 2

Answer:

Interstate calls are calls between two states while Intrastate calls are calls within the same state.

Explanation:


Related Questions

. 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.

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

Question # 5 Dropdown What is the output for the following code? >>> phrase = "help23" >>> phrase.isalnum() h​

Answers

The output is True because the string phrase contains only letters and numbers.

Answer:

true

Explanation:

hype or sway house and why

me hype bc they are funny to me

Answers

Hype house easy it’s way better

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:

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

In Python
1.9 LAB: Input: Mad Lib

Mad Libs are activities that have a person provide various words, which are then used to complete a short story in unexpected (and hopefully funny) ways.

Complete the program to read the needed values from input, that the existing output statement(s) can use to output a short story.

Ex: If the input is:

Eric
Chipotle
12
cars
Then the output is:

Eric went to Chipotle to buy 12 different types of cars

Answers

name = input("Enter a name: ")

place = input("Enter a place: ")

number = input("Enter a number: ")

noun = input("Enter a noun: ")

print("{} went to {} to buy {} different types of {}".format(name, place, number, noun))

I hope this helps!

Following are the Python program for input value and prints its value with the message.

Program Explanation:  

In the python code, four variables "na, l, nu, no" are declared that inputs value by using the input method. In this, except for the "nu" variable, all is used for the input string value. After input value, the print method has used that prints value with a message.

Program:

#defining variable that uses the input method to the input value

na = input()#defining na variable to input value

l = input()#defining l variable to input value

nu = int(input())#defining nu variable to input integer value

no = input()#defining no variable to input value

print(na, 'went to', l, 'to buy', str(nu), 'different types of', no)# printing input value and print value with message

Output:

Please find the attached file.

Learn more:

brainly.com/question/18752544

What are the benefits of online notebooks? Check all that apply..

They allow users to store files.
They allow users to share files.
They give users a way to practice for tests.
They help users organize assignments.
They allow users to clip information from web pages.
They can serve as school calendars.

Answers

Answer:

its a They allow users to store files. b They allow users to share files. d They help users organize assignments and f They can serve as school calendars.

Explanation:

:))))

Answer:

abdf

Explanation:

Why is forwarding messages useful?
O to pass along messages and attachments to those who should see them
* to return a message to the message sender and all other original recipients
O to courtesy copy someone with a reply message
O to move old messages into a message archive

Answers

A. To pass along messages and attachments to those who should see them.

Answer:

A. to pass along messages and attachments to those who should see them

Hope this helps :D

Why the following code is giving error NAME="REHMAAN" PRINT ("hello') PRINT ("HI")

Answers

Answer:

corrected code:

NAME="REHMAAN"  

print ("hello")  

print ("HI")

Explanation:

In python, put every statement on its own line. Even indentation matters.PRINT should be in lowercase, i.e., printThe string quotes should be both " or both ', but not a mix like in "hello'

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.

What are some elements commonly included in forms in Word? Check all that apply.

embedded charts
dates
text
macros
drop-down lists

Answers

Answer:

dates

text

drop-down lists

Answer:

B-dates

C-text

E-drop-down lists

Explanation: ;)

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.

Place the steps in order to link and place text into the document outline, effectively creating a master document.
Click Insert
Click Show Document.
Click Open.
Select the document file.
Click Outline view.

Answers

Answer:

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

Explanation:

This question is asked about placing or linking text in an outline view and what would be the correct steps of placing text in an outline view.

The correct order to link and place text into the document outline, effectively creating a master document is given below:

Click Outline viewClick Show DocumentClick InsertSelect the document fileClick open

Answer:

Click Outline view

Click Show Document

Click Insert

Select the document file

Click open

Explanation:

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

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:

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

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.

what is wrong with my code???

using System;

namespace FavoriteNumber
{
class Program
{
static void Main(string[] args)
{

Console.Write("Enter your favorite number!: ");
int faveNumber = Console.ReadLine()
int number = Convert.ToInt32("string value")

Answers

Answer:

using System;

namespace FavoriteNumber  

{

class Program

{

static void Main(string[] args)  

{

Console.Write("Enter your favorite number!: ");  

int number = Convert.ToInt32(Console.ReadLine());  

}

}

}

What declarations, inputs, processing, and outputs are needed to calculate the area of a rectangle?​

Answers

Answer:

Declaration: length, width, area

Inputs: length & width

Processing: length & width

Output: area

Explanation:

The area of a rectangle uses the formula: [tex]A=lw[/tex]. In your coding, you need to ask for user input for the length and width in order to calculate the area.

Your processing would simplify multiple the user's input together stored in some type of sum variable.

Now I don't know what program language you are using but I will give you an idea.

Code (Python)

#Define variables equal to user input.

length = int(input("Enter the length of the rectangle: "))

width = int(input("Enter the width of the rectangle: "))

area = length * width

Your output would be the area, but you can manipulate it if you want.

print("The area of the rectangle is", area)

So the program would run like this:

Enter the length of the rectangle: 3 <--you type a number

Enter the width of the rectangle: 5

The area of the rectangle is 15

Sidenotes: if you are using ints, the number MUST be a whole number or the program will throw an error. If you are using decimals, use a float.

what is the name of the symbol that is used to classify and categorize information?​

Answers

Answer:

A Hashtag

Explanation:

Answer: it’s Hashtags#

A speaker says:
Can you please bring me some milk I mean coffee?
Which of the following is the most correct way to transcribe this according to our Style
Guide? Type A, B, C, or D in the box below.
A) Can you please bring me some coffee?
B) Can you please bring me some milk, I mean coffee?
C) Can you please bring me some milk-- I mean, coffee?
D) Can you please bring me some milk -- I mean coffee?

Answers

The correct answer to the question is D

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:

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

mention two hardware groups​

Answers

Answer:

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

Explanation:

in public speaking situation the sourse of the message is the person listening to the speech​

Answers

Answer:

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

Explanation:

This question is about terminologies or elements used in public speaking.

So generally, in public speaking, the source is the person who is giving the speech, the channel is the speaker's use of verbal and nonverbal communication, and the receivers are the audience members listening to the speech.

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

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

Plz answer me will mark as brainliest​

Answers

First one I think RAM and second one is Barcode reader

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:

Other Questions
Which feature of a lyric poem does the repetition of the word let best illustrate?the musical qualitythe single speakerthe speakers emotionsthe long length Coyne, W. (2007). Creating our own happiness.This I Believe./(1) indicate the core value(s) that the author presents in theessay (2) discuss why you find your ch if 8.2 ml of 0.055 m naoh is required to titrate a 5.5 ml sample of potassium bitartrate, what is the concentration of hc4h4o6- in meiosis, homologous chromosomes pair and synapse before segregation in meiosis i. how is it possible for the x and y chromosomes in humans, which are very different, to pair with one another? In contrast to sixty percent of kindergarteners having good cognitive skills that make them more likely to succeed, how many have the necessary social skills to succeed?30%45%50%40% The bowling teams score at last weeks competition were 123, 140, 155, and 167. What is the media score for the team? two opposite integer are 12 unit apart on a number line .what are the integers? Which phrase best completes the diagram?CauseEffectled toThe Hebrews fleeEgypt for Canaan.?OA. The Hebrews are forced into slavery by the Phoenicians.B. The Hebrews split up as part of the Jewish Diaspora.C. The Hebrews establish the kingdom of Israel.D. The Hebrews retreat back to Egypt. Read the passage from Sugar Changed the World.A rock drawing in Spain from about 7000 B.C. shows a man who has climbed a hillside, found a crevice holding a hive, and is reaching in to grab the honey. Indeed, a lucky wanderer in just about any part of Europe, Africa, or Asia that wasn't covered with ice could stumble on a hive andat the risk of some stingscome away with a treat. (People in the Americas had no bees, so used syrups made from maple trees, agave cactus, or mashed fruits for their sweeteners.) Then someone figured out that you didn't have to be lucky. You could hollow out a log near bees, and they would make it their home. You could "keep" beesyou didn't have to find them.Which statement best describes the structure of this passage? I need help 2x + 1 when x = 2 Diiodine pentaoxide is used in respirators to remove carbon monoxide from air:I2O5(s) + 5CO(g) -----> I2(s) + 5CO2(g)(a) What mass of carbon monoxide could be removed from airby a respirator that contains 50.0 g of diiodine pentaoxide?(b) What mass of I2 would remain in the respirator? Karen drove 780 miles in 12 hours.At the same rate, how many miles would she drive in 9 hours? some antarctic explorers heading due south toward the pole travel 50. km during the first day. A sudden snow storm slows their progress and they move only 30. km in the second day. With plenty of rest they travel the final 65 km the last day and reach the pole.What was the explorers' displacement? You run a nail salon. Fixed monthly cost is $5,699.00 for rent and utilities, $6,473.00 is spent in salaries and $1,274.00 in insurance. Also every customer requires approximately $3.00 in supplies. You charge $99.00 on average for each service. You are considering moving the salon to an upscale neighborhood where the rent and utilities will increase to $10,510.00, salaries to $6,054.00 and insurance to $2,016.00 per month. Cost of supplies will increase to $7.00 per service. However you can now charge $145.00 per service. At what point will you be indifferent between your current location and the new location Lucas worked for an old-5chool business owner. When Lucas presented the ldea of building relational exchanges with key vendor and buyers, the owner was skeptical at best. He told Lucas, "im not at all interested in having people feel good about business. It's not a party." Lucas then told him it could increase profits, and the owner took a new Interest. Which of the following is NOT a way Lucas could demonstrate that relational exchanges would increase profits? Lucas's firm could lower inventory costs with longer-term contracts with flexible deliveries Lucas's firm would not have to spend as much to test and examine in-bound materials Lucas's firm could reduce purchasing costs through fewer searches and negotiations. Lucas's firm could get the lowest price on the key materials they needed If a seller faces an inelastic demand for her product, then an decrease in price will...decrease the seller's total revenue.make the seller's total profit to rise.have no effect on the seller's total revenue.make the seller's total revenue to rise analyze COVID-19s business impact on the restaurant industryand develop a marketing program to overcome the challenges duringand after the pandemic crisis. Why was the Battle of Yorktown important? a nurse is reviewing the medical record of a client who has a new prescription for tramadol. The nurse should identify that which of the following conditions is a contraindication for tramadol?hyperthyroidismseizure disorderrheumatoid arthritisurinary incontinence Help Prepare a Guide on White-Collar CrimeCongratulations! You've been hired as a business consultant to a clothing outlet called Collars andMoore, and it opens in your local mall next month. The outlet's owners, Hippolyta Collars andAntigone Moore, are writing an employee handbook on white-collar crime for their staff, and theyhave enlisted your expertise. They haven't written a handbook before and want to ensure thehandbook captures all of the relevant information.Step 1. List five potential conflicts that ANY employee of the company could face, be it sales staffon the floor or management staff in the office, or even a warehouse worker that ships products tothe outlet store,