Who is the one you shouldnt have killed from fnaf?
(I already know but whoever answers first and right gets brainlest)

Answers

Answer 1

Answer: He was thought to be one of William Aftons victims who is also thought to be the child who possessing golden freddy

Explanation:

Answer 2

Answer:

Cassidy I guess


Related Questions

All changes
1.(01.01 LC)
To make sure you do not get too tired when using the computer for long periods of time, how often should you get up to stretch and move? (5 points)
O Every hour
O Every 10 minutes
O Every 30 minutes
O Every two hours

Answers

You should get up and move every 30 minutes

Hope  this helps

-scav

Answer:

C

Explanation:

Read the following statements and use the drop-down menus to identify which statements are
conditional statements.
I am thinking about going to college.
I plan to go to college if my grades are good enough.
If my grades are very good, then I will select a college that offers scholarships.
I plan to visit several colleges to see what they offer and what the living situations look like.
If I do not qualify for any scholarships, then I will apply for student loans.
I will also start working a part-time job to help pay for college.

Answers

Answer:

I am thinking about going to college.

✔ not a conditional statement

I plan to go to college if my grades are good enough.

✔ conditional statement

If my grades are very good, then I will select a college that offers scholarships.

✔ conditional statement

I plan to visit several colleges to see what they offer and what the living situations look like.

✔ not a conditional statement

If I do not qualify for any scholarships, then I will apply for student loans.

✔ conditional statement

I will also start working a part-time job to help pay for college.

✔ not a conditional statement

If I go to college, then my parents will let me take the extra car with me.

✔ conditional statement

If I do not go to college and stay home, then my parents want me to start paying rent.

✔ conditional statement

Answer:

These are correct!

I am thinking about going to college.  ✔ not a conditional statement  

I plan to go to college if my grades are good enough. ✔ conditional statement   

If my grades are very good, then I will select a college that offers scholarships. ✔ conditional statement  

I plan to visit several colleges to see what they offer and what the living situations look like. ✔ not a conditional statement  

If I do not qualify for any scholarships, then I will apply for student loans. ✔ conditional statement 

I will also start working a part-time job to help pay for college. ✔ not a conditional statement  

If I go to college, then my parents will let me take the extra car with me. ✔ conditional statement  

If I do not go to college and stay home, then my parents want me to start paying rent. ✔ conditional statement

Explanation:

They are correct! I answered them and got them all right!

-- of 5 points Question 3 1 try left While designing a new system, a company uncovered several processes that were quite rule-based, and that didn't really require staff to handle. The company chose to automate those processes using ___________________________ so they would no longer need to assign people to perform those tasks. A. code review B. robotic process automation C. application programming interfaces D. service-oriented architecture

Answers

Answer:

B. robotic process automation.

Explanation:

In the design of a new system, a company was able to uncover several processes that were typically rule-based, and which did not really require staff to control or handle.

Hence, the company chose to automate those processes using robotic process automation so they would no longer need to assign people to perform those tasks.

What are some examples and non-examples of digital law?

Answers

Examples: Plagiarism. Illegal downloads - music, games, movies etc. Piracy. Stealing someone's identity.

Non-Examples: Sending Scams, Copyright Infringement, Sexting

Why is the len () function useful when using a loop to iterate through a stack?​

Answers

Answer:

Option C

Explanation:

Complete question

Why is the len ( ) function useful when using a loop to iterate through a stack?

The len ( ) function will print the elements of the stack.

The len ( ) function will run with each iteration, printing the element number each time.

The len ( ) function will tell the program the number of elements in the stack.

The len ( ) function will remove the duplicate elements in the stack.

Solution

A len()function in stack is used to extract the length of the given string, array, list, tuple etc. This function helps in optimizing the performance of the program by not calculating the objects contained in it but by providing the number of elements.

hence, option C is correct

Answer:

I think it is:

(B. The len ( ) function will run with each iteration, printing the element number each time.)

Explanation:

Can somebody help me with this please

Answers

Answer: I'm in six grade I can't do that stuff

Explanation:

Answer:

Sorry for using up one of the answer thingys. But I thought this would make you laugh a little bit! Have a good day!

Explanation:

personal computer is the rise of what?​

Answers

Answer:

Overuse injuries of the hand.

Obesity.

Muscle and joint problems.

Eyestrain.

Behavioural problems including aggressive behaviour.

HELPPPP In 5-6 sentences explain how technology has impacted engineers.

Answers

Answer:

Digitization is changing the playing field for engineers.

It alters the culture by providing more real-time data on the performance of equipment in the field today, allowing engineers to consider improvements that can be achieved in months through data algorithms rather than years or decades.

They can analyze and simulate almost everything that a product would go through, virtually.

Microsoft Security Essentials and Microsoft Forefront are: anti-malware software programs that can be used to harden workstation computers. port-scanning software utilities that scan for open ports on servers. software programs designed to remove or disable unnecessary user accounts. operating system administration software programs that create and maintain baselines.

Answers

Answer:

anti-malware software programs that can be used to harden workstation computers

Explanation:

Microsoft Security Essentials can be regarded as antivirus software which gives protection to our computers used in home or for business against types of malicious software. These malicious software could be

✓trojan horses.

✓ computer viruses

✓spyware

✓rootkits, trojan horses.

Microsoft Forefront can be regarded as

security software for business roduced

by Microsoft Corporation. It was

designed to offer protection to computer networks as well as network servers and individual devices. It should be noted that Microsoft Security Essentials and Microsoft Forefront are anti-malware software programs that can be used to harden workstation computers

Why using a word processor than a typewriter?​

Answers

Answer:

Word processors allow users to save documents. This is not the case with a typewriter. Because text can be saved, editing does not have to occur immediately. The fourth characteristic of word processors is that they allow users to print their documents.

