Answer:
I'm looking for this one too
Answer:
import simplegui
import random
# global constants
WIDTH = 600
HEIGHT = 400
PARTICLE_RADIUS = 5
COLOR_LIST = ["Red", "Green", "Blue", "White"]
DIRECTION_LIST = [[1,0], [0, 1], [-1, 0], [0, -1]]
# definition of Particle class
class Particle:
# initializer for particles
def __init__(self, position, color):
self.position = position
self.color = color
# method that updates position of a particle
def move(self, offset):
self.position[0] += offset[0]
self.position[1] += offset[1]
# draw method for particles
def draw(self, canvas):
canvas.draw_circle(self.position, PARTICLE_RADIUS, 1, self.color, self.color)
# string method for particles
def __str__(self):
return "Particle with position = " + str(self.position) + " and color = " + self.color
# draw handler
def draw(canvas):
for p in particle_list:
p.move(random.choice(DIRECTION_LIST))
for p in particle_list:
p.draw(canvas)
# create frame and register draw handler
frame = simplegui.create_frame("Particle simulator", WIDTH, HEIGHT)
frame.set_draw_handler(draw)
# create a list of particles
particle_list = []
for i in range(100):
p = Particle([WIDTH / 2, HEIGHT / 2], random.choice(COLOR_LIST))
particle_list.append(p)
# start frame
frame.start()
Explanation:
this worked for me, sorry if its to late. let me know if anything is wrong
2. Part of a pie chart that represents one value from the series.
a. axis
b. data
c. slice
d. chart
......................
A. Axis
Arrange the tiles in the order of communication in the linear model.
The decoded message is sent to the destination.
A sender sends a message through a transmitter.
The encoded signal then travels through a channel.
At the receiver, the signal is decoded.
The transmitter converts the message into a signal through encoding.
Answer:
A sender sends a message through a transmitter.The transmitter converts the message into a signal through encoding.The encoded signal then travels through a channel.At the receiver, the signal is decoded.The decoded message is sent to the destination.Explanation:
The linear model of communication comprises of four (4) main components and these are;
1. Sender (S): this is typically the source of information (message) or the originator of a message that is being sent to a receiver. Thus, they are simply the producer of a message.
2. Channel (C): this is the medium used by the sender for the dissemination or transmission of the message to the recipient. For example, telephone, television, radio, newspapers, billboards etc.
3. Message (M): this is the information or data that is being sent to a recipient by a sender. It could be in the form of a video, audio, text message etc.
4. Receiver (R): this is typically the destination of information (message) or the recipient of a message that is being sent from a sender.
The order of communication in a linear model are;
I. A sender sends a message through a transmitter.
II. The transmitter converts the message into a signal through encoding.
III. The encoded signal then travels through a channel.
IV. At the receiver, the signal is decoded.
V. The decoded message is sent to the destination.
Generally, when a message is encoded by the sender, it requires a recipient to decode it for the communication process to be complete.
Vocational counselors group career and occupation specialties into
career clusters.
they group them into 16 career clusters
Answer:
16 career clusters
Explanation:
The other guy is right. I got it correct on edmentum
Need help with this program
You can search a knowledge base of millions of school questions. If that doesn't work, you can always ask our experts yourself.
Asking a question will get you up to two answers from experts and star students.
You can Help others, complete challenges, and earn points to spend asking your own questions.
Hope this helps.
QUESTION 4 Developing practical thinking skills often involves O using common sense o learning from experience and building emotional intelligence mixing collaboration with private time evaluating whether examples support ideas
Answer:
The answer is "mixing collaboration with private time".
Explanation:
In this question, the development of practical thinking abilities, training often involves resolved everyday struggles. It also helps students, are already used to develop communication skills, in particular, to resolve mostly based on critical thinking, everyday life issues at different layers of difficulty.
which type of webpages will automatically adjust the size of the content to display appropriately relative to the size of the screen of the device on which it is displayed
Answer:
Responsive.
Explanation:
HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.
Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.
The responsiveness of a webpage is an ability of the design to respond to the end user's digital device and screen size.
In Computer programming, a responsive web design makes it possible for various websites to change layouts in accordance with the user's digital device and screen size.
This ultimately implies that, a responsive design is a strategic approach which enables websites to display or render properly with respect to the digital device and screen size of the user.
Hence, responsive webpages will automatically adjust the size of the content to display appropriately relative to the size of the screen of the device on which it is displayed.
Write a Python function that takes a positive integer N and returns the factorial of N, i.e., N! The factorial of N, denoted N!, is the product of the integers from 1 to N. (1 Point)
Answer:
The python function is as follows:
def fact(N):
factorial = 1
for i in range(1,N+1):
factorial = factorial * i
return(factorial)
Explanation:
This line defines the function
def fact(N):
This line initializes the product of 1 to N to 1
factorial = 1
This line iterates through 1 to N
for i in range(1,N+1):
This line calculates the product of 1 to N i.e. factorial
factorial = factorial * i
This line returns the factorial
return(factorial)
How is a game designer different from a writer?
Answer:
Explanation:
when ur a desiner u design things when u are a writter u write thing :) ik this is wrong need points
Answer:
The game designer knows what kind of game they want because when done right, the rules are integral to the setting. ... Game writers will often familiarize themselves with a game's rules and setting in order to successfully contribute to a project; game designers will often do the same thing, but from their perspective
Explanation:
An _____provider is a business that provides individuals and companies access to the internet for free
Answer:A B
access provider Business that provides individuals and companies access to the Internet free or for a fee.
Explanation:
Answer:
access provider
Explanation:
What princple of animation is used to animate the movements of the arms of the following character while walking?
Answer:
arc
Explanation:
write a program that asks the user how far they ran and then how long they ran and prints out their speed in miles per hour javascript
Answer:
var distance = prompt("How far did you run? in miles");
var time = prompt("How long did you run? in hours");
function calSpeed(miles, hours){
var speed = miles / hours;
console.log(speed,"m/h")
calSpeed(distance, time);
Explanation:
The javascript uses the prompt function to get user inputs for the distance and time variables. The calSpeed function calculates and prints out the speed of the runner with the arguments, distance and time.
explain mportance of using Microsoft Excel in pharmaceutical science
Answer:
research the question and go to setting and press advanced search and it will give answer
how many different textile items would you find at a festival? (please list 5 items)
What are the two parts of a cell reference? column intersection and row range column range and row intersection column letter and row number column number and row letter
Answer:
C - Column letter & row number
Answer: C
Explanation:
Identify the symbol. please help!!
Explanation:
counter bore
Answer:
Diameter
Explanation:
On technical literature or drawings, it could be a symbol to mean diameter.
Which of the following does Not impact your credit score?
Answer:your race, gender, marital status, education level, religion, political party or income, those details can't be factored into your credit scores.
Explanation:
Service Mesh is a framework that handles the cross-cutting concerns like logging, service registration, etc. true false
Answer: False
Explanation:
A service mesh is referred to as a communication layer that is used to foster communication in a micro service setup usually through the use of a sidecar proxy.
It should be noted that in this case, every requests would have to pass through the service mesh.
It should be noted that the statement that Service Mesh is a framework that handles the cross-cutting concerns like logging, service registration, etc is false.
Write a void method named updateRadius which takes a circle and an int and changes the value of the circle's radius to the int. You can call your method in the program's main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.
Answer:
public static void updateRadius(Circle circle, int radius){
circle.setRadius(radius);
}
Explanation:
Assuming there is a class called Circle which has a method "setRadius", the void function "updateRadius" accepts two arguments namely circle class and the integer radius variable. The setRadius() method of the circle class is used to update the radius of the circle object.
When should you use an array in developing a program? Explain why it is important to apply arrays in a program.
Answer:
The answer is below
Explanation:
There are various reasons to apply arrays in a program. Some of which includes:
1. Arrays provides users to easily save specified numbers of the element in them.
2. It easily store data of similar types and sizes.
3. It allows users to store data in various dimensional arrays.
4. It eliminates deficit of memories for the location of its elements
Guess the output of this code:print( (3**2)//2 )
Answer:
Assuming that's in python, the answer would be 4
Explanation:
The ** operator is for raising a number to a power.
The // operator returns the number of times the right number can fit into the left (i.e round division).
So the answer would be three squared over two rounded down, or 4.
Can someone help me with this error? Will give brainliest and i will give more details if you need just please help
Answer:
From what I see, you're trying to convert an int to a double&. This is illegal. Do you have any arrays with ints?
Which entry by the user will cause the program to halt with an error statement?
# Get a guess from the user and update the number of guesses.
guess = input("Guess an integer from 1 to 10: ")
guess = int(guess)
Multiple Choice
a. 22
b. 2.5
c. -1
d. 3
Answer:
2.5
Explanation:
The program expects an integer input from the user. This is evident in the second line where the program attempts to convert the input from the user to an integer value.
Please note that the integer value could be negative or positive.
Options (a), (c) and (d) are integer values while option (b) is a floating point value.
Hence, option (c) will halt the program and raise an error because it is not an integer.
Answer:
2.5 for it is a float not an integer
Explanation:
Explain one way in which programmers may get hired.
Explanation:
I think you first get interviewed?
Then you get like a test and then have to explain it to the admission people on a whiteboard or something.
how does operating system execute and provide services for application software
How should technology be used?
Make Sure You Use The Right Technology.
Use Incorporate Automation Tools.
Manage Passwords Effectively.
Only Use Technology Where You Need Help The Most.
Use Chrome Extensions.
Organize Your Time With A Calendar App.
Take Advantage Of Free Applications.
Hope it helps!
Answer:
I think technology should be used for education
Explanation:
Hope this helped have an amazing day!
Why did who made cocomelon name it cocomelon and why are babies so addicted to it
Answer:
Cocomelon
Explanation:
"Young children are drawn to the bright visuals — especially the focus on big eyes and faces — the repetitive music and sounds, and the constant movement and action on the screen." While young kids love the sounds and songs they hear on CoComelon, the animation and the bright colors are really what draws them in.
Some commands listed in a menu cannot be selected.
True or False
Answer:
Explanation:
it is true
Which feature of a website takes you to a different part of the website or a totally different website when you click on it? A. graphics B. formal text C. hyperlink D. animation
Answer: C
Explanation:
Answer:
hyperlink
Explanation:
The feature of a website that takes you to a different part of the website or a totally different website when you click on it is called a hyperlink. Hyperlinks are typically underlined and appear in a different color than the surrounding text. They can be used to navigate between pages on the same website or to link to external websites.
List the do's and don'ts of secure online interactions
Answer:
The answer is below
Explanation:
The "dos" are the safe practice's website users should always do to provide themselves a form of security against potential hackers in online interactions.
Hence, are the "dos" based on the options listed.
1. Use a long password with mixed characters
2. Use antivirus and spyware protection
3. Don't write your password down and leave it where others can find it
4. Go through the terms and conditions, and privacy policies of social networking and other websites that you access.
On the other hand, the "don'ts" are the practices a website user or visitor should avoid doing to provide themselves a form of security against potential hackers in online interactions.
Hence, are the "don'ts" based on the options listed.
1. Keep yourself logged in when you leave your computer
2. Share your password with your friends
3. Retain cookies every time you visit a website.
Classify correctly linear and nonlinear multimedia.
movie at cinema
web page
video game
live video feed
e-book with links
instructional video
slideshow
Linear Multimedia
Nonlinear Multimedia
Answer:
movie at cinema - Linear Multimedia
web page - Nonlinear Multimedia
video game - Nonlinear Multimedia
live video feed - Nonlinear Multimedia
e-book with links - Nonlinear Multimedia
instructional video - Linear Multimedia
slideshow - Linear Multimedia
Explanation:
The linear multimedia will go from the start all the way through to the finish without variation.
The Nonlinear Multimedia is the opposite; it doesn't follow that one-way structure and instead allows free movement around all aspects of the multimedia in any order.
movie at cinema - Linear Multimedia
web page - Nonlinear Multimedia
video game - Nonlinear Multimedia
live video feed - Nonlinear Multimedia
e-book with links - Nonlinear Multimedia
instructional video - Linear Multimedia
slideshow - Linear Multimedia