Write a program that creates an integer array with 40 elements in it. Use a for loop to assign values to each element of the array so that each element has a value that is triple its index. For example, the element with index 0 should have a value of 0, the element with index 1 should have a value of 3, the element with index 2 should have a value of 6, and so on.

Answers

Answer 1

Answer:

public class Main

{

public static void main(String[] args) {

 int[] numbers = new int[40];

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

     numbers[i] = i * 3;

 }

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

     System.out.println(numbers[i]);

 }

}

}

Explanation:

*The code is in Java.

Initialize an integer array with size 40

Create a for loop that iterates 40 times. Inside the loop, set the number at index i as i*3

i = 0, numbers[0] = 0 * 3 = 0

i = 1, numbers[1] = 1 * 3 = 3

i = 2, numbers[2] = 2 * 3 = 6

.

.

i = 39, numbers[39] = 39 * 3 = 117

Create another for loop that iterates 40 times and prints the values in the numbers array


Related Questions

Assume you have 100 values that are all different, and use equal width discretization with 10 bins.
a) What is the largest number of records that could appear in one bin?
b) What is the smallest number of records that could appear in one bin?
c) If you use equal height discretization with 10 bins, what is largest number of records that can appear in one bin?
d) smallest?
e) Now assume that the maximum value frequency is 20. What is the largest number of records that could appear in one bin with equal width discretization (10 bins)?
f) . What about with equal height discretization (10 bins)?

Answers

Answer:

a) 10

b) 1

C) 10

D) 1

E) 20

F)  10

Explanation:

a) The largest number of records that could appear in one bin

 = 10

B) The smallest number of records that could appear in one bin

= 1

C) The largest number of records that cab appear in one bin

= 10

d) smallest number

= 1

e) With frequency = 20. the largest number of records that could appear in one bin with equal width discretization (10 bins)

= 20

f ) with equal height discretization

= 10

Compute the weakest precondition for each of the following assignment statements and postconditions:

a = 2 * (b - 1) - 1 {a > 0}
b = (c + 10) / 3 {b > 6}
a = a + 2 * b - 1 {a > 1}
x = 2 * y + x - 1 {x > 11}

Answers

Answer:

a) b > 3/2

b) c > 8

c) b > 1 - a/2

d) y > 6 - x/2

Explanation:

a)

a = 2 × (b - 1) - 1   {a > 0}

2 × (b - 1) - 1 > 0

2b - 2 - 1 > 0

2b - 3 > 0

2b > 3

b > 3/2

b)

b = (c + 10) / 3 {b > 6}

(c + 10) / 3 > 6

multiply both side by 3

((c + 10) / 3) × 3 > 6 × 3

c + 10 > 18

c > 18 - 10

c > 8

c)

a = a + 2 × b - 1 {a > 1}

a + 2 × b - 1 > 1

a + 2b - 1 > 1

a + 2b > 1 + 1

2b > 2 - a

divide both sides by 2

2b/2 > 2/2 - a/2

b > 1 - a/2

d)

x = 2 × y + x - 1 {x > 11}

2 × y + x - 1 > 11

2y + x - 1 > 11

2y + x > 11 + 1

2y + x > 12

2y > 12 - x

divide both sides by 2

2y/2 > 12/2 - x/2

y > 6 - x/2

One lap around a standard high-school running track is exactly 0.25 miles. Write the function miles_to_laps() that takes a number of miles as an argument and returns the number of laps. Complete the program to output the number of laps. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('{:.2f}'.format(your_value))

Ex: If the input is: 2.2 the output is: 8.80 Your program must define and call the following function: def miles_to_laps(user_miles)

Answers

Answer:

def miles_to_laps(user_miles):

   laps = user_miles / 0.25

   

   return laps

 

miles = float(input("Enter number of miles: "))

print('{:.2f}'.format(miles_to_laps(miles)))

Explanation:

Create a function named miles_to_laps that takes one parameter, user_miles

Inside the function, calculate the number of laps, divide the user_miles by 0.25 (Since it is stated that one lap is 0.25 miles). Return the laps

Ask the user to enter the number of miles

Call the function with that input and print the result in required format

Write a command that will list the names of all link files in the working directory, sorted by inode number.

Answers

Answer:

The answer is "Is command".

Explanation:

This command can be used to display the directory lists via input data throughout the command-line tool. It is a standard result of this report are described, that would be redirected to the command to display the directory information in alphabetical order. This command is part of its GNU core tool package, which is required on all Linux distributions.

References inserted initially as footnotes can be converted to endnotes through an option in the software.

A. True

B. False

Answers

The answer is A. True

The answer is: A) True

media literacy, information literacy and technology literacy are they similar in use? elaborate​

Answers

Answer: Literacy means the ability to understand about a particular skill or discipline.

Explanation:

Media literacy: This is attaining the knowledge of mass media and broadcasting industry.

Information literacy: It helps in discover of necessary information, understanding of information and application of information for various purposes.

Technology literacy: The ability or understanding to explore new technology and its application for various fields.

Media literacy, Information literacy and Technology literacy are similar because they incorporate literacy but they mean different​ words.

Literacy basically means the ability to understand about a particular skill or discipline.

Media literacy means the attaining the knowledge of mass media and broadcasting industry.

Information literacy means the discover of  information, understanding of information and application of information for various purposes.

Technology literacy means the ability to explore new technology and its application for various fields.

In conclusion, the Media literacy, Information literacy and Technology literacy are similar because they incorporate literacy but they mean different​ words.

Read more about literacy

brainly.com/question/2650555

need help asap
Which statement is true of emerging technologies?

Advancements in communication technologies played a minor part in the rise of globalization.
Developments in communication helped remote locations connect with the world.
Malicious entities can misuse emerging technologies.
There are few disadvantages to the widespread growth of the internet.
The complexity of wireless communication prohibits it from being provided in remote locations

Answers

Answer:

Advancements on communication technologies played a minor part in the rise of globalization.

Explanation:

Answer:

Developments in communication helped remote locations connect with the world.

Explanation:

I took the test, plato/edemetuimedemetuim

________ group is used to select font styles. ​

Answers

Answer:

The font group............. ...

4. Word Separator:Write a program that accepts as input a sentence in which all of thewords are run together but the first character of each word is uppercase. Convert the sentence to a string in which the words are separated by spaces and only the first word starts with an uppercase letter. For example the string “StopAndSmellTheRoses.” would be converted to “Stop and smell the roses.”
*python coding

Answers

sent = input("")

count = 0

new_sent = ""

for i in sent:

   if count == 0:

       new_sent += i

       count += 1

   else:

       if i.isupper():

           new_sent += " "+i.lower()

       else:

           new_sent += i

print(new_sent)

The above code works if the user enters the sentence.

def func(sentence):

   count = 0

   new_sent = ""

   for i in sentence:

       if count == 0:

           new_sent += i

           count += 1

       else:

           if i.isupper():

               new_sent += " " + i.lower()

           else:

               new_sent += i

   return new_sent

print(func("StopAndSmellTheRoses."))

The above code works if the sentence is entered via a function.

What is the deference between touch screen phone and keypad phone

Answers

zzzzzzzzzkzkskdxjjeisiwis

Please write in python:

Week 1 (Print menu and take a selection)

At program start, you will print a menu with the contents of your vending machine.

Customize your own vending machine with items of your interest

Your vending machine should have at least 5 items

Accept items to be purchased, or until a sentinel value is entered.

Print the selected item after each selection.

Week 2 (Take many selections, calculate total, and accept payment)

Extend your code to allow users to repeatedly select items for purchase and keep a running subtotal

Your menu should contain a sentinel value for the user to select checkout as an option to finish shopping.

