The cat store needs your help! The base class Animal has private fields animalName, and animalAge. The derived class Cat extends the Animal class and includes a private field for catBreed. Complete main() to:
create a generic animal and print information using printInfo().
create a Cat animal, use printInfo() to print information, and add a statement to print the cat's breed using the getBreed() method.
Ex. If the input is:
Dobby
2
Kreacher
3
Maine Coon
the output is:
Pet Information:
Name: Dobby
Age: 2
Pet Information:
Name: Kreacher
Age: 3
Breed: Maine Coon
AnimalIformation.java
import java.util.Scanner;
public class AnimalInformation {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
Animal myAnimal = new Animal();
Cat myCat = new Cat();
String animalName, catName, catBreed;
int animalAge, catAge;
animalName = scnr.nextLine();
animalAge = scnr.nextInt();
scnr.nextLine();
catName = scnr.next();
catAge = scnr.nextInt();
scnr.nextLine();
catBreed = scnr.nextLine();
// TODO: Create generic animal (using animalName, animalAge) and then call printInfo
// TODO: Create cat animal (using catName, catAge, catBreed) and then call printInfo
// TODO: Use getBreed(), to output the breed of the cat
}
}
Animal.java
public class Animal {
protected String animalName;
protected int animalAge;
public void setName(String userName) {
animalName = userName;
}
public String getName() {
return animalName;
}
public void setAge(int userAge) {
animalAge = userAge;
}
public int getAge() {
return animalAge;
}
public void printInfo() {
System.out.println("Animal Information: ");
System.out.println(" Name: " + animalName);
System.out.println(" Age: " + animalAge);
}
}
Cat.java
public class Cat extends Animal {
private String catBreed;
public void setBreed(String userBreed) {
catBreed = userBreed;
}
public String getBreed() {
return catBreed;
}
}

Answers

Answer 1

Answer:

Answered below

Explanation:

//TODO1

myAnimal.setName(animalName);

myAnimal.setAge(animalAge);

myAnimal.printInfo();

//TODO2

myCat.setName(catName);

myCat.setAge(catAge);

myCat.setBreed(catBreed);

myCat.printInfo();

//TODO

//Call the getter method of the cat class and //save the returned string in a variable to print //it out.

String breed = myCat.getBreed();

System.out.print(breed);


Related Questions

how does someone get back to work from the dark playground?

Answers

Answer:

i don’t understand.

Explanation: Could you give me more detail so I could answer this?

Is it possible to beat the final level of Halo Reach?

Answers

It is impossible to beat this level no matter how skilled the player is.

During early recording, microphones picked up sound waves and turned them into electrical signals that carved a _______ into the vinyl. (6 letters)

WILL PICK YOU AS BRAINLIEST!


hint- NOT journalism

HURRY please

Answers

Answer:

Groove

Explanation:

There is not much to explain

A pedometer treats walking 1 step as walking 2.5 feet. Define a method named feetToSteps that takes a double as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. Then, write a main program that reads the number of feet walked as an input, calls method feetToSteps() with the input as an argument, and outputs the number of steps.

Use floating-point arithmetic to perform the conversion.

Ex: If the input is:

150.5
the output is:

60
The program must define and call a method:
public static int feetToSteps(double userFeet)

CODE:
import java.util.Scanner;

public class LabProgram {

/* Define your method here */

public static void main(String[] args) {
/* Type your code here. */
}
}

Answers

Answer:

Here's the completed code that implements the feetToSteps method and the main program that reads the number of feet walked as input and outputs the number of steps walked:

import java.util.Scanner;

public class LabProgram {

   public static int feetToSteps(double userFeet) {

       double steps = userFeet / 2.5; // Convert feet to steps

       return (int) Math.round(steps); // Round steps and convert to integer

   }

   public static void main(String[] args) {

       Scanner scnr = new Scanner(System.in);

       double feetWalked = scnr.nextDouble();

       int stepsWalked = feetToSteps(feetWalked);

       System.out.println(stepsWalked);

       scnr.close();

   }

}

