Answer:
Since the end of 1989, Michal Macku has used his own creative technique which ... Created on photographic quality paper, each Gellage is a highly durable print ... Photographic pictures mean specific touch with concrete reality for me, one ... I do what I feel, and only then do I begin to meditate on what the result is.
Explanation:
The inference shows that removing the paper allows the picture to be more flexible so that it can be reformed to something new.
What is an inference?It should be noted that an inference simply means the conclusion that can be deduced from the information given in a story.
In this case, the inference shows that removing the paper allows the picture to be more flexible so that it can be reformed to something new.
Learn more about inference on:
https://brainly.com/question/1081576
What are the steps to customize a slide show?
Go to Slide Show tab, select Hide Slide, select the slides to hide, and save.
Go to Slide Show tab, select Set Up Slide Show, select show type Custom, and save.
Go to Slide Show tab, select Custom Slide Show, select slides to be shown, and save.
Go to Slide Show tab, select Custom Slide Show, select Record Slide Show, and save.
Answer: Third one
Explanation: I got it right
Answer:
Third one
Explanation:
Which line is most likely an error? A-“hello” B-hello C-“100” D-100
Answer: I think it is c
Explanation:
The error is most likely C. Hello quoted is proper. ("Hello") Eliminate A. Hello is proper as well so eliminate B. Now, we are at C. I Believe this is the answer since it is 100 quoted ("100"). 100 quoted does not make since unless used in a sentence such as "I bought 100 apples today for a good price!" D cannot be the answer since it is 100 all by itself. Thus, your answer should most likely be C, "100".
agree and tell why becoming a priest/nun is an honorable job PLEASE ASAP
Why can the internet keep growing as more devices are added without decrease in performance?
Answer:
Explanation:
There may be many reasons why your internet speed is slow. Internet use requires a reliable connection between your device and the destination, which may be a server that is physically located on the other side of the world.Your connection to that server could pass through hundreds of devices on its journey. Each one of these is a potential failure, or weak point. If one point along this path isn’t functioning optimally, this can significantly affect your internet experience.
What are possible challenges of cyberbullying
Answer:
so,e challenges of cyber bullying is that,it could be a random person bullying u and u won't know who it is,another challenge of cyber bullying is that they can blackmail u or pretend to be u or threaten u
Answer:
Possible challenges of cyberbullying have to do with nonbelievers, or people who do not think cyberbullying is a real problem. Technology makes it hard to stop bullies, and some people do not want to take responsibility.
what are some tips to stay focused in school, and to complete work faster?
Answer:
Sometimes listening to music or chewing gum.
Explanation:
When I need to focus, I like listening to music and sucking on a hard candy or chewing gum.
Pls give Brainliest!!
Answer:
What I do to focus in school is to try and ignore everything that is going on around you. ( what your classmates are doing ) Drown out the noise with music if your allowed to listen to music. Ask the teacher is you can go somewhere quieter
Explanation:
Hope this helps, Have a Wonderful Day!!
Collisions occur when one output is mapped to two inputs.
A. True
B. False
Answer:
true very true very true
Answer:
False
Explanation:
I honestly just guess ngl
but i believe it's right ;0
why make people act meaner online the. in person
Which of the following is an example of gameplay in a video game
A: the art of a game
B: the player interacting with the game world and game mechanics
C: the personalities of all the characters
D:all of the above
Answer:
the correct answer is B. the player interacting with the game world and game mechanics
Explain two options you have in order to abide by the move over law??? PLEASE HELP ME ASAP!!
Answer:
you can either move over if on an interstate into a different lane safely. if there is only one lane you must reduce your speed
4.8 Code Practice: Question 1
Instructions
Write a for loop to print the numbers 5, 10, 15 … 75 on one line.
Expected Output
5 10 15 20 25 30 35 40 45 50 55 60 65 70 75
I included my code in the picture below. Best of luck.
Loops are used to perform repetitive operations.
The for loop in Python is as follows:
for i in range(5,76,5):
print(i,end =" ")
The syntax used for the range in for loop is: (start,end+1,increment)
The start represents the first value to be printed.
So: start = 5
The end represents the last value to be printed.
So: end = 75
Because the end value will not be inclusive, the value is incremented by 1
The increment is 5
Read more about similar programs at:
https://brainly.com/question/21298406
Hi guys, Im making a game. I want to make a collision event, but what is the code for making the wall and the box collide. I really need a quick and correct response. Pls support.
Answer:
i think its 3337
Explanation:
What action demonstrates unethical behavior?
A.
working overtime
B.
completing your work ahead of time
C.
taking credit for another person’s work
D.
keeping a tab on your organization’s carbon footprint
E.
leaving office on time
Answer:
taking credit for another person’s work
Any illegal actions, such stealing or physically abusing employees, are unethical at work. Unethical behavior can be observed in a wide range of businesses and environments. Taking credit for another person’s work.
What is Unethical behavior?When a person, a professional, or an industry acts in a way that is deemed unethical because it goes against social norms, that behavior is referred to as unethical behavior.
Politicians, businesses, professions, and individuals all have the potential to act unethically.
There are other instances of deliberate deception, but they serve as illustrations of how damaging deception can be when it is used to violate someone's rights or security.
Therefore, Any illegal actions, such stealing or physically abusing employees, are unethical at work. Unethical behavior can be observed in a wide range of businesses and environments. Taking credit for another person’s work.
To learn more about Unethical, refer to the link:
https://brainly.com/question/10174825
#SPJ2
how do you give brianliest
Answer:
When you ask a question in brainly, two helpers will answer it, then on each answerer you'll find "mark as brainliest" button which looks like a crown.
Hope this helps :)
you are working on creating a business document with two other co-workers. Based on just information, which of the following pre-writing strategies would be the best for you?(A.P.E.X.)
how many ones dose it take to get 9 tens
Part B
How would you classify a network formed by connecting two MANs together?
В І у хх Font Sizes А • А
look at the picture lol
Answer:
Zoom in more please and than i can help
Explanation:
Answer:
I would go with the first blue highlighted one... but i could be wrong
i hope i helped
if i didn't... i am sorry, i tried.
What is wrong in this python code import turtle bot = turtle.Turtle step = (50) turnAngle = (90) bot.Color("blue") bot.Begin_fill() bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.End_fill()
Answer:
The "Turtle" is a method and should be declared with parenthesis and every other method in the code (except the Turtle() ) should begin with lowercase letters like right, forward and begin_fill. The python file should not be saved as turtle.py to avoid import error.
Explanation:
The python turtle module is a graphical programming package created to introduce programming to children. It has several classes and methods to manipulate objects on the screen.
import turtle
bot = turtle.Turtle()
step =(50)
turnAngle =90
bot.color("blue")
bot.begin_fill()
bot.forward(step)
bot.right(turnAngle)
bot.forward(step)
bot.right(turnAngle)
bot.forward(step)
bot.right(turnAngle)
bot.forward(step)
bot.right(turnAngle)
bot.end_fill()
Help me pls!!
Look at the following assignment statements:
food1 = "water"
food2 = "melon"
What is the correct way to concatenate the strings?
newFood = word1 == word2
newFood = word1 + word2
newFood = word1 * word2
newFood = word1 - word2
new food = word1 + word2 will connect both words together with no space in between. The value of newFood will now be "watermelon"
Answer:
new food = word1 + word2
Explanation:
Microsoft Word, Google Chrome, and Windows Media Player are examples of
Answer:
They are all examples of software.
The ideal hash function:
A. Should be unfeasible to find two inputs that map to the same output
B. Should be unfeasible to learn anything about the input from the output
C. Basically we don’t want people to figure out what was said
D. All the above
Which of this isn't one of the three types of cryptograph?
A. Vegenere
B. Symmetric
C. Asymmetric
D. Hashing
Answer:
A. Vegenere
Explanation:
I think it's spelled Vigenère, I might be wrong.
The three types of cryptograph are:
Symmetric Key Cryptography (Private/Secret Key Cryptography)
Asymmetric Key Cryptography (Public Key Cryptography)
Hash Function
BRAINLIEST
When using design templates, these elements will be determined for you.
bullets
background
color scheme
content
title
font
Answer:
background
color scheme
font
I think thats all
Explanation:
Please give me Brainly
When using design templates, the elements that will be determined for you are color scheme and background. The correct options are b and c.
What is designing a template?The template is creating a document that has a copy of itself. Design templates are ready-made layouts and written materials that can be altered. For example, if you have a template of office content, then you can use it for another word document. You don't have to start from scratch.
In order to maintain consistency among users and media, templates are frequently created to adhere to certain rules or specifications. You can make new templates for later use, or utilize pre-designed templates from template libraries and websites.
Therefore, the correct options are b, background, and c, color scheme.
To learn more about template, refer to the link:
https://brainly.com/question/28193778
#SPJ2
Which of the following would be done outside of a control room?
programming a teleprompter
cueing camera operators
switching between multiple cameras
uploading camera footage on location
Answer:
a
Explanation:
Answer:
a
Explanation:
Which of the following You tubers uses the word "flip" as a curse word
A. Unspeakable
B.09Sharkboy
C. Moosecraft
D. All of the above
First correct answer get brainiest!
What are three print output options available in PowerPoint?
A. Handouts, Slides, Speaker Notes
B. Outline, Kiosk, Overheads
C. Overheads, Handouts, Slides
D. Kiosk, Handouts, Computer
Answer: .A
Explanation: i got it right
Answer:
'A' on edge 2020
Explanation:
Just took the test
Which statement is true? Select 3 options.
A function must have a return value.
A function can use variables as parameters.
The definition of a function must come before where the function is used.
A function can have more than one parameter.
The definition of a function can come before or after it is used.
Answer:
A,C, AND E
Explanation:
i got it wrong for the anwser
The statements that are true are as follows:
A function must have a return value.The definition of a function must come before where the function is used.The definition of a function can come before or after it is used.Thus, the correct options for this question are A, C, and E.
What is Function?A Function may be defined as a kind of expression, rule, or law that significantly determines a relationship between one variable which is known independent variable and another variable which is known as the dependent variable.
Each and every function must possess a return value. Apart from variables, there are several other parameters on which functions have to be worked on. So, the definition of a function must exist prior to its utilization. However, the actual definition of function may also exist after its utilization as well.
Therefore, the correct options for this question are A, C, and E.
To learn more about Functions, refer to the link:
https://brainly.com/question/22340031
#SPJ2
What is the difference between soft copy output devices and hard copy output devices
the output printed on the paper is called hardcopy output. some examples are printer and plotter.
the output produced on display screen and audio sound is called soft copy output. some examples are moniter and speaker.
A computer that provides special services to client computers on demand.
Answer:
A server?
Explanation:
I feel like this would be the answer but if it is multiple choice, reply with the possible answers. Hope this helps!