Check that the selection entered is an option of the menu. If not, then print an error message and start over requesting a new selection or to quit.

Calculate amount due with subtotal + sales tax (for your state).

Accept payment in whole dollars

Following the deposit (payment), calculate change due (difference between payment and amount due)

Week 3 (Dispense change)

Extend your code to determine the dollars and coins to be dispensed from the change due or as a refund. This calculation will depend on the payment accepted. For example, if the user selected items totaling $10.35 and they only deposit $7.00, they have provided insufficient payment.

Check that the payment received is greater than or equal to the amount due. If the payment is less than the amount due, then print an error message and prompt the user to enter sufficient funds. If the payment is equal to the amount due, then print a message saying “No change due.”

Print the number of dollars and coins to be dispensed and their denominations.

Week 4 (Incorporating functions)

Extend your code to include the following functions,

print_menu(): non-value returning function to print out the menu at the start of the program and after each item for purchase is chosen. This menu should contain a sentinel for the user to checkout when the user is finished selecting items.

calculate_total(new_item): a value returning function to add up the cost of the item selected.

make_change(change_due): (previous lab assignment): Calculate the users change (“Here is your change: “) in dollars and coins and print a closing message (“Have a great day”).

amount_due(total_price): a value returning function that prints a subtotal and final total that includes sales tax (for your state) added to the total. This function will also require the user to input a whole dollar amount for payment and return the amount of change due and should prompt the user to retry if too little cash is paid.Write a program that reads a list of integers into a list as long as the integers are greater than zero, then output the smallest and largest integers in the list.

Answers

Week 1:

print("1. Skittles    2. M&M's\n3. Starbursts   4. Twizzlers\n5. Twix")

while True:

   item = input("Enter the number of your item to be purchased: ")

   if item == "1":

       print("You chose skittles.")

   elif item == "2":

       print("You chose M&M's.")

   elif item == "3":

       print("You chose Starbursts.")

   elif item == "4":

       print("You chose Twizzlers.")

   elif item == "5":

       print("You chose Twix.")

Week 2:

print("1. Skittles    2. M&M's\n3. Starbursts   4. Twizzlers\n5. Twix")

total = 0

while True:

   item = input("Enter the number of your item to be purchased: ")

   if item == "1":

       print("You chose skittles.")

       total += 2

   elif item == "2":

       print("You chose M&M's.")

       total += 2

   elif item == "3":

       print("You chose Starbursts.")

       total += 1

   elif item == "4":

       print("You chose Twizzlers.")

       total += 3

   elif item == "5":

       print("You chose Twix.")

       total += 4

   elif item == "exit":

       exit()

   elif item == "out":

       total += round(total*0.0625,2)

       print("Your total is: ${}".format(total))

       deposit = int(input("How much money did you input? "))

       change_due = round(deposit - total,2)

       print("Your change due is ${}".format(change_due))

   else:

       print("Please choose an option or enter \"exit\" to exit the vending machine.")

week 3:

print("1. Skittles    2. M&M's\n3. Starbursts   4. Twizzlers\n5. Twix")

total = 0

while True:

   item = input("Enter the number of your item to be purchased: ")

   if item == "1":

       print("You chose skittles.")

       total += 2

   elif item == "2":

       print("You chose M&M's.")

       total += 2

   elif item == "3":

       print("You chose Starbursts.")

       total += 1

   elif item == "4":

       print("You chose Twizzlers.")

       total += 3

   elif item == "5":

       print("You chose Twix.")

       total += 4

   elif item == "exit":

       exit()

   elif item == "out":

       total += round(total * 0.0625, 2)

       print("Your total is: ${}".format(total))

       deposit = int(input("How much money did you input? "))

       while deposit < total:

           deposit = int(

               input("Please input a dollar amount greater than or equal to the total (whole numbers only): "))

       change_due = round(deposit - total, 2)

       if change_due == 0:

           print("No change due.")

       else:

           print("You are owed {} dollars and {} cents".format(int(change_due), round(change_due - int(change_due),2)))

   else:

       print("Please choose an option or enter \"exit\" to exit the vending machine.")

