Which best describes a computer bug?

Answers

Answer 1

Answer:

a piece of computer software containing defects that prevent a program from running properly

Explanation:

i got a 100% on the test

Answer 2

Answer: The correct answer is B. a piece of computer software containing defects that prevent a program from running properly.

Explanation: I got it right. The answer is correct on Edge.

A computer bug is a type of error, fault or flaw in the software or hardware of a computer system. These bugs may cause unexpected results, malfunctions or crashes in a computer program or system. Logic errors, syntax errors, and runtime errors are some of the common types of computer bugs.

Bugs can propagate into a computer system during various levels of development including design, coding, testing, and deployment. However, to prevent bugs from invading, various testing and debugging methods should be performed by software developers to detect and fix any of the errors or problems that may occur.  

Hope this helps! :)


Related Questions

JAVA
Take two String inputs of the same length and merge these by taking one character from each String (starting with the first entered) and alternating. If
the Strings are not the same length, the program should print "error".
Sample Run 1:
Enter Strings:
balloon
atrophy
baatlrloopohny

Sample Run 2:
Enter Strings:
terrible
mistake
error

Answers

import java.util.Scanner;

public class JavaApplication83 {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter Strings: ");

       String word1 = scan.nextLine();

       String word2 = scan.nextLine();

       String newWord = "";

       if (word1.length() == word2.length()){

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

           {

               newWord += word1.charAt(i) +""+word2.charAt(i);

           }

       

       }

       else{

           newWord = "error";

       }

       System.out.println(newWord);

   }

   

}

I hope this helps!

1. What is a digital networking app?

Answers

Digital networking is building relationships through social media. Just like traditional networking is an ongoing thing, in the digital world, you read people's posts, comment and share them. You interact and again and again.

Answer:

Digital Networking is a web based and mobile app that makes networking today easy and meaningful.

Explanation:

n the diagram below, why is var typed first in front of pizza?

Answers

Answer:

var is used to initialize the pizza variable

Explanation:

In order to create a variable, you first have to intiialize he variable.

This is the syntax to intiailize the variable:

var variableName

Thus, to initialize the pizza variable, you would do:

var pizza

Once you initialize the variable, you can then assign values to the variable.

pizza <- 3

Here, the value 3 is assigned to the pizza variable.  

White lines
A.separate traffic lanes moving in opposite directions
B.separate traffic moving in the same direction
C.indicate a handicap parking space
the
D.indicate temporary parking

Answers

Answer:

Its B                                                                                                                                            

Explanation:

Answer: B

Explanation:

Please Help Me
If you had an acer chrombook and it was family linked you had two accounts on it. (The administrater which is the family linked account and a school account) and you forgot the original password to the account how do you completely reboot the computer and start all over again.Like completely reboot like its new.

Answers

Answer:

Sign out of your Chromebook.

Press and hold Ctrl + Alt + Shift + r.

Select Restart.

In the box that appears, select Powerwash. Continue.

Follow the steps that appear and sign in with your Google Account. ...

Once you've reset your Chromebook:

Explanation:

Hope this helps. :)

Assume that your body mass index (BMI) program calculated a BMI of 20.6. What would be the value of category after this portion of the program was executed?

# Determine the weight category.
if BMI 39.9:
category = "morbidly obese"
elif BMI <= 24.9:
category = "normal"
elif BMI <= 39.9:
category = "overweight"
The value of category will be (normal/overweight/.underweight/morbidly obese)

Answers

Answer:

normal is the answer

Answer:

normal

Explanation:

7.4 Code Practice: Question 2
Adjust the code you wrote for the last problem to allow for weighted classes. Add a parameter weighted ( 1 = yes, 0 = no) and then return the correct number for the GPA. Weighted classes get one extra point on the GPA value.

I could really use some help on this and 7.5 (I’ll ask that question for 7.5 later)

Answers

def GPAcalc(grade, weighted):

   grade = grade.lower()

   dictionary = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

   if weighted == 1 and grade in dictionary:

       return "Your GPA score is: "+str(dictionary[grade] + 1)

   elif weighted == 0 and grade in dictionary:

       return "Your GPA score is : "+str(dictionary[grade])

   else:

       return "Invalid"

print(GPAcalc(input("Input a letter grade: "), int(input("Is it weigthed? (1= yes, 0= no)"))))

I modified the code a bit to cut down on the use of if and elif statements. If you need me to change it, I will. Best of luck.

The program is an illustration of conditional statements.

Conditional statements are statements whose execution is dependent on its truth value.

The program in Python, where comments are used to explain each line is as follows:

#This initializes the dictionary

dict = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

#This gets input for grade

grade = input().lower()

#This gets input for the weighted average

weighted = int(input())

#If the weighted average is 1, and the grade is in the dictionary

if weighted == 1 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is: "+str(dict[grade] + 1))

#If the weighted average is 0, and the grade is in the dictionary

elif weighted == 0 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is : "+str(dict[grade]))

