which is not a characteristic of software:
A) virtual
B) application
C) physical
D) computer programs​

Answers

Answer 1

Answer:

C) physical

Explanation:

Virtual, Applications, and Computer Programs are all characteristics of software, except Physical.


Related Questions

How could you use your technology skill and Microsoft Excel to organize, analyze, and compare data to decide if a specific insurance is a good value for the example you gave

Answers

Answer:

The summary of the given question would be summarized throughout the below segment.

Explanation:

"Insurance firms voluntarily assume our charge probability," implies assurance undertakings will compensate including all our devastations throughout respect of products for something we have health coverage and that the vulnerability for both would be equivalent.If somehow the client receives significant losses, the firm must compensate that kind of money as well as, if there are no failures, it can invest earnings or rather an investment.

What is the meaning of negative impact in technology

Answers

Answer:

the use of criminal thought by the name of education

Of the following is a principle of total quality management?

A. Continuous defect elimination

B. Continuous process improvement

C. Continuous value enhancement

D. Continuous productivity improvement

Answers

Option b the continuous process improvement

The clone() method expects no arguments when called, and returns an exact copy of the type of bag on which it is called.

Answers

Answer:

true

Explanation:

This statement is true. This is a method found in the Java programming language and is basically used to create an exact copy of the object that it is being called on. For example, in the code provided below the first line is creating a new object from the Cars class and naming it car1. The second line is creating an exact copy of car1 and saving it as a new object called car2. Notice how the clone() method is being called on the object that we want to copy which in this case is car1.

       Cars car1 = new Cars();

       Cars car2 = (Cars) car1.clone();

Conduct research to determine the best network design to ensure security of internal access while retaining public website availability.

Answers

Answer:

There are many benefits to be gained from network segmentation, of which security is one of the most important. Having a totally flat and open network is a major risk. Network segmentation improves security by limiting access to resources to specific groups of individuals within the organization and makes unauthorized access more difficult. In the event of a system compromise, an attacker or unauthorized individual would only have access to resources on the same subnet. If access to certain databases in the data center must be given to a third party, by segmenting the network you can easily limit the resources that can be accessed, it also provides greater security against internal threats.

Explanation:

The best method in network security to prevent intrusion are:

Understand and use OSI Model.  Know the types of Network Devices.  Know Network Defenses.  Separate your Network.

How can I improve security through network design?

In the above case, the things to do is that one needs to focus on these areas for a a good network design. They are:

Physical security.Use of good firewalls. Use the DMZ, etc.

Therefore, The best method in network security to prevent intrusion are:

Understand and use OSI Model.  Know the types of Network Devices.  Know Network Defenses.  Separate your Network.

Learn more about network security from

https://brainly.com/question/17090284

#SPJ6

Which of the following statements regarding the SAP Hana product implemented by Under Armour is NOT true?
A. All of the statements are true.
B. The program allows legacy silos to remain intact.
C. The program can run across platforms and devices.
D. The program provides real-time results.

Answers

Answer:A

Explanation:i need points

What does the abbreviation BBC stands for?

Answers

Answer:

British Broadcasting Corporation Microcomputer System

Explanation:

The British Broadcasting Corporation Microcomputer System, or BBC Micro, is a series of microcomputers and associated peripherals designed and built by the Acorn Computer company in the 1980s for the BBC Computer Literacy Project.

Answer:

British Broadcasting Corporation

Explanation:

This is a UK company which provides television and radio news in over 40 languages. This is the computer related meaning, there are other meanings to the abbreviation but they seem irrelevant in this case.

