A(n) ________ variable is declared inside a module and cannot be accessed by statements that are outside the module.

Answers

Answer 1
local






----------------------------------------------------

Related Questions

Why is the definition for second based on the Cesium 133 atom?

Answers

It is qualitatively defined as the second division of the hour by sixty, the first division by sixty being the minute. The SI definition of second is "the duration of 9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the caesium 133 atom".

The ____________ method can be used to convert a string to an int.

Answers

parseInt()





----------------------------

Krystal recorded her times for all her cross-country meets this season. To sort her data showing the lowest times first, what will she need to do?

Sort alphabetically
Sort ascending
Sort descending
Sort numerically

Answers

Sort ascending would be the correct one, since you are going from the lowest value to the highest

The answer is: Sort Ascending

Sort ascending refers to a data arrangement method that is being done through low to high sequence. Some example of sort ascending include things such as showing data from lowest time to highest time, sorting data using initials from A to Z, sorting ranking from 1 - 10th , etc.

If your role model is from the same neighborhood as you or has the same ethnic background, _____.

Answers

your role model probably faced some of the same challenges as you will face
during your career

In the dns naming convention, what character(s) separate(s) a domain name from its subdomains?

Answers

In the dns naming convention, the domain name separates the sub-domains by "DOT" (.) character.

DNS or Domain Name System is written in a conventional method as Host. Domain. Root. This system allows only 255 characters while naming a domain that also includes the spaces in between. Sub-domain is the part of a large domain.

The default dfs namespace mode is windows server 2008, which supports up to 50,000 folders. how many folders does using non-windows server 2008 provide?

Answers

35 millions folders windows servers

_____ rows indicate that there is different formatting for odd and even rows.

Answers

Banded rows indicate that there are different formatting for odd and even rows.

Which type of encryption is the most popular form of e-mail encryption?

Answers

Public Key Cryptography is the most popular form of encryption in emails. This type of encryption utilizes "keys" only known to the owner of the set of data. 

A team wants to set up a computer lab for their library. Members would be able to access and read books using the computers in the library. After researching about risks, they decide to install only desktop computers instead of tablets. This strategy might prevent the risk of computers being stolen. Which risk management technique are they following?

A.) risk acceptance
B.) risk mitigation
C.) risk avoidance
D.) risk transfer

Answers

C . Risk avoidance
they don't want anyone to steal their stuff so they get their desktops to avoid anything getting stolen

A type TW cable containing two No. 12 copper conductors has a maximum overcurrent protection of
A. 20 A.
B. 15 A.
C. 30 A.
D. 25 A.

Answers

i think it is 25 im not sure though

Answer:

A. 20 A.

Explanation:

The National Electrical Code (NEC) Table 310-16 states that unless there is another specific provision in this code, the overcurrent protection in relation to the conductor types that has an obelisk( ) mark shall not be greater than 15 amps for No. 14, 20 amps for No. 12, and 30 amps for No. 10 copper; or, in relation to aluminum and copper clad aluminum, it shall not be greater than 15 amps for No. 12 and 25 amps for No. 10 after factors for ambient temperature and number of conductors have been adjusted as necessary.

Therefore, a type TW cable containing two No. 12 copper conductors can not have more than 20 A (i.e. 20 amps) overcurrent protection.    

Write a program that will take an integer and add up each of the number’s digits, count the number of digits in the number, and then average the digits. You must use a while loop and % to access each of the individual digits. Use / to reduce the number so that you can average all of the digits.
Example: num = 123 can be taken apart with tempNum = 123 % 10 (which will pull off the 3), then tempNum = tempNum / 10 (will result in 12). Do this in a loop while the number is > 0.

Sample Data :
234
10000
111
9005
84645
8547
123456789


 Be sure to include print statements that will format the output as below.

Sample Output :
234 has a digit average of 3.0

10000 has a digit average of 0.2

111 has a digit average of 1.0

9005 has a digit average of 3.5

84645 has a digit average of 5.4

8547 has a digit average of 6.0

123456789 has a digit average of 5.0

Answers

For count digits, you could just convert it to a String and check the length
Sum digits, convert to string then seperate each character with charAt then convert it to numbers in the return statement.
Average digits you can convert it to a String and then convert them back after taking them apart.
Here is my solution:

import java.lang.System.*;

public class DigiMath {   

private static int countDigits(int number)
{
       int sum = 0;
       while(number > 0)
       {
           sum ++;
           number /= 10;
       }       return sum;   
}

private static int sumDigits(int number)   
{       
      int sum = 0;       
      while(number > 0) {
           sum += number % 10;
           number /= 10;
       }
       return sum;
}
   