week 4:

def print_menu():

   print("1. Skittles    2. M&M's\n3. Starbursts   4. Twizzlers\n5. Twix    Enter \"out\" to checkout.")

def calculate_total(new_item):

   total = 0

   if new_item == "1":

       print("You chose skittles.")

       total += 2

   elif new_item == "2":

       print("You chose M&M's.")

       total += 2

   elif new_item == "3":

       print("You chose Starbursts.")

       total += 1

   elif new_item == "4":

       print("You chose Twizzlers.")

       total += 3

   elif new_item == "5":

       print("You chose Twix.")

       total += 4

   return total

def make_change(change_due):

   print(

       "Here is your change: {} dollars and {} cents".format(int(change_due), round(int(change_due) - change_due, 2)))

   print("Have a great day")

def amount_due(total_price):

   sales_tax = 0.0625

   final_price = total_price * +(total_price * sales_tax)

   print("Subtotal: {}".format(total_price))

   print("Final total: {}".format(final_price))

   deposit = int(input("Enter how much you deposited: "))

   while deposit < final_price:

       deposit = int(input("Enter an amount greater than or equal to {}".format(final_price)))

   make_change(deposit - final_price)

total = 0

while True:

   item = input("Enter the number of your item to be purchased: ")

   if item == "1":

       print("You chose skittles.")

       total += 2

   elif item == "2":

       print("You chose M&M's.")

       total += 2

   elif item == "3":

       print("You chose Starbursts.")

       total += 1

   elif item == "4":

       print("You chose Twizzlers.")

       total += 3

   elif item == "5":

       print("You chose Twix.")

       total += 4

   elif item == "exit":

       exit()

   elif item == "out":

       sales_tax = 0.0625

       total += round(total * sales_tax, 2)

       print("Your total is: ${}".format(total))

       deposit = int(input("How much money did you input? "))

       while deposit < total:

           deposit = int(

               input("Please input a dollar amount greater than or equal to the total (whole numbers only): "))

       change_due = round(deposit - total, 2)

       if change_due == 0:

           print("No change due.")

       else:

           print(

               "You are owed {} dollars and {} cents".format(int(change_due), round(change_due - int(change_due), 2)))

   else:

       print("Please choose an option or enter \"exit\" to exit the vending machine.")

I didn't implement the functions because the problem never stated that we had to. Best of luck.

Your company has hired a group of new network techs, and you've been tasked to do their training session on networking standards organizations. Write a brief essay detailing the IEEE and its various committees.

Answers

Answer:

IEEE stands for  Institute of Electrical and Electronics Engineers.

Explanation:

The  Institute of Electrical and Electronics Engineers or more popularly known as the IEEE is a professional body that is associated with the electrical engineering, electronics engineering and computer engineering discipline. It has its headquarters at New York city.

It is one of the the world’s largest professional technical organization that is dedicated to the advancing technology for the welfare of the society and humanity.

It has various committees and communities. These committees are expert committees and take active participation in conferences, research, authorship, etc.

There are committees such as IEEE Awards Board, IEEE Fellow Committee, IEEE Governance Committee, etc.  

Write a function named minMax() that accepts three integers arguments from the keyboard and finds the smallest and largest integers. Include the function minMax() in a working program. Make sure your function is called from main().Test the function by passing various combinations of three integers to it.

Answers

Answer:

public class Main