Hope this information was of any help to you. (:

what is function of java​

Answers

Explanation:

Java is an object-orinted programming language used for software develpment.

The imperative programming paradigm is popular and is a part of object-oriented computing paradigm, because it: __________.
A. is based on computer organization and thus is efficient to execute on hardware.
B. matches the culture of doing things by following the step-wise instructions.
C. enforces the modularity and supports the development of large programs.
D. supports class inheritance and code reuse.

Answers

Answer:

B. Matches the culture of doing things by following the step-wise instructions.

Explanation:

Imperative programming paradigm follows a sequence of instructions and steps. The order of execution of the statement is necessary because their is sequence of statements. Operation is system oriented.

In imperative programming, the source code is a series of commands, this commands tell the computer what to do, when to do it and the order it will be done so as to achieve the best result. The code of imperative programming paradigm is quite easy to understand.

Countdown until matching digits Write a program that takes in an integer in the range 11-100 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical. Ex: If the input is the output is 93 92 91 90 89 88 Ex: If the input is 11 the output is 11 Ex: If the input is 9 or any number not between 11 and 100 (inclusive), the output is: Input must be 11-100 For coding simplicity, follow each output number by a space, even the last one. Use a while loop. Compare the digits do not write a large if-else for all possible same-digit numbers (11,22,33...99), as that approach would be cumbersome for larger ranges. 29999.1122120 LAB ACTIVITY 4.13.1: LAB: Countdown until matching digits 7/10 main.c Load default template... 1 include 2 3 int main() 4 int n, i: 5 scanf("%d", &n); if (n < 20 Il n98) { 7 printf("%d",n); } else { i-n: 1e while (1) printf("%d", 1); if (icie - i/10) 13 14 15 16 17 } 18 printf("\n"); 19 return : 20 ) 12 break; Latest submission - 11:16 PM on 02/05/21 Total score: 7/10 Only show failing tests Download this submission 1: Compare output A 3/3 Input Your output 93 92 91 90 89 88 2: Compare Output A Input 11 Your output 11 3: Compare output a 3/3 Input 20 Your output 20 19 18 17 16 15 14 13 12 11 4: Compare output A 0/2 Output differs. See highlights below. Special character legend Input 101 Your output 101 Expected output Input must be 11-100 5. Compare output A 0/1 Output differs. See highlights below. Special character legend Input Your output Expected output Input must be 11-100

Answers

Answer:

The program in C is as follows:

#include <stdio.h>

int main(){

   int n;

   scanf("%d", &n);

   if(n<11 || n>100){

       printf("Input must be between 11 - 100");    }

   else{

       while(n%11 != 0){

           printf("%d ", n);

           n--;        }

       printf("%d ", n);    }

   return 0;

}

Explanation:

The existing template can not be used. So, I design the program from scratch.

This declares the number n, as integer

   int n;

This gets input for n

   scanf("%d", &n);

This checks if input is within range (11 - 100, inclusive)

   if(n<11 || n>100){

The following prompt is printed if the number is out of range

       printf("Input must be between 11 - 100");    }

   else{

If input is within range, the countdown is printed

       while(n%11 != 0){ ----This checks if the digits are identical using modulus 11

Print the digit

           printf("%d ", n);

Decrement by 1

           n--;        }

This prints the last expected output

       printf("%d ", n);    }

Frames control what displays on the Stage, while keyframes help to set up

Answers

Answer: A keyframe is a location on a timeline which marks the beginning or end of a transition. So for example, you have a movie and it transitions to another scene, keyframes tell it when and where to start the transition then when and where to stop the transition.

The _____ of the Open Systems Interconnection (OSI) modelspecifies the electrical connections between computers and the transmission medium and is primarily concerned with transmitting binary data, or bits, over a communication network.

Answers

Answer:

"Physical layer" is the correct answer.

Explanation:

It dealt mostly with bit-level transfer across various equipment as well as it provides industrial automation connections to meet quality standards to something like digital downloads.The purpose of this layer would be to consolidate essential networking system compatibility so that information is being sent successfully.

Thus, the above is the correct answer.

which function would ask excel to average the values contained in cells C5,C6,C7, and C8

Answers

Answer:

=AVERAGE(C5:C8)

Explanation:

The function calculates the average of the values in the cell range C5:C8 - C5, C6, C7, C8.

