100 points! What categories would you need to access to create a full program where a sprite paints a square on the screen?
A.
Motion, Pen, Control, Sensing
B.
Events, Pen, Looks, Operators
C.
Events, Pen, Motion
D
Variables, Pen, Operators

Answers

Answer 1

Answer:

i think its A. but im not sure

Answer 2

Answer:

A

Explanation:

I took the test and this was right


Related Questions

Alisa Miller reports that the number of Americans who closely follow overseas news:

A.) decreased by 30 percent in the past 20 years.

B.) jumped to more than 50 percent in the past 20 years.

C.) will double over the next 20 years.

D.) doubled over the past 20 years.

Answers

Jumped to more than 50 percent in the past 20 years

Bert is familiar with multiple operating systems. His primary work revolves around repairing and upgrading computers. What is his role at his company? ОА Network Administrator OB. Network Technician Network Engineer OD. Network Manager ​

Answers

Answer:

I think its B

Explanation:

Because only technicians do that kinda stuff. Sorry if incorrect

one advantage of using online note-taking tools is that they help students to

a) get organized

b) read faster

c) avoid taking tests

c) avoid studying

Answers

Answer:

the correct answer is A

Explanation:

hope it helps

Answer:

a

Explanation:

Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds (type long). Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.

Answers

Solution:

#include<iostream>

using namespace std;

class timeconvert//class

{

     public:

         int hms_to_secs(int h,int m,int s)//function of the class

               {

                   return (h*3600+m*60+s);

               }

};

int main()

{       timeconvert obj;//creating object of the class

       int h,m,s,total;

       cout<<"enter hour";

       cin>>h;

       cout<<"enter minute";

       cin>>m;

       cout<<"enter second";

       cin>>s;

       total=obj.hms_to_secs(h,m,s);//function call

       cout<<"total second of"<<h<<":"<<m<<":"<<s<<"="<<total;

}

/*

sample output:-

enter hour12

enter minute59

enter second59

total second of12:59:59=46799

*/

In this exercise we have to use the computer language knowledge in C++ to write the code as:

the code is in the attached image.

In a more easy way we have that the code will be:

#include<iostream>

using namespace std;

class timeconvert//class

{

    public:

        int hms_to_secs(int h,int m,int s)//function of the class

              {

                  return (h*3600+m*60+s);

              }

};

int main()

{       timeconvert obj;//creating object of the class

      int h,m,s,total;

      cout<<"enter hour";

      cin>>h;

      cout<<"enter minute";

      cin>>m;

      cout<<"enter second";

      cin>>s;

      total=obj.hms_to_secs(h,m,s);//function call

      cout<<"total second of"<<h<<":"<<m<<":"<<s<<"="<<total;

}

/*

sample output:-

enter hour12

enter minute59

enter second59

total second of12:59:59=46799

*/

See more about C++ code at brainly.com/question/25870717

edhesive 2.3 code practice question 1​

Answers

Answer:

a=int(input("Enter a numerator: "))

b=int(input("Enter a divisor: "))

quotient=a/b

remainder=a%b

print("Quotient is: " + str(int(quotient)))

print("Remainder is: " + str(int(remainder)))

Explanation:

Hope this helps :)

1. Describe how research and development influence design. Cite specific examples of how research and development influence design problems that are not presented in a clearly defined form.​

Answers

Answer:

so i research and found this,

Development is when findings of a research are utilized for the production of specific products including materials, systems and methods. Design and development of prototypes and processes are also part of this area. Engineering is utilization of these plans and research to produce commercial products.

Research and development, also known as R&D, is the acts taking to find out more about an item, idea or phenomenon, in order to come up with new services and products with the aim of increasing revenue and profit

1. Research and development enables a company to remain viable by providing an edge in the market amongst competitors such that without research and innovation a company may not survive

Therefore;

Research and development influence design by being the basis of the design effort, thereby redirecting the kinds of products that are available for purchase

Examples Showing how Research and Development Influence Design Problems

Examples of how research and development influence design problems that are not presented in a clearly defined form are;

The research and development of the MOS integrated circuit that lead to the change in size and performance of electronics and brought about the personal usage of computersThe research and development of the personal computer that changes the design of work planning and communication strategy amongst organizations and individuals The research and development of the gasoline powered tractor that changes the design for mechanization on a farm

Learn more about research and development here:

https://brainly.com/question/2938243

https://brainly.com/question/13954765

does anyone knows how I can remove those people at the bottom In google photos it’s not showing up in google contact help

Answers

Maybe refresh all your Safari apps

A computer connected to the internet that asks for data is a(n) ________

Answers

Answer:

Client

Explanation:

Answer:

Client

Explanation:

The client makes a request for a service, and a server performs that service.

round 9572to the nearest 1000