   public static double averageDigits( int number )
   {
       int count = countDigits(number);
       if (count > 0) {
           return (double)sumDigits(number) / (double)count;      
       } else { 
            return 0; 
       } 
   }
   
   public static void PrintDigitAverage(int number)
   {
       System.out.printf("%d has a digit average of %1.1f\n", number, averageDigits(number));
   }
   
   public static void main(String[] args) 
   {
       // Method tests (run with java -ea)
       assert countDigits(12345) == 5 : "countDigits returns wrong count";
       assert sumDigits(12345) == 15 : "sumDigits returns wrong sum";
       assert averageDigits(12345) == 3.0: "averageDigits returns wrong average";

        PrintDigitAverage(234);
        PrintDigitAverage(10000); 
        PrintDigitAverage(111); 
        PrintDigitAverage(9005); 
        PrintDigitAverage(84645); 
        PrintDigitAverage(8547); 
        PrintDigitAverage(123456789);
   }
}


Which type of attack attempts to overwhelm network links and devices with useless data?

Answers

A DDoS attack is a type of network attack that overwhelms a network with pointless data to the point that normal users can't get access to basic functions. This was notably done to The Playstation Network several years ago.
Final answer:

A Distributed Denial of Service (DDoS) attack attempts to overwhelm network links and devices with useless data.

Explanation:

The type of attack that attempts to overwhelm network links and devices with useless data is called a Distributed Denial of Service (DDoS) attack.

In DDoS attacks, hackers flood a target network or website with an enormous amount of traffic, making it unable to handle legitimate requests. This is achieved by using a network of compromised computers called a botnet to send the malicious traffic.

For example, hackers might use a DDoS attack to target an online shopping website during a busy holiday season, causing the site to slow down or even crash, preventing customers from accessing the site.

The last host address on the 10.15.25.0/24 network is

Answers

10.15.25.254 or 10.15.25.254/24
Final answer:

The last host address on the 10.15.25.0/24 network is 10.15.25.254. The /24 network provides 256 possible addresses, but the first and last addresses are reserved for network and broadcast addresses respectively.

Explanation:

In a /24 network, the last octet (8 bits) of the IP address is used for identifying hosts. The 10.15.25.0/24 network range offers 256 possible addresses, from 10.15.25.0 to 10.15.25.255. Among these, 10.15.25.0 is the network address and 10.15.25.255 is the broadcast address. Therefore, the last host address - the final usable IP address within this network - is 10.15.25.254.

Learn more about IP Address here:

https://brainly.com/question/35862697

#SPJ6

If using the md5 hashing algorithm, what is the length to which each message is padded?
a. 32 bits
b. 64 bits
c. 128 bits
d. 512 bits

Answers

If using the MD5 hashing algorithm, the length to which each message is padded 512 bits.

Answer: (d.) 512 bits.

MD5 stands for Message Digest 5. It is a hashing algorithm that is case sensitive.  It is a cryptographic hash values.

Software that instructs the computer how to run applications and controls the display/keyboard is known as the /7367008/81dc7fcb?utm_source=registration

Answers

The answer is the alu arithmetic logic unit. (:

You try to enter your name into a cell that accepts a numeric value. What error would you receive

Answers

A. #NAME

B. #VALUE

C. #REF

D. #####

E. #DIV


#VALUE on plato

your answer is B. #VALUE

a. True
b. False: the arguments in a module call and the parameters listed in the module header must be of compatible data types.

Answers

True ? They have to be of the same type, comatible isn't absolute enough. But I may be overthinking it.

People without a college education
A. earn on average $2 million less over the course of a lifetime than those who have a college education.

B. are more likely to have high birth-weight babies.

C. earn on average two times less money per year than those who have a college education.

D. make more money over the course of their lifetimes because they enter the workforce earlier.


Answers

im would say c  
hope i helped 

Answer:

C) earn on average two times less money per year than those who have a college education.

Explanation:

A study made by Georgetown University concluded that on average, college graduates earned $1 million more than high school graduates during their total lifetime.  

High school graduates earn on average $30,000 per year while college graduates earn on average between $50,000 to $70,000 per year. Those who achieved a master's, doctorate or professional degree earn the highest amounts.

Which of the following lines of distribution best describes the diagram?

A: retail distribution
B: direct distribution
C: distribution by agents or brokers
D: wholesale distribution