#Otherwise

else:

   #The grade is invalid

   print("Invalid")

Read more about similar programs at:

https://brainly.com/question/19241597

what best defines "opportunity cost"

Answers

Answer: You have a oputernity to buy it so say there are other people are not looking but they want it its like an auction you have to pretty much bid

Explanation:

Question # 4
Dropdown
Choose the correct term to complete the defintion of your user-defined data type.
v player
life = 3
magic = False
name =

Answers

Answer:

class

Explanation:

edg2020

Answer: class

Explanation: got it right on edgen

Select the four elements typically included as part of a motherboard.

chipset
webcams
speakers
expansion cards
keyboard
sockets
clock generator

Answers

Answer:

Chipset, Expansion Cards, Sockets and Clock generator

Explanation:

Answer:

2

3

5

6

Explanation:

on edg

The sheep in the image below is an example of which of the following?

balanced space
positive space
negative space
neutral space

Answers

Answer:

balanced space.

Explanation:

This is a edu guess.

Why was that feast held

Answers

Answer:

if its christianity then its his and his diciples but for tech?

Explanation:

i dont really know

Answer:

because he wants to pray to god that he has such a good day in church, i guess.

Explanation:

why do many experts recommand longer time horizonal if you are doing high risk investment

Answers

Answer:In general, the longer your time horizon, the better you can handle fluctuations in value and take more risk in order to reap greater rewards.

Explanation:

What are some websites to watch free movies on? (anybody answer with like 3 or 4 websites)

Answers

fox that what i get on at school

Answer:Kodi with builds

Explanation:

its a perfectly safe download

Choose the proper term to describe each of the following examples.
senate.gov:
IP Address
SMTP account name
domain name

23.67.220.123:
IP Address
SMTP account name
domain name

Answers

Answer:first 1

Explanation:

is spin to win paying or is a scam app​

Answers

Answer:

scam bro.

Explanation:

Answer:

yes it's a scam app when I tried it and after a few days it hasn't been delivered to my house though

what is the difference between second generation and third generation of computer​

Answers

Answer:

The main difference between second generation (2G) and third generation (3G) technology is data. 2G services were developed with mostly voice services in mind, but are capable of providing relatively slow (14.4kbps) speed data services.

PLS WILL GIVE BRAINLEST What eventually led to the abandonment of Jamestown?

malaria-carrying mosquitoes
a civil war
riots started by slaves
famine

Answers

Answer:

famine is the answer I believe

Answer:

D. Famine

Explanation:

Sir Thomas Gates, the newly named governor, found Jamestown in shambles with the palisades of the fort torn down, gates off their hinges, and food stores running low. The decision was made to abandon the settlement.

. While ________is the protocol used to view web pages, browsers also support protocols for functions such as transferring large files.

A)HTML
B)HTTP
C)FTP

Answers

Answer:

HTTP

Explanation:

Answer:

B) HTTP

Explanation:

This is hypertext transfer protocol.

What is the nature of the news in the film "EPIC 2015"?

Answers

Answer:

The narrator of "epic 2015" describes the year 2015 as the "worst of times" because it was a collection of trivial information that may not be true. There is another reason The narrator of "epic 2015" describes the year 2015 as the "worst of times" because we will not have news organizations.

Explanation:

The narrator of EPIC 2015 describes it as the collection of trivial news ad information that is not necessarily true all the time.
Hence, the news in 2015, according to the narrator of EPIC 2015 is created y apathetic journalists who are not committed to truth. It was described as the worst of times because we will not have news organisations.

What are the requirements to access email on the web?

A. a webmail provider's URL and a password
B. a webmail provider's URL a username and a password
C. a credit or debit card, a username, and a password
D. an email server ID and a password

Answers

Answer:

it's B

Explanation:

You need to have a provider (such as outlook) and a username/password

It’s either A or D u Choose now

alexa is scanning a photograph whitch mode should she use A green tone B blue tone C greyscale D sepia ​

Answers

Answer:

grey scale......................

Answer:

C. Greyscale

Explanation:

Got it right on Edmentum!

Which one of the following statement is untrue

Answers

Answer:

B IS FALSE

Explanation:

they are input devices

______________ is a pre-designed format to help users with the creation of a document, like a flyer, brochures, or resumes. What's the answer for the blank?

A.PowerPoint
B.Excel
C.Template
D.Pie Chart

Answers

The answer should be Template

How do you move a slide to another location in you your
presentation?

Answers

Answer: Literally click on it and hold, then just drag it to wherever you want it

Explanation: Hope this helped you

yoooooo guys what up

can yall help
In three to five sentences, compare and contrast paraphrasing and summarizing.
will mark brainlist

Answers

Answer:

To put simply, paraphrasing refers to the conversion of the original or the concerned source material into the own or personal words of the reader or the interpreter. In contrast, summarizing mainly refers to the conversion of the main idea/concept/s or content of any original text or source material into the writer's or interpreter's own words.