{

public static void main(String[] args) {

 minMax(1, 2, 3);

 minMax(100, 25, 33);

 minMax(11, 222, 37);

}

public static void minMax(int n1, int n2, int n3){

    int max, min;

    if(n1 >= n2 && n1 >= n3){

        max = n1;

    }

    else if(n2 >= n1 && n2 >= n3){

        max = n2;

    }

    else{

        max = n3;

    }

   

    if(n1 <= n2 && n1 <= n3){

        min = n1;

    }

    else if(n2 <= n1 && n2 <= n3){

        min = n2;

    }

    else{

        min = n3;

    }

    System.out.println("The max is " + max + "\nThe min is " + min);    

}

}

Explanation:

*The code is in Java.

Create a function named minMax() that takes three integers, n1, n2 and n3

Inside the function:

Declare the min and max

Check if n1 is greater than or equal to n2 and n3. If it is set it as max. If not, check if n2 is greater than or equal to n1 and n3. If it is set it as max. Otherwise, set n3 as max

Check if n1 is smaller than or equal to n2 and n3. If it is set it as min. If not, check if n2 is smaller than or equal to n1 and n3. If it is set it as min. Otherwise, set n3 as min

Print the max and min

Inside the main:

Call the minMax() with different combinations

A monopoly is a market that has few competing businesses. many sellers of the same item. many sellers of a variety of products. a single supplier of a good or service.

Answers

Answer:is D

a single supplier of a good or service.

Explanation:

hope this helps

A monopoly is a market that has: D. a single supplier of a good or service.

What is a monopoly?

A monopoly can be defined as a market structure which is typically characterized by a single supplier (seller) who sells a unique product or service in the market, especially through dominance.

This ultimately implies that, monopoly is a market structure wherein the supplier (seller) has no competitor because he is solely responsible for the sale of a unique product or service without any close substitute.

Read more on monopoly here: https://brainly.com/question/13113415

Which actions show the characteristics of a static website? (sentences with the * before and after them are the choices)
Ben created a website. He *chose bold font for the heading* of a web page. He *used a light-colored background.* On the Contact Us page, he *inserted a form* where you could *post a query.* He also posted links to external websites on another page in the website. On clicking these links, the user would be *directed to the external website*

Answers

The action that show the characteristics of a static website is that;

He *chose bold font for the heading* of a web page. He *used a light-colored background.

What are the characteristics of a static website?

A Static Website is known to be a term that is also called a flat or stationary page.

This is known to be a web that is displayed in a web browser in the same way as it is stored. It is made up of web pages that has fixed content coded in HTML and saved on a web server.

Learn more about static website from

https://brainly.com/question/1538272

the notes added to slides can be seen during the presentation. TRUE OR FALSE​

Answers

Answer:

It might be true

Explanation:

Because there's something you press, then it will appear, if you didn't press it, it won't appear

9.2.2: Output formatting: Printing a maximum number of digits. Write a single statement that prints outsideTemperature with 4 digits. End with newline. Sample output with input 103.45632: 103.5

Answers

Answer:

The single print statement that does the required in python is:

print("%.4g" % outsideTemperature)

Explanation:

The full program is as follows:

The first line prompts user for input

outsideTemperature = float(input("Outside Temperature: "))

To print significant figures, we make use of g formats. And this is implemented as follows:

print("%.4g" % outsideTemperature)

The above prints 4 significant digits of outsideTemperature

For other significant figures, simply change the 4 to another number

What manages and controls the speed of a motherboard's buses? *

RAM
CPU
Chipset
L1 cache

Answers

A bus is simply a circuit that connects one part of the motherboard to another. The back side bus connects the CPU with the level 2 cache. The processor determines the speed of the back side bus. The memory bus connects the northbridge to the memory.

I hope this helps

Chipset manages and controls the speed of a motherboard's buses, Items installed on the motherboard include the CPU and RAM.

What is the speed of a motherboard's buses?

The motherboard is managed by the chipset, it is used to transfer data to and from the CPU and other PC components or PCs.

The path on the motherboard of the PC used to carry data to and from the CPU and other PC components is known as a PC bus, commonly referred to as "the bus." This includes software-to-software communication. The backside bus's speed is set by the processor.