Explanation:

In this code, the feetToSteps method takes a double parameter userFeet, representing the number of feet walked, and converts it to the number of steps walked by dividing it by 2.5 (since 1 step = 2.5 feet). The result is then rounded to the nearest integer using the Math.round method and casted to an integer before being returned.

The main program reads the number of feet walked as input using a Scanner object, calls the feetToSteps method with the input as an argument, and outputs the number of steps walked using System.out.println. Finally, the Scanner object is closed to free up system resources.

Which process is based on repulsion of oil and water?
A.
plotting
B.
flexography
C.
lithography
D.
screen printing
E.
offset printing

Answers

Answer:

C.  lithography

Explanation:

Lithography is one of the methods of printing. In this form oil and water are used. The repulsion of oil and water is used in the process. It was a method by which the publication of the art and theatrical works were done. In this process the printing was done on the paper, metal surface or smooth surface. During the process, the wetness of the stone is retained by placing it in water.

An EtherChannel was configured between switches S1 and S2, but the interfaces do not form an EtherChannel. What is the problem? -The interface port-channel number has to be different on each switch. -The EtherChannel was not configured with the same allowed range of VLANs on each interface.

Answers

An EtherChannel was configured between switches S1 and S2, but the interfaces do not form an EtherChannel.

The channel is created by bundling multiple links together, resulting in a single logical link. This can help to increase bandwidth, improve redundancy, and decrease latency, among other things. A trunk link can be used to carry traffic for multiple VLANs on a network. The allowed range of VLANs is an important consideration when configuring an EtherChannel.

If the allowed range of VLANs is not the same on each interface, the EtherChannel will not form correctly. When configuring an EtherChannel, it's important to make sure that the allowed VLAN range is the same on each interface. Otherwise, the channel will not function correctly. The interface port-channel number does not have to be different on each switch.

In fact, it should be the same on each switch. This helps to ensure that the switches recognize the EtherChannel as a single logical link, rather than as multiple individual links. In conclusion, the problem with the EtherChannel not forming is most likely due to the fact that the allowed range of VLANs is not the same on each interface. To fix this, the VLAN range should be the same on each interface.

for more such question on EtherChannel

https://brainly.com/question/1415674

#SPJ11

1 Refer to the plan below and write a Java program called PrintSum which outputs the sum of the (10 marks) ..umbers from 0 up to n, where n is input by the user: Plan Initialise total and counter to 0 Get n from the user
WHILE the counter is <=n
update the total
add 1 to counter print total

Answers

The java program that called "PrintSum" that follows the provided plan is given below.

What is the Java program?

import  java.util.Scanner  ;

public class PrintSum {

   public   static void main(String[] args){

       int   total =0;

       int counter = 0;

       Scanner   scanner = newScanner(System.in);

       System.out.print("Enter a   number (n):");

       int n = scanner.nextInt();

       while (counter <= n) {

           total += counter;

           counter++;

       }

       System.out.println("  The sum of numbers from 0 to " +n + " is: " + total);

   }

}

How does this work  ?

This program prompts the user to enter a number (n),then calculates the sum of numbers from 0 to n using  a while loop.

The total variable is updated in each   iteration of the loop,and the counter is incremented by 1. Finally, the program outputs the calculated sum.

Learn more about Java at:

https://brainly.com/question/26789430

#SPJ1

in python Simple geometry can compute the height of an object from the object's shadow length and shadow angle using the formula: tan(angleElevation) = treeHeight / shadowLength. Given the shadow length and angle of elevation, compute the tree height.

Sample output with inputs: 0.4 17.5
Tree height: 7.398881327917831

Answers

Answer:

import math

angle = float(input('Enter Angle: '))

shadowLength = float5(input('Enter Shadow Length: '))

tree_height = math.tan(angle)*shadowLength