By comparing the time out mechanism used in TCP to that used in a data link layer protocol, outline why it is necessary for the TCP timeout mechanism to implement an adaptive timeout duration

Answers

Answer:

When there are network flows within the wireless link that experience prolonged poor transmission it can impact on the network, leading to the stalling of the source while waiting for the arrival of ACKS, due to the filling of the TCP source congestion window. More time is lost as the source waits for a timeout to be caused by the expiration of the RTO timer which results in lower efficiency and network throughput by the TCP that requires an adaptive timeout duration to be implemented

Explanation:

Exercise#1: The following formula gives the distance between two points (x1, yı) and (x2, y2) in the Cartesian plane:
[tex] \sqrt{(x2 - x1) ^{2} + (y2 - y1) ^{2} } [/tex]
Given the center and a point on circle, you can use this formula to find the radius of the circle. Write a C++ program that prompts the the user to enter the center and point on the circle. The program should then output the circle's radius, diameters, circumference, and area. Your program must have at least the following methods: findDistance: This mehod takes as its parameters 4 numbers that represent two points in the plane and returns the distance between them. findRadius: This mehod takes as its parameters 4 numbers that represent the center and a point on the circle, calls the method findDistance to find the radius of the circle, and returns the circle's radius. circumference: This mehod takes as its parameter a number that represents the radius of the circle and returns the circle's circumference. area: This mehod takes as as its parameter a number that represents the radius of the circle and returns the circle's area. .​

Answers

Ddgdgdgdfdgdfdgdgdgdgdgdgdgdggdgdgdgdgg

What is the value of x after the following code is executed?

x = 0
while x < 20 :
x = x + 1
else :
x = 10

Answers

I think it is X equals X +1 and while ex alt 20

Caleb Co. owns a machine that had cost $42,400 with accumulated depreciation of $18,400. Caleb exchanges the machine for a newer model that has a market value of $52,000. 1. Record the exchange assuming Caleb paid $30,000 cash and the exchange has commercial substance. 2. Record the exchange assuming Caleb paid $22,000 cash and the exchange has commercial substance.

Answers

Answer: See explanation

Explanation:

1. Record the exchange assuming Caleb paid $30,000 cash and the exchange has commercial substance.

Dr Machine (new) $52000

Dr Loss on exchange of asset $2000

Dr Accumulated Depreciation $18400

Cr Equipment (Old) $42400

Cr Cash $30000

Nite that loss was calculated as:

= Market value of new machine - (Book value if old machine - Depreciation) - Cash paid

= $52000 - ($42400 - $18400) - $30000

= $52000 - $24000 - $30000

= -$2000

2. Record the exchange assuming Caleb paid $22,000 cash and the exchange has commercial substance

Dr Machine (new) $46000

Dr Accumulated Depreciation $18400

Cr Equipment (Old) $42400

Cr Cash $22000

Note that the value of the new machine was calculated as:

= Original cost + Cash paid - Accumulated Depreciation

= $42000 + $22000 - $18400

= $46000

Which of the following statement is False? 1 point Context free language is the subset of context sensitive language Regular language is the subset of context sensitive language Recursively enumerable language is the super set of regular language Context sensitive language is a subset of context free language

Answers

Answer:

Context-sensitive language is a subset of context-free language

Explanation:

Considering the available options, the statement that is considered wrong is "Context-sensitive language is a subset of context-free language."

This is because generally every regular language can be produced through the means of context-free grammar, while context-free language can be produced through the means of context-sensitive grammar, and at the same time, context-sensitive grammars are produced through the means of Recursively innumerable.

Hence, the correct answer in this correct answer to the question is the last option *Context-sensitive language is a subset of context-free langage

1.               The smallest unit in a digital system is a​

Answers

Answer:

a bit

Explanation:

<3