Answer:

There are many advantages to using a word processor instead of a typewriter. ... You have the ability to easily edit and change a word processing document. You can change a wide variety of formatting and colours. You can save files and re-use them.

Explanation:

write a program that will create an array of 100 random integers in the range from [0,99] pass the array to a function, printarray(), that will print the values of the array on the monitor. pass the array to a function, sortarray(), that will sort the array. Pass the array to printarray() again and print it in increasing order

Answers

Answer:

In C++:

#include <cstdlib>  

#include <ctime>  

#include <iostream>

#include <bits/stdc++.h>

using namespace std;

void printarray(int array []){

for(int i=0; i<100; i++){         cout << array[i] << " ";    }

}

void sortarray(int array []){

sort(array, array + 100);

   printarray(array);

}

int main() {  

   int array[100];

   srand((unsigned)time(0));  

   for(int i=0; i<100; i++){  array[i] = (rand()%99);     }

   printarray(array);

   cout<<endl;

   sortarray(array);

   return 0;

}

Explanation:

See attachment for program source file where comments are used for explanation purpose

An acceptable website design is one that meets
user design expectations and is also:

A.colorful
B.effective
C.template-based
D.standardized

Answers

Answer:

i'd say b

Explanation:

B effective because u need a good web site to been colorful and effective hope this helps

When using for loops and two-dimensional arrays, the outside loop moves across the ___________ and the inside loop moves across the ___________.

indexes, elements

columns, rows

elements, indexes

rows, columns

Answers

Answer: rows, columns

Explanation: :)

Characteristics of RAM​

Answers

Answer:

Short Data lifetime, Less Expensive, Needs to be refreshed often, Smaller in size, etc. tell me if you need more.

Other Questions
True or False. The pressure inside a piston is the same in all directions. Algebra 2 Help, Correct Answers only please! what is the general rule of the following geometric sequence-4; -1; -1/4 What is the value of x in the figure? Why did Prince Henry the Navigator want tosend ships south to Africa? Which statement best identifies the type and use of description? Read this excerpt from A Black Hole Is NOT a Hole. Acting on the hint, scientists search the X-rays for patterns that most likely signal black holes. One pattern is an X-ray ring that seems to surround nothing. The nothing part might be a black hole. If so, the ring is energy released by super-heated matter spiraling just outside the event horizon. O The word is signals a characteristic of an X-ray pattern. 0 The phrase most likely signals an example of an X- ray pattern The word is signals a characteristic of a spiral O The phrase most likely signals a feature of a black hole which of the following is an effect of tobacco useA. delayed menopauseB. Increased appetite C.Premature aging D.Kidney failure growth or decay pls answer Which statement is correct about the aging of the Baby Boomer generation?Elderly adults will have fewer options for companionship than in previous generations.There will likely be more attention given to senior health and relationship issues.There will be cures for many chronic illnesses, as Baby Boomers will fund the research.The aging process will become more of a taboo conversation topic. Which of these is an example of pathogen transfer via indirect contact?a. kissingb. handshakingc. sexual intercoursed. breathing infected air Jamal and his family went to their favorite restaurantfor dinner. The cost of the dinner was $86.90. Thefamily used a $15.00 off coupon, which discounted fromthe total cost of the dinner. Jamal left the waiter an18% tip of the discounted bill. How much did the familypay for dinner, including discount and tip? 6. Yo no(entender, e-ie).7. Mi padre siempre(perder, i-ie) las llaves.8. A qu hora_(volver, o-ue) ellas a casa?9. Nosotros(jugar, u-ue) volibol.10. Yo_(venir, e-ie) a la escuela hoy. Greg is at his house he gets in his car drives north 9.6 miles and stops at a store then he turns around and drives south 8.4 miles to his friends house how far is the friends house from Gregs houses? When a company goes public, it begins doing what?A.Offering new products for saleB.Selling shares of stockC.Issuing government bondsD.Paying corporate income taxes QUESTION 16You are a school photographer taking individual and class pictures for 2 classes of 21 students each. On average, each individual picturetakes 3 minutes and a class picture takes 10 minutes. About how long should it take you to get all of the pictures?O A 1 hour 3 minutesOB. 1 hour 13 minutesOC. 2 hours 6 minutesOD. 2 hours 16 minutesOE 2 hours 26 minutes CALLING MIRACULOUS FAN: NAME THE EPISODE.I'M SUPER COOL, I'M SUPER COOL, I'M SUPER.. AHHH. OH, IT'S JUST A STATUE, HOW COME I'VE NOT SEEN IT BEFORE. WOW.. IT LOOKS SO REAL. THE WAX IS NEARLY AS SOFT AS SKIN.. *LONG SNIFF* IT EVEN SMELLS EXATCLY LIKE HIM. OH, BEAUTIFUL STATUE OF ADRIEN, YOUR WAX IS SO SOFT. YOUR YACK HAIR IS SILKY. OH SHALL I BE A STATUE TOO, EVERYTHIGN WOULD BE SO MUCH EASIER. WHY HAVEN'T WE BEEN MOLDED IN THE HONOR OF DESTINIY. MARBLE TO MARBLE, WAX LIPS AGAINST WAX LIPS AND FOR.. ETERNITY. *GOES TO KISS HIM* ETERNITY SOUNDS LIKE A LONG TIME. AHHHH. I AM SO SORRY MARINETTE. NOT COOL, NOT COOL. What is the value for the missing angle ?? Identify the latitudes thatproduce wet and dry regions. find the diameter of the graphed circle. Select the correct answer.What effect does an increase in products have on the reaction rate of a mixture at equilibrium?A. The forward reaction rate increases.B. Both the forward and the reverse reaction rates decrease.C. Both the forward and the reverse reaction rates increase.D. The reverse reaction rate increases.