print('Tree Height = {}'.format(tree_height))

Explanation:

From the equation given, the first step is to derive the equation for calculating the Tree Height.

In order to calculate the tangent of an angle, the math module has to be imported. math module allows the program to perform advanced math operations.

The program then prompts the user to input values for angle and shadow length.

The inputted values are converted to floats and used in the equation that was derived for Tree height.

Three height is evaluated and the result is printed to the screen

in python Simple geometry can compute the height of an object from the object's shadow length and shadow

write the c++ program of the following out put
*
**
***
****
*****​

Answers

#include
using namespace std;

int main() {
for (int i = 1; i <= 5; i++) {
for (int j = 1; j <= i; j++) {
cout << "*";
}
cout << endl;
}
return 0;
}

Encryption is an important topic in math and computer science. It keeps your personal information safe online.

a. True
b. False

Answers

Thus is true
Encryption helps to keep data virtually safe

is anyone a robIox creator?
me and some of my friends are going to work on a robIox game and we need someone to help us build and script it.
anyone wanna help?

Answers

Well, I am now getting into making Robl. games, so I would be able to help.

But the only downside is that my computer isn't working at the moment and may take a while to fix. But i'm sure when i am done with it, I could help.

What are three reasons developers might choose to use GitHub to work on a
project together?
A. It permits developers to schedule their work calendars, vacation
time, and sick leave around one another.
B. It helps reduce the number of errors in a project and allows
developers to update projects often.
C. It allows developers or the team to review new sections before
they are recombined with the main project.
D. It allows developers to work on a branch or section of code
without affecting the entire project.
SUBMIT

Answers

Answer:

B. It helps reduce the number of errors in a project and allows

developers to update projects often.

C. It allows developers or the team to review new sections before

they are recombined with the main project.

D. It allows developers to work on a branch or section of code

without affecting the entire project.

Developers might choose to use GitHub to work on a project together because it allows them to:

A. Reduce errors in a project and update it frequently.

C. Review new sections before recombining them with the main project.

D. Work on a branch or section of code without affecting the entire project.

Therefore, options A, C, and D are correct.

GitHub is a web-based platform that serves as a collaborative sanctuary for software developers, akin to an interconnected digital realm. It empowers developers to host, review, and manage code repositories, fostering seamless teamwork and version control.

This virtual sanctuary functions as a haven where developers can contribute to projects, propose changes, and work collectively without disrupting the main codebase.

With its versatile tools, GitHub offers a captivating arena for developers to explore, collaborate, and unleash the full potential of their projects in a harmonious symphony of coding brilliance.

Therefore, options A, C, and D are correct.

Learn more about GitHub here:

https://brainly.com/question/30911741

#SPJ7

Kris Allen runs a pet daycare center. She needs to keep track of contact information for her customers, their animals, the services provided (such as walking and grooming), and the staff who are assigned to care for them. She also must send out invoices for payment each month. What features of spreadsheets and/or database software might she use to facilitate her business

Answers

for easy data management i recommend SQL

The features of spreadsheets and/or database software might she use to facilitate her business are:

Rows and columns in spreadsheet's can make her information to be neatly organized.The use of Formulas and functions.

What is Spreadsheet?

A spreadsheet is known to be a kind of computer application that is often used for computation, organization, and others.

Note that The features of spreadsheets and/or database software might she use to facilitate her business are:

Rows and columns in spreadsheet's can make her information to be neatly organized.The use of Formulas and functions.Data filteringAccounting.Analytics, etc.

Learn more about spreadsheets from

https://brainly.com/question/27119344?answeringSource=feedPublic%2FhomePage%2F20

#SPJ2

For the discussed 8-bit floating point storage:
A. Encode the (negative) decimal fraction -9/2 to binary using the 8-bit floating-point notation.
B. Determine the smallest (lowest) negative value which can be incorporated/represented using the
8-bit floating point notation.
C. Determine the largest (highest) positive value which can be incorporated/represented using the 8-
bit floating point notation.
Note: You need to follow the conventions (method) given in the video lessons for the solution of this
question. Any other solution, not following the given convention, will be considered incorrect.