In this module you learned about advanced modularization techniques. You learned about the advantages of modularization and how proper modularization techniques can increase code organization and reuse.
Create the PYTHON program allowing the user to enter a value for one edge of a cube(A box-shaped solid object that has six identical square faces).
Prompt the user for the value. The value should be passed to the 1st and 3rd functions as arguments only.
There should be a function created for each calculation
One function should calculate the surface area of one side of the cube. The value calculated is returned to the calling statement and printed.
One function should calculate the surface area of the whole cube(You will pass the value returned from the previous function to this function) and the calculated value results printed.
One function should calculate the volume of the cube and print the results.
Make a working version of this program in PYTHON.

Answers

Answer:

Following are the code to the given question:

def getSAOneSide(edge):#defining a method that getSAOneSide that takes edge patameter

   return edge * edge#use return to calculate the edge value

def getSA(SA_one_side):#defining a method that getSA that takes SA_one_side patameter

   return 6 * SA_one_side#use return to calculate the SA_one_side value

def volume(edge):#defining a method that volume that takes edge patameter

   return edge * edge * edge#use return to calculate edge value

edge = int(input("Enter the length of edge of the cube:\n"))#defining edge variable that input value

SA_one_side = getSAOneSide(edge)#defining SA_one_side that holds getSAOneSide method value

print("Surface area of one side of the cube:", SA_one_side)

surfaceArea = getSA(SA_one_side)#defining a surfaceArea that holds getSA method value

print("Surface area of the cube:", surfaceArea)#print surfaceArea value

vol = volume(edge)#defining vol variable that holds Volume method value

print("Volume of the cube:", vol)#print vol Value

Output:

Please find the attached file.

Explanation:

In the code three method "getSAOneSide, getSA, and volume" method is declared that takes a variable in its parameters and use a return keyword that calculates and return its value.

In the next step,edge variable is declared that holds value from the user and defines three variable that holds method value and print its value with the message.

write the output of given program:​

Answers

Answer:

24

16

80

0

Explanation:

A+B=>20+4=24

A-B=>20-4=16

A*B=>A x B = 20 x 4 = 80

A MOD B=> Remainder of A/B = 0

Consider the code below. When you run this program, what is the output if the temperature is 77.3 degrees Fahrenheit?
temperature = gloat(input('what is the temperature'))
if temperature >70:
print('Wear short sleeves')
else:
print('bring a jacket')
print ('Go for a walk outside')

Answers

Answer:

The output would be "Wear short sleeves"

Explanation:

The temperature is 77.3 degrees and 77.3 > 70

) Python command line menu-driven application that allows a user to display, sort and update, as needed a List of U.S states containing the state capital, overall state population, and state flower. The Internet provides multiple references with these lists. For example:

Answers

Answer:

Explanation:

The following is a Python program that creates a menu as requestes. The menu allows the user to choose to display list, sort list, update list, and/or exit. A starting list of three states has been added. The menu is on a while loop that keeps asking the user for an option until exit is chosen. A sample output is shown in the attached picture below.

states = {'NJ': ['Trenton', 8.882, 'Common blue violet'], 'Florida':['Tallahassee', 21.48, 'Orange blossom'], 'California': ['Sacramento', 39.51, 'California Poppy']}

while True:

   answer = input('Menu: \n1: display list\n2: Sort list\n3: update list\n4: Exit')

   print(type(answer))

   if answer == '1':

       for x in states:

           print(x, states[x])

   elif answer == '2':

       sortList = sorted(states)

       sorted_states = {}

       for state in sortList:

           sorted_states[state] = states[state]

       states.clear()

       states = sorted_states

       sorted_states = {}

   elif answer == '3':

       state = input('Enter State: ')

       capital = input('Enter Capital: ')

       population = input('Enter population: ')

       flower = input('Enter State Flower: ')

       states[state] = [capital, population, flower]

   else:

       break

_ is a term used for license like those issues by creative commons license as an alternative to copyright

Answers

, . , .

Explanation:

'

seven and two eighths minus five and one eighth equals?

Answers

Answer: 2.125

Explanation

