_____________ type of variable is defined inside a function and is not accessible outside the function.

Answers

Answer 1

A variable that is declared within a function and cannot be accessed outside of that function is known as a local variable. The answer is the local variable.

A local variable is a variable that is declared inside a function or a code block and can only be accessed within that function or code block. The scope of a local variable is limited to the function or code block in which it is declared.

When the function is executed, the local variables are created on the stack and are destroyed when the function completes. Therefore, they cannot be accessed outside the function or code block in which they are defined.

Local variables are useful for storing temporary values that are only needed within a specific function or code block. They also help to keep the program organized and reduce the risk of naming conflicts between different parts of the code.

Learn more about the local variable https://brainly.com/question/30899152

#SPJ11


Related Questions

software that you to need to download, such as an add-on, a plug-in, or a player are called

Answers

Software that needs to be downloaded, such as an add-on, plug-in, or player, is commonly referred to as a "downloadable software component."

Downloadable software components, such as add-ons, plug-ins, or players, are additional software pieces that enhance the functionality of an existing program or provide compatibility with certain file formats or features. These components are not built-in to the main software but are designed to be installed separately by the user.

Add-ons are often used to extend the capabilities of web browsers by adding new features or modifying existing ones. Plug-ins, on the other hand, are software modules that integrate with a host application, enabling it to support specific formats or perform additional tasks. Players are software programs that allow users to play multimedia files or interact with certain types of content, such as video or audio. Downloadable software components provide a way to customize and enhance the user experience, enabling users to tailor their software applications according to their specific needs or preferences.

Learn more about Plug-ins:

https://brainly.com/question/32143459

#SPJ11

What is the difference between a displayed result and a formula?
The displayed result is always the same number, but the formula changes.
The formula is always the same as the displayed result, it will always be a simple value.
The displayed result changes as the formula dictates it; it may not be a simple value.
The displayed result and the formula are unrelated.

Answers

Answer:

The displayed result changes as the formula dictates it; it may not be a simple value.

Explanation:

Answer:

The displayed result changes as the formula dictates it; it may not be a simple value.

Explanation:

Which of the following are disadvantages of assessments? Check all that apply. Some traits can be difficult to measure. Training and experience may be more important than aptitude for some positions. They cannot assess skills or abilities. Applicants may change their answers to fit whatever profile they think is being tested for. Assessments are typically too expensive.

Answers

Answer:

Some traits can be difficult to measure.

Training and experience may be more important than aptitude for some positions.

They cannot assess skills or abilities.

Applicants may change their answers to fit whatever profile they think is being tested for.

Assessments are typically too expensive.

Answer: 1, 2, 4

Explanation:

The disadvantages of assessments are statements (1), (2), and (3) are correct.

What is assessment?

The systematic method of obtaining and analyzing empirical data on information, skill, attitudes, aptitude, and beliefs in order to enhance programs and academic achievement is known as classroom assessment or educational evaluation.

Some attributes might be challenging to quantify.

For certain jobs, training and experience may be more crucial than talent.

They are unable to evaluate talents or capabilities.

Candidates are free to alter their responses to match the profile they believe is being assessed for.

The disadvantages of assessments are:

1) Some traits can be difficult to measure.

2) Training and experience may be more important than aptitude for some positions.

4) Applicants may change their answers to fit whatever profile they think is being tested for.

Thus, the disadvantages of assessments are statements (1), (2), and (3) are correct.

Learn more about the assessments here:

https://brainly.com/question/11388671

#SPJ2