Answers

Using the conventions in the video lessons, the largest positive value for 8-bit floating point storage is 3.996 x 10²⁸.

A. To encode the decimal fraction -9/2 in 8-bit floating-point notation, we follow the IEEE 754 convention.

This notation consists of a sign bit, an exponent, and a mantissa. First, we convert -9/2 to binary, which is -1001/10. The sign bit will be 1 since it's negative. The next step is to represent -9/2 as a normalized binary fraction, which is -1.001 × 2^3. In this case, the exponent is 3 and the mantissa is 001.

The 8-bit floating-point notation is as follows:

Sign bit: 1 (negative)

Exponent: 3 + 127 (biased exponent) = 130 (binary: 10000010)

Mantissa: 001

Putting it all together, the 8-bit floating-point representation of -9/2 is: 1 10000010 001.

B. In 8-bit floating-point notation, the smallest negative value is determined by setting the sign bit to 1 (negative), the exponent to the minimum representable value (00000000), and the mantissa to all zeros.

Therefore, the smallest negative value in 8-bit floating-point notation is: 1 00000000 000.

C. The largest positive value in 8-bit floating-point notation is obtained by setting the sign bit to 0 (positive), the exponent to the maximum representable value (11111111), and the mantissa to all ones.

Therefore, the largest positive value in 8-bit floating-point notation is: 0 11111111 111.Please note that the given solution follows the conventions of IEEE 754 for encoding 8-bit floating-point values.

For more such questions on Floating point:

https://brainly.com/question/30453230

#SPJ8

In this lab, you declare and initialize constants in a Java program. The program file named NewAge2.java, calculates your age in the year 2050.

// This program calculates your age in the year 2050.
// Input: None.
// Output: Your current age followed by your age in 2050.

public class NewAge2
{
public static void main(String args[])
{
int currentAge = 25;
int newAge;
int currentYear = 2023;
// Declare a constant named YEAR and initialize it to 2050

// Edit this statement so that it uses the constant named YEAR.
newAge = currentAge + (2050 - currentYear);

System.out.println("My Current Age is " + currentAge);
// Edit this output statement so that is uses the constant named YEAR.
System.out.println("I will be " + newAge + " in 2050.");

System.exit(0);
}
}

Answers

A Java programme uses a constant YEAR to calculate age in 2050. declares the variables currentAge, currentYear, and newAge. present age and age in 2050 are output.

What do Java variables and constants mean?

A constant is a piece of data whose value is fixed during the course of a programme. As a result, the value is constant, just as its name suggests. A variable is a piece of data whose value may vary while the programme is running.

How is a constant initialised?

At the time of its declaration, a constant variable must be initialised. In C++, the keyword const is put before the variable's data type to declare a constant variable. Any data type, whether int, double, char, or string, can have constant variables declared for it.

To know more about Java visit:

https://brainly.com/question/12978370

#SPJ1

Which are benefits of using an IDE while writing a program? Select all the apply.

The IDE keeps track of and links files.

The IDE simplifies and coordinates the creation process.

The IDE allows the programmer to see errors.

Answers

Answer:

The IDE keeps track of and links files.

The IDE simplifies and coordinates the creation process.

The IDE allows the programmer to see errors.

Explanation:

The IDE stands for Integrated Development Environments. In the case when the program the following are the benefits of using an IDE

1. It tracks and link the files

2. It coordinates and simplify the proces of creation

3. Also it permits the programmer to view the errors

hence, the above represent the benefits

So all are considered to be the benefits

Answer:

Explanation:

ITs all 3. edge 2021