A company can either invest in employee training seminars or update its computer network. Since updating the computer network would result in more measurable benefits, the company would be best off updating its computer network. The argument above assumes that: Group of answer choices

Answers

Answer:

The more measurable a benefit, the greater value that benefit has to a company

Explanation:

Here, there are two choices ; organizing employee training seminars and computer network update. With an update in the company's computer network, accompanying benefits include ; Improved network performance, Extended feature accessibility, Enhanced firewall and security features, Enhanced efficiency leading to increased overall output. Employee training and seminar also comes with its own benefit which include enhanced employee knowledge. However , the measurable benefits of updating a computer network seems more numerous than employee training which could be a reason why the company chose to invest in its computer network as they feel that investments with more measurable benefits will impact more on the company.

Write a program that estimates how many years, months, weeks, days, and hours have gone by since Jan 1 1970 by calculations with the number of seconds that have passed.

Answers

Answer:

Explanation:

The following code is written in Java. It uses the LocalDate import to get the number of seconds since the epoch (Jan 1, 1970) and then uses the ChronoUnit import class to transform those seconds into years, months, weeks days, and hours. Finally, printing out each value separately to the console. The output of the code can be seen in the attached picture below.

import java.time.LocalDate;

import java.time.temporal.ChronoUnit;

class Brainly {

   public static void main(String[] args) {

       LocalDate now = LocalDate.now();

       LocalDate epoch = LocalDate.ofEpochDay(0);

       System.out.println("Time since Jan 1 1970");

       System.out.println("Years: " + ChronoUnit.YEARS.between(epoch, now));

       System.out.println("Months: " + ChronoUnit.MONTHS.between(epoch, now));

       System.out.println("Weeks: " + ChronoUnit.WEEKS.between(epoch, now));

       System.out.println("Days: " + ChronoUnit.DAYS.between(epoch, now));

       System.out.println("Hours: " + (ChronoUnit.DAYS.between(epoch, now) * 24));    

   }

}

1. Imagine you are in a computer shop. Choose five things that would improve your digital lif​

Answers

Answer:

definitley a mac

Explanation:

im not much of an apple company person but i would love to try a mac im more of that disney person who likes the animated stuff like raya and the last dragon which came out in march and luca which came out last friday

sita didnt go to school. (affirmative)
me​

Answers

What is this supposed to be a question??

Select the correct answer. Which input device uses optical technology?
A. barcode reader
B. digital pen
C. digital camera
D. joystick​

Answers

Answer:

barcode reader is the correct answer