Answers

Answer:

10,000

Explanation:

Since the 5 is behind the thousand place, which is 9, we round according to 5. Although 5 is in the middle of 1 and ten, it rounds up to ten. Therefore, your answer is 10,000.

10,000 if the hundredth number is 5 and above then you can round the thousandth number to 10 which gives you 10,000

You are interested in receiving more information about a special topic, including emails, announcements and advertising. What can you do? Group of answer choices Bookmark Websites about the topic on your favorite browser. Join a newsgroup about the topic. Subscribe to a listserve group about the topic. Set your browser's home page to a topical Website.

Answers

Answer:

The answer is "Subscribe to a listserve group about the topic".

Explanation:

A Listserv would be a software suite that is used to run a discussion list through community e-mail. Even so, LISTSERV is indeed a trademark of L-Soft Global who created some of the first and most famous mailing list programs.

It is a way to communicate by e-mail to a community of people. They send an e-mail to "reflecting" and the software gives an e-mail to all subscribers of both the Group.

Which ribbon tab is not a default in Outlook 2016's main interface?
O Home
Send/Receive
O Folder
O Review

Answers

Answer:

review

Explanation:

I'm not sure how to do these.

Answers

Answer:

JAVA

TASK 1

float float75 = 75; # widening casting are done automatically.

String string75 = String.valueOf(75);

float75 + string75 = Error: As the compiler doesn't know how to approach this, are you trying to add float to unicode charcters, if there is a value in this string, CAST it out, EXORCISE

TASK 2

import java.util.Scanner;