Answers

A) retail distribution.

Answer

retail distribution

Explanation

Retail distribution is the process or path that a manufactured good takes to reach its intended consumer. Manufacturers employ different retail distribution strategies for the purposes of interacting with customers.Sometimes the distribution channel is direct, such as when a consumer purchases a product directly from company without involving any intermediary.

You need to upgrade memory in a system but you don't have the motherboard documentation available. you open the case and notice that the board has four dimm slots

Answers

The three yellow slots probably indicate triple channeling, which means the board uses DDR3 DIMMs. To know for sure, remove a DIMM and look for the position of the notch on the DIMM.

If a business wanted to play an artist’s song in the background of their website, it must first consider the _____ of the music to ensure no laws are being broken.

Answers

no copyright laws being broken. the answer is copy right.

Answer:

copyright

Explanation:

Copyright is the set of national and international legal principles and norms that protect the creation of intellectual works by human beings.

There are two traditional legal conceptions of intellectual property: disseminated in the area of ​​influence of Anglo-American law and copyright, prevailing in the area of ​​influence of Latin law. In addition, there is now another conception, of a universal nature, free licenses, which some call "copyleft". And there is also the public domain. The first two have their origin in the monopolies that the monarchs granted to the authors to stimulate intellectual creation, and coincide in protecting the rights of the authors by granting them the power to exclude all other people from the use of the works, except the simple and individual reading, visualization, listening.

additional rows and columns are inserted into a table by using the _____ tab

Answers

insert tab
up at the top
have a nice day

Answer:

Layout

Explanation:

To add additional rows or columns, click anywhere in the table and click on the layout tab

To add rows ,click insert above or insert below.

To add columns click insert left or insert right.

I plugged my phone up into a charger, the charger sparked and i unplugged my phone and now it wont charge at all, does anyone know what is wrong or how much it would be to fix it?

Answers

The most probable answer is that their was a short on the charger causing your phone's charging port to blow out. You can fix this yourself with a hot air soldering gun to remove the charging port and replace it with an identical port but it is not recommended if you have a warranty. As for prices it depends on the phone.

What is the name of a coding scheme that assigns a specific numeric code to each character on your keyboard?

Answers

python is the answer to your question

Mike accidentally wrote a check for more than the balance in his checking account. The bank transferred money from his savings account to his checking account to cover the check. This banking service is _____.

Answers

Transfer. His back transfers money from one account to another.

Answer: The correct answer is overdraft protection.

Explanation: The service that a bank offers when they transfer money from the savings account to a checking account to cover an overdraft is called overdraft protection. Some banks may charge for this service, but others do it for free.

The android operating system is used by many popular tablet computers. which tablet does not use the android operating system

Answers

Apple Ipad and Microsoft Tablets.

In normal view, powerpoint's ________ contains buttons such as notes, comments, and view.

Answers

In normal view, powerpoint's status bar contains buttons such as notes, comments, and view. Status bar is located at the bottom of the PowerPoint application window, and it is needed to show both all the information about the document and user's ability to change the settings of a presentation. Status bar includes such specific items as : zoom control, slide number, comments and note pane buttons and view control.

The term "net radiation" refers to _____ the total amount of energy received by earth. the total amount of energy radiated by earth. the difference in amount of incoming and outgoing radiation. radiation emitted by satellite networks.

Answers


The term "net radiation" refers to the difference in amount of incoming and outgoing radiation the total amount of energy received by earth.

Energy comes from the sunlight penetrates the top of the atmosphere- that's the incoming energy. Then some of it is lost by reflection of clouds or the Earth's surface, thermal radiation- that's the outgoing energy.

A touch screen is classified as a special type of scanning device true or false

Answers

The anwser is true. It is special type


A touch screen is a device that can be sued for making scree-related touches and is as it touch sensitive and measures the responses from the touches. It is a type of scanning device that is stylus uses the pressure and is used to make images on the screen.

Hence the option is false as the touch screen is not classified as a true scanner it don't scan and is only a touch-sensitive element.

Hence the option False.

Learn more about the classified as a special type of.

brainly.com/question/19636949.

In addition to displaying subtotals, the subtotal feature "____" your worksheet so you can control the level of detail that is displayed.

Answers