Which of the following is an APA format error in the reference below? (Note ignore the indenting issue, as Canvas doesn't indent well in these quiz questions! Just focus on the other APA elements in the sentence). Hu, S., Scheuch, K., Schwartz, R., Gayles, J. G. \& Li, S. (2008), Reinvehting undergraduate education: Engaging college students in research and creative activities. San Francisco, CA: Jossey-Bass. a. The title should be italicized. B. The important words in the title should be capitalized. C. The publisher should come before the location. D. The " e " in "Engaging" in the titie should be lowercase.

Answers

A works cited page is a page that contains a formatted list of all the sources a person has cited in their essays or other writing.

The APA style was developed by the American Psychological Association. a group of standards that are applicable to all publications, including research articles. Any sources that you have cited or paraphrased in your research paper must be cited in accordance with the APA style manual. twice cite your sources: Include a brief in-text citation while composing the body of your paper. Include further in-depth information about the source in the References section at the end of your essay. Titles of journals, magazines, and newspapers should all be italicized. The titles of articles shouldn't be in quotation marks or italics. The initial word of the article title should only have the first letter capitalized. If there is a word after the colon, capitalize the first letter of it.

Learn more about The APA style here:

https://brainly.com/question/30129555

#SPJ4

What does the list "car_makes" contain after these commands are executed?

car_makes = ["Ford", "Volkswagen", "Toyota"]
car_makes.remove("Ford")


1. ['', 'Porsche', 'Vokswagen', 'Toyota']
2. ['Volkswagen', 'Toyota']
3. ['Toyota', 'Ford']
4. [null, 'Porsche', 'Toyota']

Answers

Answer:

The correct answer is option 2: ['Volkswagen', 'Toyota']

Explanation:

After the remove method is called on the car_makes list to remove the element "Ford", the list car_makes will contain the elements "Volkswagen" and "Toyota"

Which of the following statements are true about how technology has changed work? Select 3 options. Responses Businesses can be more profitable by using communication technology to reduce the costs of travel. Businesses can be more profitable by using communication technology to reduce the costs of travel. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. In a gig economy, workers are only hired when they are needed for as long as they are needed. In a gig economy, workers are only hired when they are needed for as long as they are needed. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Technology has not really changed how businesses operate in the last fifty years. Technology has not really changed how businesses operate in the last fifty years.

Answers

The three genuine statements almost how technology has changed work are:

Businesses can be more productive by utilizing communication technology to decrease the costs of travel. This can be genuine since advances like video conferencing and virtual gatherings permit businesses to conduct gatherings, transactions, and collaborations remotely, lessening the require for costly travel courses of action.

With the spread of technology and the Web, littler businesses are not able to compete as successfully as some time recently. This explanation is genuine since innovation has empowered bigger companies to use their assets and reach a worldwide advertise more effortlessly, making it challenging for littler businesses to compete on the same scale.

Through the utilize of the Web and collaboration devices, more laborers are able to perform their occupations remotely. This explanation is genuine as innovation has encouraged farther work courses of action, allowing employees to work from anyplace with an online association. Collaboration instruments like extend administration computer program and communication stages have made inaccessible work more doable and effective.

Technology explained.

Technology alludes to the application of logical information, aptitudes, and devices to form innovations, fathom issues, and move forward proficiency in different spaces of human movement. It includes the improvement, usage, and utilize of gadgets, frameworks, and processes that are outlined to achieve particular assignments or fulfill specific needs.

Technology can be broadly categorized into distinctive sorts, such as data technology, communication technology, therapeutic innovation, mechanical technology, and transportation technology, among others. These categories include different areas, counting computer science, hardware, broadcast communications, building, and biotechnology.

Learn more about technology below.

https://brainly.com/question/13044551

#SPJ1

three commonly used approaches to cloud computing are public cloud computing, private cloud computing, and cloud computing. True or False ?

Answers

True- three commonly used approaches to cloud computing are public cloud computing, private cloud computing, and cloud computing.

What is community cloud computing?

Why are secure network connections essential? Read more about it in our eBook on cloud computing. The Cloud is an integral component of your ICT infrastructure. Get the file and read more. Unknowledgeable Medewerkers 24/7 Internet Security Glassvezel Network Dekkend. One or more community-based organizations, a third party, or a combination of them own, manage, and run it. As an illustration, our Indian government agency might share computing resources in the cloud to manage data. An example of a private cloud is a community cloud, which provides specialized infrastructure for businesses from a particular community with shared concerns about things like security, compliance, jurisdiction, etc. When it comes to cost-effectiveness, privacy, and security, it is the perfect answer.

To know more about cloud computing visit?

https://brainly.com/question/29617599

#SPJ1

The program should prompt the user to enter two integers. The program should store these
values into variables a and b and compare the two integers entered then say which number is
greater than the other. E.g. If a user enters 20 and 40, the program should say that 40 is
greater than 20. If the values entered are equal the program should display that the first
number is equal to the second number or else display that invalid data has been entered. Use
if else statements to implement your solution.

Answers

Explanation:

Begin

Prompt : please enter & first number:

Please enter & second number:

a number;

b number;

a := first number

b := second number

If (a>b) then

Display (a || 'is grater than' || b) ;

else if (b>a) then

Display (b || 'is grater than' || a) ;

else if (a==b) then

Display (a || 'is equal to' || b) ;

else

Display ('Invalid data has been entered') ;

end if;

End;

Hope it helps!

Hope it helps! Please mark it as brainliest!

Sandra bought a house 20 years ago for $200,000, paid local property taxes for 20 years and just sold it for $350,00. Which is true

Answers

Profit from selling buildings held one year or less is taxed as ordinary income at your regular tax rate.

What is Tax rate?To help build and maintain the infrastructure, the government commonly taxes its residents. The tax collected is used for the betterment of the nation, society, and all living in it. In the U.S. and many other countries around the world, a tax rate is applied to money received by a taxpayer.Whether earned from wages or salary, investment income like dividends and interest, capital gains from investments, or profits made from goods or services, a percentage of the taxpayer’s earnings or money is taken and remitted to the government.When it comes to income tax, the tax rate is the percentage of an individual's taxable income or a corporation's earnings that is owed to state, federal, and, in some cases, municipal governments. In certain municipalities, city or regional income taxes are also imposed.

To learn more about taxable income refer to:

https://brainly.com/question/1160723

#SPJ1

Answer:

B.  She will owe capital gains taxes on the sale earnings.

Explanation:

1.The ___________ method adds a new element onto the end of the array.
A.add
B.input
C.append
D.len
2.A(n) ____________ is a variable that holds many pieces of data at the same time.
A.index
B.length
C.array
D.element
3.A(n) ____________ is a piece of data stored in an array.
A.element
B.length
C.array
D.index
4.Where does append add a new element?
A.To the end of an array.
B.To the beginning of an array.
C.To the middle of an array.
D.In alphabetical/numerical order.
5.Consider the following code that works on an array of integers:

for i in range(len(values)):
if (values[i] < 0):
values[i] = values [i] * -1
What does it do?

A.Changes all positives numbers to negatives.
B.Nothing, values in arrays must be positive.
C.Changes all negative numbers to positives.
D.Subtracts one from every value in the array.
6.Which of the following is NOT a reason to use arrays?
A.To quickly process large amounts of data.
B.Organize information.
C.To store data in programs.
D.To do number calculations.
7.Consider the following:

stuff = ["dog", "cat", "frog", "zebra", "bat", "pig", "mongoose"]
"frog" is ____________.

A.an index
B.an element
C.a list
D.a sum
8._____________ is storing a specific value in the array.

A.Indexing
B.Summing
C.Assigning
D.Iterating
9.Consider the following code:

stuff = ["dog", "cat", "frog", "zebra", "bat", "pig", "mongoose"]

print(stuff[3])
What is output?

A.zebra
B.bat
C.frog
D.['dog', 'cat', 'frog', 'zebra', 'bat', 'pig', 'mongoose']
10.Consider the following code:

tests = [78, 86, 83, 89, 92, 91, 94, 67, 72, 95]

sum = 0
for i in range(_____):
sum = sum + tests[i]

print("Class average: " + str((sum/_____)))
What should go in the ____________ to make sure that the code correctly finds the average of the test scores?

A.sum
B.val(tests)
C.len(tests)
D.len(tests) - 1

Answers

Answer:

1. append

2. array

3. elament

4. To the end of an array.

5. Changes all negative numbers to positives.

6. To do number calculations.

7. an elament

8. Assigning

9. zebra

10. len(tests)

Explanation:

got 100% on the test

Which save as element allows a user to save a presentation on a computer?

Answers

Answer:

This PC

Explanation:

Got it right

Answer:

Look at the attached file for the answer, I'm correct as you can see.

Explanation:

Which save as element allows a user to save a presentation on a computer?

Thinking about the operations in these games which gam is likely to be one of the oldest games in the world

Answers

Answer:

ill say the space race arcade game

Explanation:

Give two example computer applications for which connection-oriented service is appropriate. Now give two examples for which connectionless service is best.

Answers

Answer:

File transfer, remote login, and video on demand need connection-oriented service.

Explanation:

I HOPE THIS HELPS

A connection-oriented service is a data transfer mechanism used at the session layer. Connectionless service is an in-data communication that is used to convey data at the OSI model's transport layer.

What is a connection-oriented service?

A connection-oriented service is a data transfer mechanism used at the session layer. Unlike its opposite, connectionless service, connection-oriented service necessitates the establishment of a session connection between the sender and recipient, similar to a phone conversation. Although not all connection-oriented protocols are considered reliable, this method is generally thought to be more reliable than a connectionless service.

What is a connection-less service?

Connectionless service is a notion in data communications that is used to convey data at the OSI model's transport layer (layer 4). It refers to data transmission between two nodes or terminals in which data is transferred from one node to the other without first confirming that the destination is accessible and ready to accept the data. There is no need for a session connection between the sender and the receiver; the sender just begins delivering data.

Telnet, rlogin, and FTP are examples of services that leverage connection-oriented transport services. And Connectionless services include User Datagram Protocol (UDP), Internet Protocol (IP), and Internet Control Message Protocol (ICMP).

Learn more about Connection-Oriented Services:

https://brainly.com/question/13151080

#SPJ2

How is a cryptocurrency exchange different from a cryptocurrency
wallet?

A There is no difference since all wallets are hosted on exchanges.

B Exchanges are only used to make transactions, not to store cryptocurrency.

C Exchanges are offline whereas wallets are always connected to the internet.

D An exchange controls your keys but you control your cryptocurrency.

Answers

Exchanges are only used to make transactions, not to store cryptocurrency. Option B

What is Cryptocurrency exchanges versus cryptocurrency wallets?

Cryptocurrency exchanges are platforms that allow users to trade various cryptocurrencies for other digital assets or fiat currency. While some exchanges may offer temporary storage solutions, their primary function is to facilitate transactions between users.

On the other hand, cryptocurrency wallets are designed to store, send, and receive cryptocurrencies securely. Wallets can be hardware-based, software-based, or even paper-based, and they help users manage their private keys, which are essential for accessing and controlling their cryptocurrency holdings.

Find more exercises related to Cryptocurrency exchanges;

https://brainly.com/question/30071191

#SPJ1

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to index if the value of s would come between "mortgage" and "mortuary" in the dictionary. Otherwise, assign 0 to index.

Answers

Using the knowledge in computational language in python it is possible to write a code that Assume the variable s is a String and index is an int.

Writting the code:

Assume the variable s is a String

and index is an int

an if-else statement that assigns 100 to index

if the value of s would come between "mortgage" and "mortuary" in the dictionary

Otherwise, assign 0 to index

is

if(s.compareTo("mortgage")>0 && s.compareTo("mortuary")<0)

{

   index = 100;

}

else

{

   index = 0;

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to

1. Lance just got a new camera for his birthday. Yesterday when he went out to take photos, he noticed that his camera would sometimes turn itself off. What is most likely happening to Lance's
camera?
Lance's camera is broken and needs to be taken in for repair.
He needs to transfer images from his memory card to his computer
His camera powers down automatically after a certain amount of time to save battery,
His camera has a setting to adjust the aperture speed automatically in dark conditions.

Answers

His camera powers down automatically after a certain amount of time

Answer:

His camera powers down automatically after a certain amount of time to save battery.

why we choose abattis consulting service ?

why we choose abattis consulting service ?

Answers

People may choose abattis consulting service  due to their excellent quality and timely service delivery.

Why we choose abattis consulting service ?

When selecting a consulting service, it is main to consider determinants such as the experience and knowledge of the consultants, the opinion of the company, the quality and purview of the services presented, the cost and value of the services, and the rapport and alignment of the advisory service with the needs and aims of your organization.

Abattis Consulting, in particular, offers advisory services in the extents of cybersecurity, risk management, compliance, and solitude. They provide a range of aids, including cybersecurity assessments, etc.

Learn more about consulting service from

https://brainly.com/question/26417203

#SPJ1

Other Questions
farmer needs to build a fence to enclose a rectangular region of area 1200 square meters. As one side of the region will face a main road, the farmer decides to make that side (the western/left side) more attractive by using higher quality fencing that costs $6 per meter. For the other three sides, he intends to use fencing that costs $3 per meter. What dimensions of the rectangular region will minimize the cost of the fence the main reason to suspect that enceladus has a subsurface ocean of water is:____. T/F: when the cost of supplies increase in an industry a company using the cost leadership strategy 100 points answer in depth Describe the current model of the atom and the characteristics of each of the three subatomic particles. write an equation of a line perpendicular to y = 7 and passes through the point (3, -1). a well labelled diagram of outdoor thermometer Which statement about the graph of c(x)= log6 X is false?a) The range is the set of all real numbers.b) The graph has no y-intercept.c) The asymptote has equation y = 0.d) The domain is the set of all positive reals. I need this answered ASAP! Question: QUESTION 31 What is decoupling O Geo-engineering Breaking the link between GDP and carbon emissions Adaptation from climate change O Carbon removal. Pls help!!! Possible answers Al m=5. L0=14, NO-12B) m=7, 10= 14, NO= 14C m=7, LO=12, NO= 12 D) m=4, L0=13, NO = 14E) m=5, LO= 14, NO= 15 When advertisers want to reach the same audience more than once, they are concerned with ______.a. humorb. targetc. frequency during the period, moist-skinned amphibians successfully invade the wet habitats world wide. Which comparison of this new process of hydrogen production and photosynthesis is supported by the information provided? A reaction has a rate constant of 0.254 min10.254 min1 at 347K347 K and a rate constant of 0.874 min10.874 min1 at 799 K.799K. Calculate the activation energy of this reaction in kilojou Help me please!!!!!!!!!!!!!!! PLS HELP ME OUT WITH THISStudent A: 78, 99, 80, 85, 95, 79, 85, 96Student B: 100, 80, 79, 75, 92, 93, 75, 78, 84Student A Mean:Student A Mean Absolute Deviation:Student B Mean:Student B Mean Absolute Deviation: A student want to view live organisms less than 1 millimeters in size, which are found in a water sample collected from a stream. Which microscope would be best for the student to use while observing these living organisms? if a receptor's receptive field is ___________, it allows for greater specificity of localization. drag the labels to identify the location of pain sensations from visceral organs. _____ is a type of oligopoly model that assumes that if a firm raises its prices, competitors will not raise theirs.