The northbridge and memory are linked by the memory bus. The southbridge is linked to the disk drives through an IDE or ATA bus. The video card is linked to the CPU, memory, and AGP bus.

Therefore, option C is correct.

Learn more about motherboards, here:

https://brainly.com/question/6968002

#SPJ2

Where should a range name be entered? in the Home tab on the ribbon in the title box in the status bar in the title bar in the name box in the formula bar

Answers

Answer:

in the name box in the formula bar

Explanation:

edg 2020!!

Answer:

D.

Explanation:

edg 2020

Javier wants to copy the last four digits of ID numbers from cell A2. Order the steps for the formula.
4)
RIGHT
(A2
Intro

Answers

Answer:=, RIGHT, (A2 (,) 4)

Explanation:

Yes

Answer:

=

Right

(A2

,

4)

Explanation: I got it right

how many total bits do you need to represent 512?

Answers

Answer:

9 bits

Explanation:

hope it helps......

Answer:

9 bits

hope it helps...

Drag the tiles to the correct boxes to complete the pairs.
Match the elements of a network to their descriptions.

Answers

Answer:

software

client devices

hardware

Explanation:

Plzzzzzzzzzzzzz give me brainiest

To help mitigate the Target breach, system administrators should have implemented a system that only allowed certain programs to run on the POS (Point of Sale) system. What is the term for this concept?

Answers

Answer:

application whitelisting

Explanation:

Application Whitelisting is a term used in computer engineering to describe a situation where a system administrator implemented a system that only allowed certain programs or applications that have been approved to run or functions exclusively on a computer or network. It is considered to be more secure.

Hence, in this case, the correct answer is called APPLICATION WHITELISTING

Endnotes are indicated by

A. lowercase letters (a, b, c)

B. numbers (1, 2, 3)

C. Roman numerals (i, il, ill)

D. uppercase letters (A, B, C)
They

Answers

Answer:

The answer is D because u have the uppercase letter bold

Answer:

Endnotes are actually indicated by Roman Numerals so option C is correct.

We can create tables in MS. Word from *
2 points
Insert Tab
Home Tab
Mailings Tab

Answers

Answer:

insert tab

Explanation:

hope it helps

Answer:

we can create tables in ms word from Insert table

For Questions 1-4, consider the following code:

def mystery1(x):
return x + 2

def mystery2(a, b = 7):
return a + b

#MAIN
n = int(input("Enter a number:"))
ans = mystery1(n) * 2 + mystery2 (n * 3)
print(ans)


What is output when the user enters 9?

Answers

Answer:

9 would be entered as a parameter n of class mystery1 and return 9 + 2 = 11 and then 11 * 2 = 22, PLUS,

mystery2 new parameter is 9 * 3 = 27, then 27 + 7 = 34 returned

FINALLY, ans = 22 + 34

ans = 56 printed as output

Write a program that passes an unspecified number of integers from command line and displays their total.

Answers

Answer:

Explanation:

I will go straight to the code, and hope it didn't confuse you.

Here is it

public static void main(String[] args)

int [] x = new int [args.length]

for (int y = 0; y< args.length;yi++)

int[y] = (int) args [y]

Olga is working on a class named House. She wants to create a method that returns the value of price. What type of method should she use?

public class House {

private int sqft, bedrooms, bathrooms, number;
private double price;
private string street;

public Street() {

sqft = 1000;
bedrooms = 1;
bathrooms = 1;
street = “Main St.”;
number = 1234;

}

}

A. int
B. string
C. double
D. void

Answers

Answer:

Double as price is of type double

Write a function in Java that takes in the int[] array, sorts it using bubble sort, then returns back the sorted array.

Answers

Answer

//Class to test the bubble sort

public class BubbleSortTest{

   

//Method to sort the array using bubbleSort

//Takes the array to be sorted as argument

public static int[] bubbleSort(int[] arr) {      

  //Create an integer to hold the length of the array

  int n = arr.length;  

   

  //Create a temporary variable to hold the values of the

                       //array

  //for swapping purposes. Initialize it to zero

  int temp = 0;  

   

  //Cycle through the array element by element

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

   

   //For each element

   for(int j = 1; j < (n-i); j++){  

     

    //if the element is greater than the element after it

    if(arr[j-1] > arr[j]){  

     //swap the elements  

     temp = arr[j-1];  

     arr[j-1] = arr[j];  

     arr[j] = temp;  

        }    //End of if        

   }   //End of inner for

    }   //End of outer for

 

 //return the sorted array

 return arr;

}

 

   //main method

    public static void main(String [] args){

  //create a sample array

        int [] myArray = {56, 23, 7, 4, 6};

   

  //Call the bubbleSort() method to sort the array

        int [] sortedArray = bubbleSort(myArray);

   

  //Print out the sorted array

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

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

        }

   

    } //End of main method

 

     

}  //End of class BubbleSortTest