In addition to displaying subtotals, the subtotal feature "outlines" your worksheet so you can control the level of detail that is displayed. The statement suggests that the displayed details levels are controlled in displaying subtotals in the subtotal feature table.
Other Questions
The main source of illumination used in three-point lighting is called the _____. _____ is a breaching party's right to provide conforming goods when nonconforming goods were initially delivered. What is the product of all positive divisors of $100$? If an author uses the pronoun you to tell a story, what is the probable point of view? A)first person B)second person C) third person. Which of the following is not a reading strategy? A) make connections B) ask questions C) imply. What does the vocabulary word purl mean? A) to spin in place B) a lustrous gem found in sea mollusks C) swirl. Deficits in visual spatial skills and fluent language skills are found in which genetic syndrome? HELP! "Water Never Hurt a Man"How is Lizabeth affected by her relationship with her parents in "Marigolds"? A. Lizabeth likes her parents but would rather spend time with her friends because they look up to her. B. Lizabeth loves her parents but she misses them because they are focused on working or job-hunting.C. Lizabeth is ashamed of her parents because they cannot provide a nice home for their family. D. Lizabeth is frustrated with her parents because she feels they are not there for her when she needs them. which statement supporting the right to bear arms aligns with the supreme courts opinion in a 2010 case? a. americans right to own guns should not be limited for any reason.b. americans need to own guns in case the government becomes tyrannical.c. the right to self-defense is a fundamental liberty that cannot be taken away from americans.d. people should be able to carry doube-barreied shotguns across state lines. Which type of listening style would be most appropriate for the following scenario? Your friend tells you he's recently interviewed for a job he really wants, but after a week, he still hasn't heard from the employer. informational critical empathic The heart of the modern doctrine of informed consent is can someone HELP ME PLEASE i will give BRAINIEST Which statement accurately compares the diction in Andrew Jackson's "On Indian Removal" to that in Michael Rutledge's "Samuel's Memory"? A.Jackson comes across as fake and pompous, whereas Rutledge comes across as down-to-earth. B.Jackson is emotionally detached, whereas Rutledge comes across as deeply emotional. C.Jackson focuses on the benefits of his policy, whereas Rutledge focuses on the misery it causes. D.Jackson relies on polite, academic words, whereas Rutledge relies on rich description. What is the value of x in the equation 1/5x 2/3y = 30, when y = 15? 4 8 80 200 What percentage of deaf children have hearing parents? What is the most likely consequence of emphasizing the internal evaluation? Another way to define metacognition could be:A) deep readingB) brainstormingC) recalling informationD) critical thinking We are in the theater. a. Vamos al cine. c. Damos el cine. b. Estamos en el cine. describe the three main properties that scientists measure when they study populations Sensory details for the cookies were good . In many countries, young children face serious threats to their health and safety. Identify and explain two key steps you would take to help a nation lower its child mortality rates. FIRST PERSON TO ANSWER ALLLLL THE QUESTIONS CORRECTLY GETS BRAINLIEST!!!!!!Question 1(Multiple Choice Worth 4 points)Which describes Phoenician traders? They traveled great distances over land. They traveled great distances by sea. They mostly traded within the Greek islands. They mostly traded with Asia Minor.Question 2(Multiple Choice Worth 4 points)How did Phoenician travel to Britain affect the Mediterranean region? It led to the spread of early Christianity in the Mediterranean region. It brought back tin to trade with other cultures. It led to conflict with the Mycenaean and Minoan cultures. It forced ancient Greeks to develop better ship technology to compete.Question 3(Multiple Choice Worth 4 points)How did the Phoenician alphabet differ from cuneiform? The symbols stand for pictures. The symbols stand for a single sound. The symbols stand for syllables. The symbols stand for whole words.Question 4(Multiple Choice Worth 4 points)Which of the following is an example of the impact of the geography of Greece on Greek settlement patterns? caused most cities to be located in the center of the Greek peninsula encouraged most of the population to live along the southern coast caused the settlement of colonies to be primarily to the west encouraged the settlement of colonies across the Mediterranean regionQuestion 5(Multiple Choice Worth 4 points)How did the geography of Greece influence Greek economic activity? It encouraged people to use the sea for food and trade. It encouraged people to create vast irrigation systems. It encouraged people to unify to create large working farms. It encouraged people to dissolve city-states in favor of kingdoms.Question 6(Multiple Choice Worth 4 points)The geography of Greece led to limited interactions with other cultures in the Mediterranean was rich in natural resources and led to repeated invasions from the Macedonians encouraged greater contact with peoples on the southern and eastern Mediterranean coasts caused the Greeks to eventually relocate eastward under Alexander the Great Which is the term for the party in each chamber with the most members? Steam Workshop Downloader