Explanation:

Paraphrasing commonly engages putting any original text of any source material into the own words of the reader or the interpreter of the material.On the other hand,summarizing mainly involves converting the central idea/s or the content/s of the source material into the own words of the reader or interpreter of the source material.

Paraphrasing involves selection of any specific broader section or part of the source material and its conversion into a shorter version in terms of the own words of the reader or the interpreter,whereas,summarizing construes selection of the overall of main idea/s or content of the source material and putting it into a condensed form,expressed in the own words of the reader or interpreter.

Where can you find thousands of templates for Excel?
O Home tab
Page Layout tab
Backstage View
O
Insert

Answers

Answer: The answer is C. backstage view

Explanation: JUST ANWERED

Answer:

c backstage

Explanation:

What will you see on the next line?
>>> aList = [9, 2, 3.5, 7]
>>> aList.sort()
>>> aList

An error statement since you tried to sort a list with both int and float numbers.
[9, 2, 3.5, 7]
[2, 3.5, 7, 9]

Answers

Answer:

c [2, 3.5, 7, 9]

Explanation:

Given the following code:

>>> aList = [9, 2, 3.5, 7]

>>> aList.sort()

>>> aList, the thing that would be seen on the next line is c [2, 3.5, 7, 9]

What is an Array?

This refers to the collection of data that are similar to each other and can be easily identified by an array index.

Hence, we can see that from the simple array given, there is an unordered list and with the command, "aList.sort()", this arranges the unordered list into one that is ordered and this would provide [2, 3.5, 7, 9] which is in ascending order.

Read more about arrays here:
https://brainly.com/question/24275089

#SPJ2

How do you create multiple columns in Word?

A.Click Home>Paragraph, Alignment



B.Click Page Layout > Columns, Click the column layout you want



C.Select the text or click in the section you want to change, Click Page Layout > Columns, Click the column layout you want.

Answers

Answer:

I think it's B

Explanation:

it sounded right to me.

Which of the following represents a backup system that will aid in recovery for any type of disaster or disruption?

Transfer operations
Integrity operations
Redundancy operations
Independent operations

Answers

Answer: redundancy operations

Explanation:

Other Questions
Yall which color!!! What is the answer??? Why did some American colonists engage in smuggling and piracy? Please help (20 points) In the diagram below, we have ST parallel to QR. angle P= 40 degrees, and angle Q= 35 degrees. Find the measure of angles STR in degrees. What does "Laws can be changed, and rights can be gained" mean? The flight of lcarus Daedalus was an ingenious artist and was not discouraged by his failures." The authors purpose for using this sentence in paragraph 2 of the myth is to Which of these is best derived through diet?dairywatergrainsiron Help me please not tryna fail ! Find the value of 3^-3x10^-3 How are search results organized? OH OH OH OK BIG QUESTION HERE I NEED TO KNOW THE ANSWER BECAUSE MY TEACHER NEVER GAVE ONE!!!!! ok sorry, I can't believe I forgot this question till now! ok ok ok ok k k k k k k k. You know the experiment where they put a baby or like baby monkeys in cages with no parent and like they were alone? I don't remember the name of this experiment but yeah anyway, after like a few days or so they went back to check on the babies and they were smashing their heads on the cage and kinda insane. basically, it proved that people need affection and to be around others or we will go insane. Here's my question antisocial people, people that don't like hugs or being touched? That's like saying you just don't like food...right?!?!?! (also before you get all emo on me at say something like " oh you just don't get it prep you have happiness :(", lol sorry that was really funny, anyway yeah I'm antisocial too...probably why I thought about this question...um anyway yeah please answer my question) QUESTION 1Which of the following transformations preserve congruence?I. Rotation 90 clockwiseII. Reflection over the x-axisIII. Dilation by a scale factor of 2AI and III onlyB II and III onlyC III onlyDI and II only help spanish give 20 points The expression 3b plus 2.8 is equal to blank for b=4 On February 28, Katherine wrote a check number 1021 to Hoopers Market for $189.43. Her beginning balance was $584.77. Calculate the new balance. Pls do this 10 points will mark brainliest pls I need help this is multiplying positive and negative integers 4ANNETTEClick on the sentence that correctly uses a colon as punctuation.Studies have shown that watching too much television can have many effects on children including: loss of sleep and problemsconcentrating. Many health organizations are addressing the topic at their annual conferences: hoping that health care professionals will begin totalk to their patients about it. The National Health Alliance Conference had four sessions on the effects of children watching too much televisionwith the following experts: Dr. Reginald Hill, Dr. Cassandra Staples, and Mr. Kendrick Insley. The organization also hopes to bring awareness tothe subject by publishing a book titled: Children and Television in the 21st Century. For more information regarding this subject: inquiries can bemade to National Health Alliance, P.O. Box 235, Reisling, TX, 21458. global citizenship education What are two examples of change brought about by the Columbian exchangePlease help me!!!