Sample Output

4 6 7 23 56

Explanation:

The code above has been written in Java and it contains comments explaining necessary parts of the code. Please go through the comments. A sample output has also been provided.

For clarity, the following shows the actual function alone without using or including it in a class.

=========================================================

//Method to sort the array using bubbleSort

//Takes the array to be sorted as argument

public static int[] bubbleSort(int[] arr) {  

       

       //Create an integer to hold the length of the array

       int n = arr.length;  

       

       //Create a temporary variable to hold the values of the array

       //for swapping purposes. Initialize it to zero

       int temp = 0;  

       

       //Cycle through the array element by element

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

           

           //For each element

           for(int j = 1; j < (n-i); j++){  

               

               //if the element is greater than the element after it

               if(arr[j-1] > arr[j]){  

                   //swap the elements  

                   temp = arr[j-1];  

                   arr[j-1] = arr[j];  

                   arr[j] = temp;  

            }  

                     

           }  

        }  

   

   //return the sorted array

   return arr;

}

=========================================================

A network the size of the Internet requires DNS services in order to function. Discuss the advantages and disadvantages of implementing DNS relative to the size of the network.

Answers

Answer:

Advantages

Host Naming  : For DNS Implementation there is no need to create and maintain a local names configuration file also there is no need to understand complex Oracle Names administration procedures and this because the name of the host is sufficient enough for one to establish a connectionLocal Naming : It's relative easier to resolve service name addresses and also across different protocols

Disadvantages

Host Naming  : The disadvantage is that your client and the server connects making use of TCIP/IPLocal Naming : The disadvantage as regards to local naming is that it will require the local configuration of all service and address name changes to carry out local naming

Explanation:

Advantages

Host Naming  : For DNS Implementation there is no need to create and maintain a local names configuration file also there is no need to understand complex Oracle Names administration procedures and this because the name of the host is sufficient enough for one to establish a connectionLocal Naming : It's relative easier to resolve service name addresses and also across different protocols

Disadvantages