class MyClass {

public static void main(String[] args) {

Scanner myObj = new Scanner(System.in); // Create a Scanner object

System.out.println("Enter Float number");

float number = myObj.nextFloat();

System.out.println(number ** 2);

TASK 3

import java.util.Scanner;

class MyClass {

public static void main(String[] args) {

Scanner myObj = new Scanner(System.in); // Create a Scanner object

System.out.println("Enter number");

int number = myObj.nextInt();

int quotient = number / 7;

int reminder = number % 7;

System.out.printf("When you divide %d by 7, the quotient is %d and the reminder is %d ", number, quotient, reminder);

TASK 4

import java.util.Scanner;

class MyClass {

public static void main(String[] args) {

Scanner myObj = new Scanner(System.in); // Create a Scanner object

System.out.println("How many gigabytes is your flash drive");

int gigabytes = myObj.nextInt();

long numBits = gigabytes * 8000000000

System.out.printf("Number of bits in your %d flashdrive: %ld Bits", gigabytes, numBits);

3.4 lesson practice

Answers

Answer:

The answer is A. Second Half of the month.

Explanation:

If Im reffering right to the source. So If you doing Chapter 3 Comp. Science. Than this is right.

Answer:

A

Explanation:

Which is the most popular language used in game programming?

A.binary
B. C++
C. CGI
D. Flash

Answers

Answer:

B C++

Explanation:

The two most common languages for game designers to learn are C++ and Java, although other languages are popular (such as C# for Unity). Another type of programming you may hear referred to is scripting, but that essentially comes down to a type of systems programming.

Answer:

b

Explanation:

i just know it

What is the default zoom percentage in Word?

Answers

Answer:

50%

100%

150%

200%

Explanation:

Which program will have the output shown below?

5
6
7

>>> for count in range(4, 7):
print(count)

>>> for count in range((4, 8):
print(count)

>>> for count in range(5,7):
print(count)

>>> for count in range(5, 8):
print(count)

Answers

for count in range(5, 8):

   print(count)

This will produce.

5

6

7

I hope this helps!

Answer:

>>> for count in range(5, 8):

print(count)

Explanation: got it right on edgen

6. An example of a private network is.
•internet
•wi-fi
•modem
•router

Answers

Answer:

a. internet

because all the others are public

Answer:

the answer is A

Explanation: hope this helps

Go to your Canvas course and locate the Assignment: Writing Prompt 1: Is the Internet making us Meaner?and complete the activity.


When you are finished, come back here and copy/paste the following as your answer below:


I have completed the Writing Prompt 1: Is the Internet making us Meaner? activity and submitted my assignment in CANVAS. By pasting this text below. I understand that the grade marked here is NOT the grade for the actual assignment and only a place holder for the grade I earn in Canvas.

Answers

Answer and Explanation:

The Internet is not changing anything other than making you extreme. The nice become nicer, the mean become meaner, the nice become mean, and the mean become nice. The internet just makes things easier to do. It really isn't a factor in if you are mean or not.

Answer:

Explanation:

POV: you didn’t find your answer

What game is this ?? Helppp me

Answers

Call of Duty

Hope this helps you broski

what is the branching factor of the following tree?

Answers

Answer:

a is the branching factor

Answer:

B, 2 factor

Explanation:

Which one bc im struggling

Answers

Answer:

cant really see it

Explanation:

What changes should be made in OSI model(Open System Interconnection).

Answers

Answer:

Explanation:

When most non-technical people hear the term “seven layers”, they either think of the popular Super Bowl bean dip or they mistakenly think about the seven layers of Hell, courtesy of Dante’s Inferno (there are nine). For IT professionals, the seven layers refer to the Open Systems Interconnection (OSI) model, a conceptual framework that describes the functions of a networking or telecommunication system.

The model uses layers to help give a visual description of what is going on with a particular networking system. This can help network managers narrow down problems (Is it a physical issue or something with the application?), as well as computer programmers (when developing an application, which other layers does it need to work with?). Tech vendors selling new products will often refer to the OSI model to help customers understand which layer their products work with or whether it works “across the stack”.

Layer 7 - Application

To further our bean dip analogy, the Application Layer is the one at the top--it’s what most users see. In the OSI model, this is the layer that is the “closest to the end user”. It receives information directly from users and displays incoming data it to the user. Oddly enough, applications themselves do not reside at the application layer. Instead the layer facilitates communication through lower layers in order to establish connections with applications at the other end. Web browsers (Google Chrome, Firefox, Safari, etc.) TelNet, and FTP, are examples of communications  that rely  on Layer 7.

Layer 6 - Presentation

The Presentation Layer represents the area that is independent of data representation at the application layer. In general, it represents the preparation or translation of application format to network format, or from network formatting to application format. In other words, the layer “presents” data for the application or the network. A good example of this is encryption and decryption of data for secure transmission - this happens at Layer 6.

Answer:

go darlin

Explanation:

What is the speed of Android operating system?

Answers

Answer:

There isn't an exact android speed due to a variety of androids. But there are very fast like the HTC 10 or a Samsung Galaxy.

Explanation:

what do u do to me pepa

Answers

Peppa: Hello Susie!

Susie: *mehhh* Hello Peppa!
What are you doing?
Peppa: I'm learning to whistle,

but I can't do it yet.
Susie: Hmm.. that sounds hard.
Peppa: It's impossible!
Uh.. can you whistle Susie?
Susie: No

Peppa: *honk* Oh good! I mean-
that's sad if you can't whistle

but good because I can't whistle

Susie: What's whistling anyway?
Peppa: You put your lips together
and blow!
Susie: Like this? *whistles*

Answer:

903-780= 123

we know this because 123 = 123 and that is the answer

What makes this information systems environment unique? (3 points)

Answers

Information technologies are unique not just because of their growing use in decision-making and knowledge management systems, important as that is. Their use has also yielded significant improvements in the efficiency of energy and materials use.

Question #8
Fill in the Blank
What is the output of the following program?
>>> phrase = "help me"
>>> len(phrase)

Answers

Answer:

The other person is correct the answer is 7

Explanation:

I got it right on edge

Answer:

7

Explanation:

I know I wasn't first to answer but give me brainliest plz.

Question #1
Multiple Select
Which collections can contain duplicate items?
deque
O dataset
O list
tuple
organizer

Answers

Answer:

Deque

Tuple

List

(Did it on Edge)

In this exercise we have to use python knowledge to identify which ones can be used with duplicate terms, like this;

it is the List

What is a list in Python?

A list in Python is an ordered sequence or collection of values. Each value in the list is identified by an index. The values ​​that form a list are called elements or items.

See more about list in python at brainly.com/question/26104476

Which tools are found in the Quick Analysis feature? Check all that apply.
Table
pivot table
sum
count
more
row evaluation

Answers

Answer:

A, C, E

Explanation:

Answer:

A,B,E

Explanation:

just did it on edge2020

PLEASE HELP MEEE I WILL GIVE BRAINLIEST


What is a possible value for the horizontalInput variable? Remember Input.GetAxis returns a float value between -1 and 1

Question 6 options:


-10


0.52


“Right”


Vector3.Up

Answers

Answer:

0.52

Explanation:

Select the correct answer
in the context of website navigation, what is a node?
a point at which the user chooses a certain path
a part of a web page that gives it a unique identity
a navigational aid that tells users know where they are
a hyperlink that leads to the home page

Answers

Answer:

a point at which the user chooses a certain path.

Answer:

a point at which the user chooses a certain path.

Explanation:

Other Questions
I give you a brainliest here the picture HELPPPP ANSWER IN 2mins AND I WILL GIVE YOU BRAINLY MASTER THING Which of the following number sentences is an example of the identity property? Select all that apply.x 18.7 + 0 = 8.71.5 x 4 = 6+ 111 + 1 When writing or revising an explanatory text, which terms should you be sure to define?a) any technical terms that most readers would be unable to defineb)technical terms that are used more than once in the textc) words with more than three syllablesd) any proper nouns that some readers may not recognize Need help asappppppp If you are outside when an earthquake occurs, you should run into the closest building. A. True B. False Write an algebraic expression that could be used to find the amount of money in the envelope at the end of n weeks. why does claudette repeat the mantra shoes on feet throughout the story? What ruler and dynasty built Terracotta Warriors? REALLY NEED HELP/ASAPGRADES ARE CLOSING AND I NEED TO FINISH THIS BEFORE 5!!!!! Will give Brainliest 1.Explain some of Anaxagoras teachings and theories on science?2. What made Thucydides writing different from others, specifically concerning the Peloponnesian war?A contemporary of Anaxagoras, Leucippus, is credited with a theory of atoms. He founded a school at Abdera, in Thrace. His student, Democritus (roughly 460-370), is said to have systemized his theory. An apple, Democritus reasoned, can be divided with a knife because it has air in it. He labeled as an atom that which had no air, that which is too dense to be cut, that which is the smallest and the most dense of matter. Democritus moved beyond Anaxagoras' view of elements: he theorized that atoms collide and combine with each other and that in combining they create visible substance. Like Heraclitus, Democritus believed that some things are developing and other things decaying. He believed that heavenly bodies sometimes collide with each other and that the Milky Way consists of unresolved stars.Democritus believed that sense perception is not just illusion. He believed that human flesh, bones and bodily fluids were elements found elsewhere in nature, that the human brain is functioning matter, that people are matter organized in a way that allows them awareness and self-directed movement.Another who looked at the human body scientifically was Hippocrates, also born around 460 BCE. He was the son of a priest-physician from the Greek island of Cos. He revolted against medicine tied to religious dogma, medicine that attempted to cure by use of charms, amulets and incantations. Diseases, he claimed, were subject to nature's laws. He wanted healthcare to be built upon observation. He sought to improve diagnoses by examining symptoms. Seeing the human body as influenced by materiality as opposed to spirit he advocated principles of public health, including building a patient's strength by a good diet and by hygiene. And recognizing the damage that could be done through acting on ignorance, his first rule was do no harm.The move in the direction of science included a change in chronicling events. Just as Hippocrates is known as the father of medicine, Thucydides, also born in 460, is considered the first modern journalist-historian. He surpassed Herodotus in recording events with precision and impartiality. He was an Athenian from a wealthy family and had been educated in rhetoric and philosophy. He made a record of the course of the Peloponnesian war, approaching his subject with observations and questions rather than preconceptions, and he wrote down the exact speeches of participants in the war. He discarded poetry in favor of the precision of prose, acknowledging that his prose would have less appeal. He tried to clarify issues with lengthy descriptions.An older man who also believed in sense perception was Protagoras (490420), a Greek from Thrace. Drawing on observations during his travels, he took a position that was advanced for his time: he spoke of peoples from different areas of the world as sharing a common humanity.Protagoras created a modern political philosophy, claiming that by criticizing tradition a better society could be created. In the place of the rule of gods and their representatives he advocated laws made by and for people. This is what he was referring to with the line that "man is the measure of all things." (See Karl Rove's interpretation, note29.) Protagoras lectured that people could become good citizens not by obedience to traditional authority but by learning what is just and right.During the Great Peloponnesian War, city officials in the imperfect democracy of Athens followed the old politics. These were men many of whom believed in power over others in empire and slavery. They restricted what could be taught, and Protagoras defied their repression. At the home of the famous poet and playwright Euripides, Protagoras read aloud from his book and claimed that gods were the figments of people's imagination. City officials put him on trial. In their drive against atheism and other thoughts they considered dangerous, they had books burned the first known official book burning. Then Protagoras was sent into exile, and he was lost at sea. Find TE. I really need help! The attraction between a positive metal ion and the electrons surroundingit is a(n)metallic bondO ionic bondchemical bondcovalent bond 1. Which is the slope of the line that passes through points (1,1) and (2,7)1a. Pick a point the line passes through above with the slope you calculated, find the y-intercept1b. Now that you know the slope and y-intercept, what is the equation of the line ? who wants to my freind Cora got a $1200 loan for 2 years. She paid $90 in interest. What was her interest rate? (*hint: you will get a decimal as an answer that needs to be turned to a %). express 1 82 as a product of it prime factor Please help me with this problem! 3/4 divided by 12 as a fraction Which sentence is subjunctive and conditional?Will you be able to meet me at the party?If I had seen the dress in your size, I would have bought it for you.I'll give you a call later if we decide to go out.If it isn't raining, we will go to the park.*will give brainliest* plz explain in a paragraph to get brainliest