This program has a bug. When the green flag is clicked, nothing happens. How would you fix it?
A. Change the number inside the “Move” block
B. Change the number inside the “repeat” block
C. Make the sound louder with the purple block
D. Connect the event block directly to the “repeat” block

This Program Has A Bug. When The Green Flag Is Clicked, Nothing Happens. How Would You Fix It?A. Change

Answers

Answer 1
The correct answer is D, if you connect it, the program will operate properly.

Related Questions

What will be the output, if any, when the user clicks the right mouse button?

from tkinter import
def clicked(event):
print("That hurt.")
widget = Button(None, text='Button')
widget.pack()
widget.bind('', clicked)
widget.mainloop()

O an error statement
O That hurt.
O no output
O Button

Answers

The output, if any, when the user clicks the right mouse button is (b) That hurt

How to determine the output?

The flow of the program implies that:

When the user clicks the button, the program prints "That hurt" without the quotes.

This action is on the third line of the program

Hence, the output, if any, when the user clicks the right mouse button is (b) That hurt

Read more about programs at:

https://brainly.com/question/16397886

#SPJ1

When an interviewer asks "tell me about yourself", you should tell them about your childhood past. please select the best answer from the choices provided t f

Answers

In the interview when the candidate is asked about yourself then telling about childhood past is not correct. Therefore the given statement is false.

What is an interview?

An interview is an interaction or a conversation between an employer and the interested candidate. In the conversation the interviewee is asked about their education, family background, and work experiences.

When an interviewer ask about tell me about yourself, then the interviewee should not tell about their childhood past, rather the interviewee should give few information about their family, education, and working.

Therefore, the given statement is false.

Learn more about interview, here:

https://brainly.com/question/13073622

#SPJ1

Consider the following code using the posix pthreads api:
thread2.c
#include
#include
#include
#include
int myglobal;
void *thread_function(void *arg) {
int i,j;
for ( i=0; i<20; i++ ) {
j=myglobal;
j=j+1;
printf(".");
fflush(stdout);
sleep(1);
myglobal=j;
}
return null;
}
int main(void) {
pthread_t mythread;
int i;
if ( pthread_create( &mythread, null, thread_function,
null) ) {
printf(ldquo;error creating thread.");
abort();
}
for ( i=0; i<20; i++) {
myglobal=myglobal+1;
printf("o");
fflush(stdout);
sleep(1);
}
if ( pthread_join ( mythread, null ) ) {
printf("error joining thread.");
abort();
}
printf("\nmyglobal equals %d\n",myglobal);
exit(0);
}
in main() we first declare a variable called mythread, which has a type of pthread_t. this is essentially an id for a thread. next, the if statement creates a thread associated with mythread. the call pthread_create() returns zero on success and a nonzero value on failure. the third argument of pthread_create() is the name of a function that the new thread will execute when it starts. when this thread_function() returns, the thread terminates. meanwhile, the main program itself defines a thread, so that there are two threads executing. the pthread_join function enables the main thread to wait until the new thread completes.
a. what does this program accomplish?
b. here is the output from the executed program:
$ ./thread2
..o.o.o.o.oo.o.o.o.o.o.o.o.o.o..o.o.o.o.o
myglobal equals 21
is this the output you would expect? if not, what has gone wrong?

Answers

The thing which the given program accomplishes is that it creates a method, declares variables, and executes commands if they meet the conditions in the code.

What is a Conditional Statement?

This is a type of statement that executes a line of code if a condition is not met.

Some types of conditional statements are:

IF statementIF-ELSE statementNested If-else statement.If-Else If ladder.Switch statement.

No, that is not the desired output because the integer should be less than 20.

Read more about conditional statements here:

https://brainly.com/question/11073037

#SPJ1

a customer is traveling to a branch office, and the network administrator provides her with a static ip address for her laptop. which should the customer do to use the static ip address

Answers

The customer traveling with a provided static IP address should assign the IP in the network adapter settings. Thus, option B is correct.

What is static IP?

The complete question is: A customer is traveling to a branch office, and the network administrator provides her with a static IP address for her laptop Which should the customer do to use the static IP address?

A) Run the command "ipconfig configure static"

B) Assign the static IP in network adapter settings

C) Switch the button from dynamic to static on her laptop

D) Disconnect from WiFi and use an Ethernet cable

E) Type the IP address into the browser

A static IP is a setup that is configured manually instead of the DHCP assigned setup. It is a constant and nonchanging IP setup that is used when working remotely.

In the network and sharing system, open the adapter setting and choose the appropriate adapter. Then choose the IPV 4 and check the current internet settings. Choose the desired IP address and then click the OK and save button.

Therefore, option B. static IP is assigned in the network setting option.

Learn more about static IP here:

https://brainly.com/question/18849429

#SPJ1

When you start an online course, what should you do to make sure you have access to college resources

Answers

As a student starting an online course, you should explore the college website to make sure you have access to college resources.

What is an online course?

An online course can be defined as an education programme that typically involves the process of providing and sharing learning resources (contents) in an organized way over the Internet, so as to allow the students (users) progress in their understanding of a course or topic.

As a student starting an online course, you should do the following to make sure you have access to college resources:

Explore the college website.Bookmark links to your course.Search for information with regards to advising, degree requirements, and financial aid.

Read more on online course here: https://brainly.com/question/14591988

#SPJ1

What does Fees, Risk Assessment and Returns mean?

Answers

Answer:

The term return refers to income from a security after a defined period either in the form of interest, dividend, or market appreciation in security value. On the other hand, risk refers to uncertainty over the future to get this return. In simple words, it is a probability of getting return on security.

Explanation:

Write an algorithim and flowchart to check it the temperature is more than 25°. If it more than 25°C switch fan on else off.​

Answers

Answer:

write the sly flowchart

Explanation:

#stdlib.etc

main()
{

    int temp;
    bool fan = false;

    print("enter the frigin temperature: ");

    read(temp);

    if (temp > 25)

     {
         fan = true;
         print("the fan is on");
     }
     else
      {

           print("the fan is off");

      }

      return 0;

}

You saved your style options as "webstyle.css" in a subfolder called "styles."

what line do you include in the head section of your html file to use your styles?







Answers

A line which should be included in the head section of a html file to use these styles is link rel="stylesheet" type="text/css" href="styles/webstyle.css"

What is HTML?

HTML is an abbreviation for hypertext markup language and it can be defined as a standard programming language that is used for designing, developing and creating websites or webpages.

In Cascaded style sheet (CSS), a line which should be included in the head section of a html file to use these styles is given by:

link rel="stylesheet" type="text/css" href="styles/webstyle.css"

Read more on HTML here: https://brainly.com/question/4056554

#SPJ1

What does business informWhat does business information management do?
A.
identify information requirements for coworkers
B.
identify information requirements for different management levels
C.
create project plans for the project management team
D.
produce sales turnover summary for the sales professionals
E.
create financial documents for the finance departmentation management do?

Answers

Answer:

B) identify information requirements for different management levels

Explanation:

Business information management is based off of identifying the needs of a company. (This is also a plato answer)

A class that implements an interface must provide an implementation for all ____ methods. Group of answer choices private final static abstract

Answers

Answer:

Abstract

Explanation:

I think it’s abstract because, in the question it says that it implements an interface and must provide an implementation for

And my answer was abstract methods.

what are the methods of gilding

nonsense will be immediately reported. ​

Answers

Methods of gilding include hand application and gluing, typically of gold leaf, chemical gilding, and electroplating, the last also called gold plating. Parcel-gilt (partial gil) objects are only gilded over part of their surfaces.
Other Questions
Jessie is painting a cardboard box for a school project and needs to know much paint she needs to cover the box.6n10 in. What atempts did P.W Bothat introduce to reform apartheid in the 1980s?? Select the statement that shows contrast.Conversely, narratives are often built as a creative fiction.As a rule, arguments are stronger when they are based on evidence.First, begin collecting evidence to create an argument.Mainly, strong arguments are built on evidence. Select the correct answer.What is technology?OA. the ability to perform a task in a short period of time using little to no energyOB.the ability to perform a task using a full range of motion in a short period of timeOC. the production of new machines as a result of processes using science and knowledgeO D.the interaction among people, companies, and governments of different nations. Use the functions a(x) = 7x + 10 and b(x) = 12x - 18 to complete the function operations listed below. Part A: Find (a + b)(x). Show your work. (8 points) Part B: Find (a - b) (x). Show your work. (8 points) Part C: Find (a - b)(x). Show your work. (9 points) Part D: Find a(b(x)]. Show your work. (10 points) Explain how fusion and fission are similar to and different from each other at the atomic level. Explain whichprocess is currently used at most nuclear power plants around the world and which process occurs on the sun. Please helpp Corruption in the church The Black Death Nationalism Weakening of the papacy What is the best title for this list of events An isosceles right triangle has an area of 8cm^2. What is the length of its hypotenuse? What is the solution to the equation |x 4| = 17? What is the period of a wave that has a frequency of 300 hz? Permitting rental agencies to refuse to rent apartments to families with children would violate what kind of due process? Where are heavier elements, like iron or gold made?*1 pointIn space, between the starsin the black holes at the centers of galaxiesIn the hearts of starsThey were made as part of the big bang 13 . your team is resuscitating a newborn whose heart rate remains less than 60 bpm despite effective ppv and 60 seconds of chest compressions. you have administered epinephrine intravenously. according to the textbook of neonatal resuscitation, 8th edition, what volume of normal saline flush should you administer The MomentThe moment when, after many yearsof hard work and a long voyageyou stand in the centre of your room,house, half-acre, square mile, island, country,knowing at last how you got there,and say, I own this,is the same moment when the trees unloosetheir soft arms from around you,the birds take back their language,the cliffs fissure and collapse,the air moves back from you like a waveand you can't breathe.No, they whisper. You own nothing.You were a visitor, time after timeclimbing the hill, planting the flag, proclaiming.We never belonged to you.You never found us.It was always the other way round.Margaret AtwoodIn line 13, "they" refers toa.material possessions.c.pieces of property.b.spirits of nature.d.hills and cliffs.i found the answer to this one its b. spirits of nature 17. _______ energy is energy that is stored or waiting to be used.MechanicalKineticElectricalPotential In the evening he practiced on his clarinet, strolled down town, read and went to bed. he was still a hero to his two young sisters. his mother would have given him breakfast in bed if he had wanted it. she often came in when he was in bed and asked him to tell her about the war, but her attention always wandered. what important detail about krebss sisters and mother is revealed? both of his sisters and his mother are very naive. his sisters and his mother have never left town. his sisters and his mother are very fond of him. neither his sisters nor his mother care for krebs. Is anyone able to solve this equation? Its urgent What are the coordinates of point F? how to Solve for x. -1/2 (x + 2) + 1 1/2 x = 3 Dobson Manufacturing is setting up production and distribution facilities in Mexico to meet the growing demand there. The company's executives want the human resource department to identify one of its U.S. managers to lead the operations, so he or she can ensure that the company culture is maintained. They ask the HR vice president to recommend a person with strong financial skills. The HR vice president agrees but adds that they also should use psychological testing to identify candidates who are highly flexible and conscientious. Which statement best supports the HR vice president's advice