Host Naming  : The disadvantage is that your client and the server connects making use of TCIP/IPLocal Naming : The disadvantage as regards to local naming is that it will require the local configuration of all service and address name changes to carry out local naming
Other Questions
A company has fixed costs of $50,000 while manufacturing a product that has variable costs of $4 per unit and sells for $14 per unit. The break-even point is:_____ What are some facts about the Great Sphinx? HELP ASAP FOR BRAINLIEST!!Tell whether the expression in the pair is equivalent.(the asterisks '*' stand for multiplication)vwx * yz and v * w * zxy How many 1000-Watt lights can be plugged into a standard 120-Volt, 15-Amp outlet? (Hint: W/V=A) La class ____ interesante.A. SonB. EsC. Eres PLEASE HELPPPPRead The Road Not Taken by Robert Frost. Which statement best describes the main idea of the poem?Two roads diverged in a yellow wood,And sorry I could not travel bothAnd be one traveler, long I stoodAnd looked down one as far as I couldTo where it bent in the undergrowth;Then took the other, as just as fair,And having perhaps the better claim,Because it was grassy and wanted wear;Though as for that the passing thereHad worn them really about the same,And both that morning equally layIn leaves no step had trodden black.Oh, I kept the first for another day!Yet knowing how way leads on to way,I doubted if I should ever come back.I shall be telling this with a sighSomewhere ages and ages hence:Two roads diverged in a wood, and II took the one less traveled by,And that has made all the difference.A. The speaker informs the reader about two roads.B. The speaker expresses his feelings about nature.C. The speaker describes his unfulfilled dreams and wishes.D. The speaker explains a difficult decision he had to make. The federal trade commission acts primarily as a the balance in Ana's savings account may be modeled by the linear function y =50x + 2500, where x represents the number of months the have passed and y represents the account balance. Based on this function which of these is the best prediction of Ana's total savings after 3 years?A. $2,650B. $3,700C. $4,300D. $7,650 What is the slope of a line through (2,7)And 6,0 What would be the best type of organizagtion for a article that happened during a hurricane?A. Inverted PyramidB.Pros and ConsC.Spatial PatternD.Compare Contrast read the photo and please answer!! please someone help me answer this and please do give explanation to your answer! w + 3 = 16 w/3 = 16 w-3 =16 3w = 16 50 POINTS AND WILL GIVE BRAINLIEST!!!Match the definition to the term. 1. modifies adverbs, verbs, and adjectives 2. exchange of ideas 3. European parent languages 4. predecessor of Greek 5. refers to subject 6. logical 7. language spoken by mountaineers 8. expresses state of being 9. person, place, or thing 10. the language many Jews spoke 11. scientist who studies languages 12. supreme authorityadverbdialectreflexive pronounnounverbdominionAramaicHellenicanalyticalIndo-Europeanphilologistcommunication Is 1.8 repeating rational or irrational number Ya'll... I need help. Bad.All these girls in the world think they are so ugly... It's making me sick. Let me clear the air a little bit.YOU.ARE.NOT. I MEAN NOTTTTTTUGLY.YOU ARE BEAUTIFUL. AND IF ANY OTHER GUY THINKS YOU AREN'T, THEN I THINK THAT YOU DON'T NEED HIM. Girl, get yourself together, and act like somebodyyyyy. YOU'RE GORGEOUS!!! AND IF I DON'T EVEN HAVE TO LOOK AT YOU TO SAY THAT, THEN THAT GUY AT YOUR SCHOOL THAT HAS SEEN YOU AND STILL THINK YOU'RE UGLY.... No way. Drop him. RIGHT. NOW. But random lady on the internet, He's cute and nice! I DONT CARE! IF HE DOESN'T LIKE YOU FOR WHO YOU ARE AND WHAT YOU LOOK LIKE.. Drop. HIM. And I'm not just saying this. I know some of ya'll reading this can relate. Don't even lie to yourself. Let me say it one more time. You are beautiful just the way you are. No plastic surgery, nothing like that. You're beautiful hun. And everybody in the world should know that Find the solution to the system -6+8y=12 and -3+4y=6 If the table below represents a propornal relationship, what number will goin the empty box?Notes (pages)8Time (hours)16182091011. Helpp -8(17-12)What is the value of -2(8-(-2))?0-40-2O 2O 4 imvu can sumbody gift me Which of the following are true to subtract fractions? A Keep the denominators different, subtract the numerators, subtract the denominatorsB Find the LCM, subtract the numerators, subtract the denominatorsC Find the LCM, subtract the numerators, keep the denominators the sameD Find the GCF, subtract the numerators, keep the denominators the same (6z^2-5z-2)(3z^3-2z-4)