Other Questions
2 |m - n| + k (if k = -2, m = -7, and n = 4)(Those aren't 1s, they're the absolute value thingies) Need help!!!!!!!!!!!!!!!! Help meeee pleasssseeee For a specific volume of 0.2 m3/kg, find the quality of steam if the absolute pressure is (a) 40 kPa and (b) 630 kPa. What is the temperature of each case? Highlight the answers26 Irelands great export in the 1840s was a people. b potatoes. C whiskey. d wool.27 Eli Whitney was instrumental in the development of the a steamboat. b steel plow. c mechanical reapers. d cotton gin.28 The basis for modern mass-production was the a musket. b cotton gin. c principle of limited liability. d use of interchangeable parts.29 New transportations systems such as turnpikes, canals, and steamboats a lowered freight rates. b encouraged economic growth. c facilitated migration of peoples. d all of the above.30 Deists endorsed the religious concept of a a supreme being who created the universe. b revelation. c original sin. d none of the above.31 Northern attitudes toward free blacks can best be described as a supporting their right to full citizenship. b advocating black migration to new territories. c very racist. d none of the above.32 Slaves were a regarded primarily as financial assets by their owners. b the primary form of wealth in the South. c profitable for their owners. d all of the above.33 The view that God ordained the growth of the U.S. across North America a was referred to as Manifest Destiny. b Isolationism. c Continentalism. d none of the above.34 The Mexican American War resulted in a one-third increase in the territorial sine of the United States. b combat experience for the future Civil-War military leaders. c increased respect for American military and naval capabilities. d all of the above.35 The man who opened Japan to the United States and the West was a Clayton Bulwer. b Matthew Perry. c Franklin Perce. d John C. Calhoun.36 The major result of the famous Lincoln-Douglass Debates was that they a gained Douglass the Illinois senate seat. b gained Lincoln the Illinois senate seat. c propelled Lincoln into the national spotlight. d destroyed Lincolns political career.37 In his raid on Harpers Ferry, John Brown intended to a discredit abolitionists. b make Kansas a free state. c foment a massive slave rebellion. d force a political compromise on the slavery issue.38 The impeachment of President Andrew Johnson. a resulted in his conviction and removal from office b resulted in a not guilty vote by a massive majority favoring Johnson. c was led by Radical Republicans who saw him interfering with with Reconstruction. d was the only time a president has been impeached39 The Emancipation Proclamation declared free only those slaves in a the Border States b Slave States that had remained loyal to the Union. c United States territories. d states in rebellion against the United States.40 Radical Republicans policies came to dominate Reconstruction because a they had the majority of votes in the Senate. b of Lincolns assassination. c of the views of the conquering Union generals. d collusion with northern industrialists.Extra Credit (2 points each, 20 for all)List the three (3) important political firsts of the election of 1832:123List five examples of modern warfare associated with the American Civil War:12345 Laverne's scores on different parts of an IQ test are very different from one another. Laverne's profile of scores on the test: Please choose the correct answer from the following choices, and then select the submit answer button. supports the view of intelligence offered by Spearman. contradicts both early and contemporary views of intelligence. contradicts the view of intelligence offered by Spearman. contradicts contemporary theories suggesting several distinct forms of intelligence. One way families influence healthy technology use is when siblings explain the use of media to each other. Which of these outfits would you expect if this guideline was followed? Crane Company has old inventory on hand that cost $7500. Its scrap value is $10000. The inventory could be sold for $25000 if manufactured further at an additional cost of $7500. What should Crane do The thickness of eight pads designed for use in aircraft engine mounts are measured. The results, in mm, are 41.8, 40.9, 42.1, 41.2, 40.5, 41.1, 42.6, and 40.6. Assumed that the thicknesses are from a normal distribution. Can you conclude that the mean thickness is greater than 41.0 mm a) State your hypotheses. b) Test your hypotheses at .01 significance level. c) Your conclusion (in the context of this problem) Which of the following is true about museum mounting for photographs? The prints are only in black-and-white. The prints can be removed from the display boards. The prints are placed in white frames. All of the above que funcin cumple en la red las antenas o varillas en la red AHHHHH HELP IT'S TIMED!!!!!!!I'LL MARK BRAINLIEST SO PLEASE HELP!!!!!! Which of the following statements regarding the SAP Hana product implemented by Under Armour is NOT true?A. All of the statements are true.B. The program allows legacy silos to remain intact.C. The program can run across platforms and devices.D. The program provides real-time results. A survey related to presidential favorability was administered to members ofthe same party as the president. The results of the survey showed 85%favorability. Another national survey was administered to members of bothparties. The results of this survey showed 45% favorability. This is a classicexample of an error in which phase of inferential statistics?A. data analysisB. probability-based inferenceC. data gatheringD. data organization The drama club is selling tickets to their annual talent show. They sold adult tickets (a) for $12.50 each and student tickets (s) for $6. They sold a total of 30 tickets and made $264.50.Which system of equations best represents the situation above? PLEASE HELP ASAP!!!What is the solution to the system of equations? Independent clause exapmple Given that the price a stock is bought for is $110 . Based on the one-period valuation model of stock prices, if the stock is sold a year later at the price $120 after receiving a dividend of $2 , then the required rate of return on equity investments is nothing %. (Round your response to the nearest one decimal place.) Simplify Expressions. Which expression isequivalent to 5x - 2 + 2x - 67X-83X-87x - 43X - 4 who is the longest nail in the world