(Rocks Mineral
When limestone undergoes several changes, it forms
2
(marblelse
PA
For
the
are underground natural resources.
3. Metals are extracted from their
4. Molten rock inside the earth is called
5.
is used in making glass.
L
(magmalla
(Limestone/Sla
Yo
# Science-5​

Answers

Answer:

TENDRIAS QUE PONER LA PREGUNTA MEJOR

Explanation:

Finish the code for this bubble sort. Length = len(mylist) for n in range(length - 1): for test in range(n + 1, length): if mylist[n] mylist[test]: temp = mylist[n] mylist[n] = mylist [test] mylist[test] = temp print(mylist).

Answers

Note that the missing character is ">". This is to be inserted in the fourth line as follows: "if myList[n] > myList[test]:" With this, the code for the bubble sort is complete.

What is a bubble sort?

Bubble sort, commonly referred to as sinking sort, is a basic sorting algorithm that continually moves through the input list element by element, comparing the current element with the one following it, exchanging their values if needed.

The term "responsibility" refers to the act of determining whether or not a person is responsible for his or her own actions. Just to the movement of air bubbles in the water that rise up to the surface, each element of the array migrate to the end in each iteration. As a result, it is known as a bubble sort.

One of the primary benefits of a bubble sort is that it is a simple algorithm to describe to a computer. There is just one duty to do (compare two values and, if needed, swap them). This results in a very tiny and straightforward computer application.

Learn more about bubble sort:
https://brainly.com/question/18686944
#SPJ1

For enterprise servers, or servers accessed around the clock, SATA disks are preferred over SAS disks. True or False

Answers

False, sas is hold more then sata disks do

The given statement is false that, SAS disks are preferable over SATA disks for business systems or servers accessed continuously.

What is the SATA disks?

The majority of desktop and laptop hard drives use the SATA (or Serial Advanced Technology Attachment) interface, which was first introduced in 2003. Despite being rotary hard drives with spinning platters and a moving needle that writes data to successive sectors on each platter, they are known as SATA hard drives.

Serial ATA (Serial Advanced Technology Attachment, or SATA) is a command and transport protocol that outlines how data is transferred between a computer's motherboard and these types of mass storage devices (SSDs).

Therefore, it is false.

Learn more about the SAS disks, refer to:

https://brainly.com/question/28310028

#SPJ2

Problem Statement You have been asked to write a program for a retail store that will allow them to calculate discounts for their employees when they buy items. Discounts are based on number of years worked as well as if the employee is a manager or hourly employee. They are also allowed no discount once they have received $200 in discounts for the year.

Answers

Answer:

The code has been written in C

Explanation:

//input libraries fist, the code is in C

#include<stdio.h>

#include<string.h>

void

main ()

{

 int years, ch = 1;

 float i, s, previous, day, discount, ytd, bef, disct, total, summation = 0, totalb =

   0, totala = 0;

 char a[10], b[3];

 do

   {

   l1:printf ("Input number of Years Employed");

     scanf ("%d", &years);

     if (years < 0)

{

  printf ("invalid Please Re-Input");

  goto l1;

}

   l2:printf ("Input Totalal Previousious Purchases Before Discount");

     scanf ("%f", &previous);

     if (previous < 0)

{

  printf ("Previousious Purchases cant be bellow zero");

  goto l2;

}

     printf ("Input Employee Status");

     scanf ("%s", a);

   l3:printf ("Input Days Purchase");

     scanf ("%f", &day);

     if (day < 0)

{

  printf ("Purchases Cannot be minor than zero");

  goto l3;

}

     if (strcmp (a, "MANAGER") == 0)

{

  if (previous >= 200)

    {

      discount = 0;

      ytd = previous;

      bef = previous;

      disct = 0;

      total = day;

      summation += day;

      totalb += day;

      totala += day;

    }

  else

    {

      if (years >= 1 && years <= 3)

 discount = 0.2;

      else if (years >= 4 && years <= 6)

 discount = 0.24;

      else if (years >= 7 && years <= 10)

 discount = 0.3;

      else if (years >= 11 && years <= 15)

 discount = 0.35;

      else

 discount = 0.4;

      ytd = previous * discount;

      bef = 200 - ytd;

      s = day * discount;

      i = (bef - s);

      if (i < 0)

 {

   bef = previous;

   disct = bef;

   total = day - disct;

   summation += total;

   totalb += day;

   totala += total;

 }

      else

 {

   bef = previous;

   disct = i;

   total = day - disct;

   summation += total;

   totalb += day;

   totala += total;

 }

    }

}

     else

{

  if (previous >= 200)

    {

      discount = 0;

      ytd = previous;

      bef = previous;

      disct = 0;

      total = day;

      summation += day;

      totalb += day;

      totala += day;

    }

  else

    {

      if (years >= 1 && years <= 3)

 discount = 0.1;

      else if (years >= 4 && years <= 6)

 discount = .14;

      else if (years >= 7 && years <= 10)

 discount = 0.2;

      else if (years >= 11 && years <= 15)

 discount = 0.25;

      else

 discount = 0.3;

      ytd = previous * discount;

      bef = 200 - ytd;

      s = day * discount;

      i = (bef - s);

      if (i < 0)

 {

   bef = previous;

   disct = bef;

   total = day - disct;

   summation += total;

   totalb += day;

   totala += total;

 }

      else

 {

   bef = previous;

   disct = i;

   total = day - disct;

   summation += total;

   totalb += day;

   totala += total;

 }

    }

}

     printf (" Discount =%f\n", discount);

     printf ("= YTD=%f\n", ytd);

     printf ("Employees Purchase Before Discount=%f\n", bef);

     printf ("Employees Discount Day = %f\n", disct);

     printf ("Employees Total Purchase=%f\n", total);

     printf ("Continue Input YES if OK");

     scanf ("%s", b);

     if (strcmp (b, "YES") != 0)

ch = -1;

   }

 while (ch == 1);

 printf ("total of Purchases Day = %f\n", summation);

 printf ("Total of Before Discounts Day = %f\n", totalb);

 printf ("Totalal of Discounts day = %f\n", totala);

}

OUTPUT

Input number of Years Employed2

Input Totalal Previousious Purchases Before Discount3

Input Employee Status4

Input Days Purchase5

Employee Discount =0.100000

Employees YTD=0.300000

Employees Purchase Before Discount=3.000000

Employyes Discount Day = 199.199997

Employees Totalal Purchase=-194.199997

Do you Wish to Continue Input YES if OK

Consider the following code segment.int count = 0;for (int k = 0; k < 10; k++) {count++; }System.out.println(count);Which of the following code segments will produce the same output as the code segment above?int count = 0;for (int k = 1; k < 10; k++) {count++;}System.out.println(count);int count = 1;for (int k = 1; k <= 10; k++) {count++; }System.out.println(count);int count = 1;for (int k = 0; k <= 9; k++){count++;}System.out.println(count);int count = 0;for (int k = 9; k >= 0; k--){count++;}System.out.println(count);int count = 0;for (int k = 10; k >= 0; k--){count++;}System.out.println(count);

Answers

The correct answer is Which of the ensuing code segments will result in the identical output as the one in the previous sentence k = k + 4 for (int k = 4; k = 100); System.out.println

System. out in Java. The statement println() prints the argument that was supplied to it. Results are displayed on the screen using the println method. Typically, objectname is used to call a method. println To display text on the console in Java, use the println  function. This method receives this text as a parameter in the form of a String. With this technique, the text is printed on the console while the cursor is left at the beginning of the subsequent line. The following line starts the subsequent printing. A method in the Print Stream class is printing . The Print Stream class's object, out, is specified as static.

To learn more about  System.out.println click on the link below:

brainly.com/question/19467372

#SPJ4

How do I fix Java Lang StackOverflowError?

Answers

Answer:

A StackOverflowError in Java is usually caused by a recursive method that calls itself indefinitely or by an excessively deep call stack.

Explanation:

To fix this error, you can try the following:

Check your code for any recursive calls that may be causing the error and modify them to avoid infinite recursion.Increase the stack size of your JVM by adding the "-Xss" option when running your application. For example, you can use the command "java -Xss2m MyClass" to increase the stack size to 2MB.Simplify your code or optimize it to reduce the depth of the call stack.If none of the above solutions work, you may need to consider refactoring your code or using a different approach to solve the problem.

Which of the following shows the correct syntax for the AND function?

a. =AND(LogicalN)
b. =AND(database, field)
c. =AND(database LogicalN, field)
d. =AND(database, field, LogicalN)

Answers

The correct syntax for the AND function is option d. =AND(database, field, LogicalN).

The AND function is a logical function in Microsoft Excel that allows the user to test whether all conditions in a set of arguments are true or not. The function returns TRUE if all the arguments evaluate to TRUE, otherwise it returns FALSE. The correct syntax for the AND function requires three arguments separated by commas. The first argument is the database or range of cells that contain the values to be tested. The second argument is the field or individual cell that contains the condition to be tested. The third argument is the logical operator or condition that must be met. Therefore, the correct syntax for the AND function is =AND(database, field, LogicalN).

To use the AND function in Excel, it is important to use the correct syntax to ensure accurate results. The correct syntax for the AND function requires three arguments separated by commas, including the database, field, and logical operator. Option d is the correct syntax for the AND function, which is =AND(database, field, LogicalN).

To know more about database visit:
https://brainly.com/question/6447559
#SPJ11

What are the strengths and weaknesses of the four types of alliances (joint venture, equity alliance, non-equity alliance, and a network)?

Answers

Alliances are beneficial to firms who wish to expand their scope of business. Alliances come in different forms that include equity alliances, joint ventures, network alliances, and non-equity alliances.

This article will shed light on the strengths and weaknesses of the four alliances.Equity allianceStrengthsStrengthens market position and competitiveness. Increases access to the partner's technical knowledge and expertise.Sharing of resources such as production facilities and distribution channels.Combined resources and expertise increases the likelihood of achieving economies of scale. WeakenessesSharing ownership can lead to conflict and disagreements between partners.

Tension between partners may arise if their goals and strategies divergeJoint ventureStrengthsCan be used to enter new marketsEases the burden of risk sharing between the parties involvedInnovative ideas and new product development can be sharedIncreased capital base and increased capacity to leverage financing.WeaknessesEach partner has to be willing to share control and decision-making. This can lead to conflictsPartner's goals and strategies can diverge leading to tension.

Learn more about Alliances: https://brainly.com/question/6174307

#SPJ11

why do most operating systems let users make changes

Answers

By these changes you most likely are thinking of the term 'Over Clocking'
Over Clocking is used on most Operating Systems to bring the item your over clocking to the max.
Over Clocking; is mostly used for Crypto mining and gaming.

You work as a network administrator for a company. Your manager asks you to enhance the security of the company's data and information by storing them in the cloud. What type of cloud solution will be best for you to use considering the security of data

Answers

The type of cloud solution that will be best considering the security of data is: A Private Cloud.

What is a Private Cloud?

A private cloud is a cloud type that is specifically meant for a single end-user. The cloud environment operates behind the end-users firewall.

This advantage makes the Private Cloud a better solution for organizations that need security for their data.

So, this should be a good option for the network administrator.

Learn more about Private Clouds here:

https://brainly.com/question/13549413

The three greater than signs, >>>, represent a _____.
A. file path
B. prompt
C. file name
D. IDLE

Answers

Answer:

B Prompt is greater than

The three greater than signs, >>>, represent a Prompt. The correct option is B.

What is prompt?

A prompt is text or symbol used to represent the system's readiness to perform the next command.

The syntax for prompt command is >>>. The three greater than signs, >>>, represent a Prompt.

Thus, the correct option is B.

Learn more about prompt.

https://brainly.com/question/6688966

#SPJ2

What is by far the most popular dns server software available?.

Answers

Answer:

I use the server

8.8.8.8

and

8.8.4.4

Explanation:

BIND (Berkeley Internet Name Domain) is by far the most popular DNS server software available.

What is the BIND?

BIND(Berkeley Internet Name Domain) is open-source software that executes the Domain Name System (DNS) protocols for the internet. It is widely used on Unix-like operating systems, including Linux and macOS, as well as on Microsoft Windows.

BIND is developed and sustained by the Internet Systems Consortium (ISC), a nonprofit organization that encourages the development of the internet.

It is the most widely deployed DNS software in the world and is used by many internet service providers, businesses, and organizations to manage their DNS infrastructure.

Thus, BIND (Berkeley Internet Name Domain) is by far the most widely used DNS server software.

To learn more about DNS server software click here:

https://brainly.com/question/13852466

#SPJ12

Which guidelines should be used to make formatting tasks more efficient?

Use pasted text only; this does not keep the original formatting.
Keep formatting fancy; this makes Word documents look better.
Save styles in the document; this makes working with multiple documents easier.
Avoid pasting text from other documents; this makes formatting easier.

Answers

Answer:

Use pasted text only; this does not keep the original formatting.

Explanation:

bc

Answer:

Use pasted text only; this does not keep the original formatting.

Explanation:

A wimming pool contain 18,000 gallon of water. A boiler with an output of 50,000 Btu/hr i operated 8 hour per day to heat the pool. Auming all the heat i aborbed by the pool water with no loe to the ground or air, how much higher i the temperature of pool after the 8 hour of heating?

Answers

The temperature of pool after the 8 hour of heating will be 2.66 F.

Calculating the problem:

Density of water = 64 .4 lb /ft²

volume = 18,000 gallon

volume   = 18,000 × 0.1336

               = 2404.8 ft³

Mass of water :

m = 64.4 × 2404.8

m = 150059. 52 lb

Q = m cΔT

q × t = m c ΔT

50000 × 8 = 150059.52 × 1× ΔT

ΔT = 2.66 F

What do you mean by temperature?

Temperature is a measure of heat or cold expressed on one of several scales, including Fahrenheit and Celsius. Temperature indicates the direction in which heat energy spontaneously flows. H. Hot body (high temperature) to cold body.

How do you measure the temperature?

Use a thermometer to take my temperature. I think I have one thermometer at home to take my temperature when I'm feeling down. I used to use thermometers containing mercury, but I stopped using them because mercury is dangerous if it leaks or breaks the thermometer.

Learn more about temperature:

brainly.com/question/26866637

#SPJ4

5
Consider the following code segment.
double x = (int) (5.5 - 2.5);
double y = (int) 5.5 - 2.5;
System.out.println(x - y);
What is printed as a result of executing the code segment?
А
-1.0
B



-0.5
С
0.0
D
0.
1.0

Answers

Answer:

The output is 0.5

Explanation:

Analyzing the code line by line

Line 1: double x = (int) (5.5 - 2.5);

This converts the result of 5.5 - 2.5 to int

i.e 5.5 - 2.5 = 3.0

3.0 is then converted to int; which is 3

Hence,

x = 3

Line 2: double y = (int) 5.5 - 2.5;

This converts 5.5 to int; i.e 5

Then

y = 5 - 2.5

y = 2.5

Line 3: System.out.println(x - y);

This prints the result of x - y

x - y = 3 - 2.5

x - y = 0.5

Hence;

The output is 0.5

What is Multimedia Authoring Tools

Answers

Answer: an integrated platform for bringing the various parts of a digital project together. It provides a framework for organizing and editing media project parts.
Multimedia authoring is a process of assembling different types of media contents like text, audio, image, animations and video as a single stream of information with the help of various software tools available in the market.

error: couldn't connect to server 127.0.0.1:27017, connection attempt failed: socketexception: error connecting to 127.0.0.1:27017 :: caused by :: connection refused :

Answers

“Error: couldn't connect to server 127.0.0.1 : 27017 ” is a general error message indicating that your client/driver cannot connect to a server.

Normally this caused because you didn't start mongod process before you try starting mongo shell. Start mongod server mongod. Open another terminal window.

How do you resolve connect Econnrefused 127.0 0.1 27017?After that, restart the server and check the connectivity. means that at the specified host, 127.0.0.1, and port 27017, NO mongod instance is running. Yes, launching MongoDB is the solution.Some of the solutions are as follows: Check to see if your MongoDB instance is active: Compass needs access to an active MongoDB instance. Make sure MongoDB is installed and the mongod process is active. Additionally, make sure that the port you specify in the compass connect matches the port on which MongoDB is running.This typically happens when you try to start the mongo shell without first starting the mongod process. Start the mongod server. Open a different terminal tab.

To learn more about : MongoDB

Ref :  https://brainly.com/question/13989665

#SPJ4

puzzle ,A mistake is something you have done that is seen as inappropriate, wrong, or that you shouldn't have done.

What  is error?

A mistake is something you have done that is seen as inappropriate, wrong, or that you shouldn't have done.

the occurrence of a computer-generated error result. Error is a synonym.

Grammar and mechanics mistakes within sentences are known as sentence errors in Standard Written English. Related Concepts: awkward sentence structure, style, and writing styles. "Students make mistakes as they learn, and as they become more proficient at writing, they frequently produce new mistakes rather than fewer mistakes.

systemctl enable  mongod

systemctl start  mongod

#reboot your machine

mongo

sudo rm /var/lib/mongodb/mongod.lock

sudo mongod --dbpath /var/lib/mongodb/ --repair

sudo mongod --dbpath /var/lib/mongodb/ --journal

Run:

sudo unlink /tmp/mongodb-27017.sock

sudo systemctl start mongod

Open new terminal tab(session) and run

mongo

//macos

brew services start mongodb-community

you should run the 'mongod' command in your shell to start the mongo daemon process which listens on localhost and port 27017 by default.

just run mongod in a shell and leave it open. Then use any client to connect to it.

To learn more about error refer to:

https://brainly.com/question/18497347

#SPJ4

Cite 3 advantages and 3 inconveniences of Dynamic Positioning Systems. \[ \text { I } \]

Answers

The 3 advantages of Dynamic Positioning Systems are safety and stability, cost savings, and precise navigation. and Inconveniences of Dynamic Positioning Systems are high costs, dependence on machinery and environmental impact.

Dynamic Positioning (DP) system is an automated system that aids ships to keep their position and heading with the assistance of thrusters that are controlled by computers.

Here are 3 advantages of Dynamic Positioning Systems. Advantages of Dynamic Positioning Systems:

1. Safety and Stability: The Dynamic Positioning system increases ship safety, stability, and precision. It maintains the position of the ship, which helps in better and more efficient handling of cargo, avoids any accidents and collisions, and ensures safety.

2. Cost Savings: It reduces the need for anchors and mooring systems and saves fuel and time, therefore reducing operational costs. The DP system helps to improve the turnaround time of the vessel while loading and unloading.

3. Precise Navigation: The DP system helps in the precise navigation of ships in rough waters, which can be difficult with manual steering. It can maintain the vessel's position to a few centimeters and helps ships stay on course and hold their position in adverse weather conditions.

Inconveniences of Dynamic Positioning Systems:

1. High Costs: Dynamic positioning systems are relatively expensive, and require frequent maintenance and calibration to ensure that they are working efficiently.

2. Dependence on Machinery: The reliability of DP systems is highly dependent on the functioning of machinery. If there is a malfunction in the machinery, the system can fail to operate properly, causing significant problems.

3. Environmental Impact: The use of DP systems can increase the noise and pollution levels in marine environments. The system uses engines and thrusters to maintain the position of the vessel, which can be harmful to marine life.

know more about Dynamic

https://brainly.com/question/32453864

#SPJ11

Help!!! Who is this? Who is it from?

Help!!! Who is this? Who is it from?

Answers

Show: Dragon Ball Super
Character: Vegito
i have no idea who that is

What is a flashbulb memory and how is it both different from and the same as an ordinary memory?

Answers

A flashbulb memory is a vivid, detailed, and long-lasting memory of a particular event. It is typically created by a shocking or emotionally significant event, such as witnessing a tragedy or learning about a major world event. The memories are detailed, rich in sensory information, and often evoke a strong emotional reaction.

Flashbulb memories are different from ordinary memories in that they have greater detail and vividness, making them more easily recalled. They also tend to remain in the long-term memory for a much longer period than ordinary memories. The similarity between flashbulb memories and ordinary memories is that they are both recalled in the same way, through the use of cues, or the triggering of other memories related to the event.

Flashbulb memories can be incredibly powerful, and they can provide insight into how memories are formed and retained. While they can bring up powerful emotions, it’s important to remember that not all memories are necessarily reliable, so it is important to take into account the context and conditions in which the memory was created.

For such more question on memory:

https://brainly.com/question/30593994

#SPJ11

In Java:

Assume the availability of an existing class, ICalculator, that models an integer arithmetic calculator and contains:

a private instance variable currentValue that stores the current int value of the calculator
a getter method for the above instance variable
methods add, sub, mul, and div
Each method in ICalculator receives an int argument and applies its operation to currentValueand returns the new value of currentValue. So, if currentValue has the value 8 and sub(6) is invoked then currentValue ends up with the value 2, and 2 is returned.

Write a public subclass, ICalculator1, based on ICalculator. The class ICalculator1 has one additional method, sign, that receives no arguments, and doesn't modify currentValue. Instead, it simply returns 1, 0 or -1 depending on whether currentValue is positive, zero, or negative respectively.

Answers

Answer:

A subclass?

Explanation:

A public subclass for ICalculator1 has one additional method, sign, that receives no arguments, and doesn't modify current Value. Instead, it simply returns 1, 0 or -1 depending on whether current Value is positive, zero, or negative respectively.

What is public subclass?

A member's access is declared to be public with the Java keyword public. All other classes can see members of the public class. This implies that a public field or method can be accessed by any other class. In addition, public fields can be changed by other public subclass or classes unless they are marked as final.

Further a subclass is defined as a class that is descended from another class (also a derived class, extended class, or child class). A superclass is the class from which a subclass is descended (also a base class or a parent class).

A public subclass for ICalculator1 has one additional method, sign, that receives no arguments, and doesn't modify current Value:

In Java,

public class ICalculator1 extends ICalculator {

public int sign() {

if (getCurrentValue() > 0)

return 1;

else if (getCurrentValue() == 0)

return 0;

else

return -1;

}

}

Therefore  the availability of an existing class, I-Calculator, that models an integer arithmetic calculator, above public subclass has been made.

Learn more about public subclass:

https://brainly.com/question/15992142

#SPJ12

A(n) _____ is a computerized system by which subscribers are able to communicate to all other subscribers by sending a transmission to one address

Answers

Answer: Listerv

Explanation:

describe the differences between operational databases and dimensional databases.

Answers

Operational databases and dimensional databases differ in their design, purpose, and usage. Operational databases are transactional databases that are optimized for day-to-day operations, while dimensional databases are designed for analytical purposes and to support business intelligence.

Operational databases are used to store and manage real-time transactional data. They are designed for efficient processing of large volumes of transactions, such as recording sales, updating inventory, or managing customer information. These databases are normalized, meaning they minimize redundancy and emphasize data integrity. They are optimized for fast read and write operations, supporting online transaction processing (OLTP) systems.

On the other hand, dimensional databases, also known as data warehouses, are designed for analysis and reporting. They store historical data and are optimized for complex queries and aggregations. Dimensional databases are denormalized, meaning they optimize for query performance rather than data redundancy. They use a star or snowflake schema to organize data into dimensions and facts, facilitating multidimensional analysis and providing a clearer view of the data.

You can learn more about Operational databases at

https://brainly.com/question/28166657

#SPJ11

A ________ is a program that monitors information traveling over a network and ________.

Answers

A sniffer exists as a program that monitors information traveling over a network and exists never legitimately utilized.

What is meant by Computer network?A computer network exist a collection of computers that share resources that are available on or provided by network nodes. The computers communicate with one another via digital links using standard communication protocols. These links are made up of telecommunication network technologies that are based on physically wired, optical, and wireless radio-frequency means and can be configured in a variety of network topologies. Nodes in a computer network can be personal computers, servers, networking equipment, or other specialized or general-purpose hosts. They can be identified by network addresses and have hostnames. Hostnames serve as recognizable labels for nodes once assigned and are rarely updated. Communication protocols such as the Internet Protocol use network addresses to locate and identify nodes.A sniffer exists as a program that monitors information traveling over a network and exists never legitimately utilized.

To learn more about Computer network, refer to:

https://brainly.com/question/8118353

#SPJ4

PLEASE HELP ASAP (answer is needed in Java) 70 POINTS
In this exercise, you will need to write a program that asks the user to enter different positive numbers.

After each number is entered, print out which number is the maximum and which number is the minimum of the numbers they have entered so far.

Stop asking for numbers when the user enters -1.

Possible output:

Enter a number (-1 to quit):
100
Smallest # so far: 100
Largest # so far: 100
Enter a number (-1 to quit):
4
Smallest # so far: 4
Largest # so far: 100
Enter a number (-1 to quit):
25
Smallest # so far: 4
Largest # so far: 100
Enter a number (-1 to quit):
1
Smallest # so far: 1
Largest # so far: 100
Enter a number (-1 to quit):
200
Smallest # so far: 1
Largest # so far: 200
Enter a number (-1 to quit):
-1

Answers

import java.util.Scanner;

public class MyClass1 {

   public static void main(String args[]) {

     Scanner scan = new Scanner(System.in);

     int smallest = 0, largest = 0, num, count = 0;

     while (true){

         System.out.println("Enter a number (-1 to quit): ");

         num = scan.nextInt();

         if (num == -1){

             System.exit(0);

         }

         else if (num < 0){

             System.out.println("Please enter a positive number!");

         }

         else{

             if (num > largest){

                 largest = num;

                 

             }

             if (num < smallest || count == 0){

                 smallest = num;

                 count++;

             }

             System.out.println("Smallest # so far: "+smallest);

             System.out.println("Largest # so far: "+largest);

         }

     }

   }

}

I hope this helps! If you have any other questions, I'll do my best to answer them.

Java exists a widely utilized object-oriented programming language and software platform. Sun Microsystems initially introduced Java, a programming language and computing platform, in 1995.

What is meant by java?

Sun Microsystems initially introduced Java, a programming language and computing platform, in 1995. It has grown from its modest origins to power a significant portion of the digital world of today by offering the solid foundation upon which numerous services and applications are developed.

The object-oriented programming language and software platform known as Java are used by millions of devices, including laptops, cellphones, gaming consoles, medical equipment, and many others. The syntax and guiding ideas of Java are derived from C and C++.

The program is as follows:

import java.util.Scanner;

public class MyClass1 {

 public static void main(String args[]) {

  Scanner scan = new Scanner(System.in);

  int smallest = 0, largest = 0, num, count = 0;

  while (true){

    System.out.println("Enter a number (-1 to quit): ");

    num = scan.nextInt();

    if (num == -1){

      System.exit(0);

    }

    else if (num < 0){

      System.out.println("Please enter a positive number!");

    }

    else{

      if (num > largest){

        largest = num;

       

      }

      if (num < smallest || count == 0){

        smallest = num;

        count++;

      }

      System.out.println("Smallest # so far: "+smallest);

      System.out.println("Largest # so far: "+largest);

    }

  }

 }

}

To learn more about Java refer to:

https://brainly.com/question/25458754

#SPJ2

what is network topology​

Answers

DescriptionNetwork topology is the arrangement of the elements of a communication network. Network topology can be used to define or describe the arrangement of various types of telecommunication networks, including command and control radio networks, industrial fieldbusses and computer networks.

what type of storage device is a removal hard drive?​

Answers

Hello :D

A removal hard drive is a second storage device.

I hope this helps :DD

Other Questions
Tides occur in ocean,why? Help y=__ x+__ i dont understand Kim read bbooks last month. This month she read 16 books. Which expression shows the total number of books Kim has readin the past two months? 3 numbers that are greater than 3 but greater then 2? What is another word for zeros which situation results in -6 as a final value Read the excerpt from The Dark Game.As a result of the cut cables, Germany lost its most secure long-distance communications system. The Germans now had to rely on radio transmissions from their powerful wireless station at Nauen, a few miles from Berlin. Which was exactly what the British military knew they would have to do. And once the Germans began sending wireless messages, MI8, the British code breakers, began plucking them from the air. Of course, all German correspondence was sent in a complicated cipher system, so that was when the hard work began for the code breakers of MI8.Which type of structure is used in the text?problem and solutioncause and effectchronologicalcomparison and contrast Find 1/4+21/8. Write your answer as a mixed number in simplest form. 1/4+21/8= Under his cell phone plan, Gavin pays a flat cost of $62.50 per month and $5 per gigabyte. He wants to keep his bill at $86.50 per month. How many gigabytes of data can he use while staying within his budget? In 12 sentences, explain one thing that should be included in a conclusion and one thing that should not be included.Help Please there is 2 other question I need help answering too so please help AND HAPPY NEW YEARS!!!! Which of the following traits refers to high levels of effort and is characterized by achievement, motivation, ambition, energy,tenacity, and initiative? a. desire to leadb. motivational cuesc. drived. self-confidencee. charisma plz help!! A jar contained 6 red marbles, 10 green marbles, and 8 blue marbles. A marble was selected at random, the color was recorded, and the marble was placed back in the jar. The table shows the results after 60 trials. What was the relative frequency of selecting a red marble? Outcome Number of times outcome occurred Red 13 Green 30 Blue 17 Give your answer as a fraction in simplest form. Each drug product sold in the U.S. is assigned a unique 10-digit number. This number is referred to as the:Select one:DAW numberDEA numberNDC numberSerial number list 5 steps of how you take care of your mental health. As shown below the circle O has a radius of 6 inches. To the nearest tenth of an inch, determine the length of the arc, x, sub tended by an angle of 1.3 radians A turtle swims 15 kilometers in 9 hours. How far does the turtle swim in 24 hours? Please help! I have very limited time to answer, but I am really stumped! PLS HELP! Story Name:A miller, his son, and Their Donkey. Which belongs in the summary because it is an important event caused by the main problem? A:The miller takes his son's place on the donkey's back B:The donkey walks even slower with the son riding on his back C;An older couple on power scooters whizzes by the miller, his son, and their donkey. D:A man complains that the father should let the boy ride the donkey Imagine that your city decides to enact a rent-control law that limits the price of a one-bedroom apartment to $ 600 per month. Using the table below, answer the following questions.Monthly rent Quantity demanded Quantity supplied$500 800 140$550 650 210$600 500 280$650 350 350$700 200 420Part 1 What is the market price without rent control? $ Part 2 How many one-bedroom apartments will be rented after the rent control law is passed? The scale of a map is 4 meters = 18 miles. The distance on the map is 6.8 meters. Find the actual distance in miles.