Vampire Diaries Trivia

Alaric.....?

What were the first vampires called?

How did Elena's parents die?

Answer correctly and you will get Brainliest and 10 points.

Answers

Answer 1

Answer:

Alaric Saltzman.

The Originals.

Car crash, ran off Wickery bridge.

Explanation:

Answer 2

Answer:

okkk I got this TVD since forever

Explanation:

Alaric Saltzman

They are called the original vampires (Mikael, Finn, Elijah, Klaus, Kol, and Rebekah)

Elena parents died on the way back home from picking up Elena from a party. They end up driving off the Wickery Bridge. Stefan saved Elena though he was going to save Elena dad first however her dad told Stefan to get Elena.


Related Questions

Pls help mark brainliest

Answers

Answer:

I cant answer this.

Explanation:

You need to take another screenshot so we can see the multiple choice.

Pls help I will thx and give points

Answers

Answer:

Desktop

Explanation:

A tablet and smartphone dont have enough storage like a desktop, so they would edit very efficiently

A desktop. A desktop has more advanced features than a tablet or smartphone. More programs are available and storage is more widely available as well

Your program has a loop. You want to pass control back to the start of a loop if a certain condition is met.

What statement will keep you in the loop but skip the rest of the code in the loop?


continue

exit

quit

break

Answers

Answer:

continue

Explanation:

David writes an essay as part of an assignment at school. He wants to indent the first lines of several paragraphs. With a word processing program such as OpenOffice Writer, which tab in the Paragraph dialog box would allow him to indent the first line automatically?

Answers

Answer:

Yes, that would be very smart for him.

Explanation:

I got it right on edge 2020

Answer:

Plato/Edmentum

Explanation:

Write a C++ program that prints out the following menu for a game (include the line of asterisks (*) on top and bottom). Try to use "endl" and the escape sequences \n, \t in your program.2 *********************************************** Welcome! Please choose a number from the following options: 1. Play the MAD LIBS game! 2. Play the CHOOSE YOUR OWN ADVENTURE game! 3. Exit *********************************************** Q#5: Write a C++ program to print out the following sentences. This is a practice of e

Answers

Answer:

#include <iostream>

using namespace std;

const int NRSTARS=50;

int main() {

 cout << string(NRSTARS, '*') << endl;

 cout << "Welcome!\nPlease choose a number from the following options:" << endl;

 cout << "1. Play the MAD LIBS game!" << endl;

 cout << "2. Play the CHOOSE YOUR OWN ADVENTURE game!" << endl;

 cout << "3. Exit" << endl;

 cout << string(NRSTARS, '*') << endl;

}

The example C++ program that prints the menu and the sentences is shown below:

What is the program

cpp

#include <iostream>

int main() {

   std::cout << "***********************************************" << std::endl;

   std::cout << "Welcome! Please choose a number from the following options:" << std::endl;

   std::cout << "1. Play the MAD LIBS game!" << std::endl;

   std::cout << "2. Play the CHOOSE YOUR OWN ADVENTURE game!" << std::endl;

   std::cout << "3. Exit" << std::endl;

   std::cout << "***********************************************" << std::endl;

   // Printing out sentences

   std::cout << "Q#5: Write a C++ program to print out the following sentences:" << std::endl;

   std::cout << "Sentence 1: Hello, world!" << std::endl;

   std::cout << "Sentence 2: I love programming." << std::endl;

   std::cout << "Sentence 3: C++ is a powerful language." << std::endl;

   return 0;

}

Read more about  program here:

https://brainly.com/question/23275071

#SPJ2

Which of the following activities is permissible for IT professionals in the conduct of computer access and authorizations?

viewing explicit content on a company computer

posting updates to social media networks during slow periods at work

using another company’s copyrighted images for the company’s website

using the company’s e-mail software to send work-related e-mails

Answers

Answer:

D

Explanation:

Answer: A, B, C, D

Explanation:

Write a program that gets three input characters which are user's initials and displays them in a welcoming message. Then gets input of the quantities of each of the following coins, in the respective order, quarters, dimes, nickels, and pennies.
Computes the total value of the coins, and then displays the value.
Enter the initials with no space, e.g. JTK.
Here are sample runs (blue user input):
Test Run 1
Enter your initials, first, middle and last: JTK Hello J.T.K., let's see what your coins are worth.
Enter number of quarters: 4
Enter number of dimes: 0
Enter number of nickels: 0
Enter number of pennies: 0
Number of quarters is 4.
Number of dimes is 0.
Number of nickels is 0.
Number of pennies is 0.
Your coins are worth 1 dollars and 0 cents.
Test Run 2 Enter your initials, first, middle and last: RHT
Hello R.H.T., let's see what your coins are worth.
Enter number of quarters: 0
Enter number of dimes: 10
Enter number of nickels: 0
Enter number of pennies: 0
Number of quarters is 0.
Number of dimes is 10.
Number of nickels is 0.
Number of pennies is 0.
Your coins are worth 1 dollars and 0 cents.

Answers

Answer:

#include <iostream>

using namespace std;

int main()

{

// variable declaration

string initials;

int quarters;

int dimes;

int nickels;

int pennies;

float total;

int dollars;

int cents;

 

 

//initials request

std::cout<<"Enter your initials, first, middle and last: "; std::cin>>initials;

//welcome message

std::cout<<"\nHello "<<initials<<"., let's see what your coins are worth."<<::std::endl;

 

//coins request and display

std::cout<<"\nEnter number of quarters: "; std::cin>>quarters;

std::cout<<"\nEnter number of dimes: "; std::cin>>dimes;

std::cout<<"\nEnter number of nickels: "; std::cin>>nickels;

std::cout<<"\nEnter number of pennies: "; std::cin>>pennies;

 

std::cout<<"\n\nNumber of quarters is "<<quarters;

std::cout<<"\nNumber of dimes is "<<dimes;

std::cout<<"\nNumber of nickels is "<<nickels;

std::cout<<"\nNumber of pennies is "<<pennies;

//total value calculation

total = quarters*0.25+dimes*0.1+nickels*0.05+pennies*0.01;

dollars = (int) total;

cents = (total-dollars)*100;

 

std::cout<<"\n\nYour coins are worth "<<dollars<<" dollars and "<<cents<<" cents."<<::std::endl;

 

return 0;

}

Explanation:

Code is written in C++ language.

First we declare the variables to be used for user input and calculations.Then we show a text on screen requesting the user to input his/her initials, and displaying a welcome message.The third section successively request the user to input the number of quarters, dimes, nickels and pennies to count.Finally the program calculates the total value, by giving each type of coin its corresponding value (0.25 for quarters, 0.1 for dimes, 0.05 for nickels and 0.01 for pennies) and multiplying for the number of each coin.To split the total value into dollars and cents, the program takes the total variable (of type float) and stores it into the dollars variable (of type int) since int does not store decimals, it only stores the integer part.Once the dollar value is obtained, it is subtracted from the total value, leaving only the cents part.

   

Write a program that reads a file containing text. Read each line and send it to the output file, preceded by line numbers. If the input file is Mary had a little lamb Whose Fleece was a white as snow. And everywhere that Mary went, The lamb was sure to go! then the program produces the output file /* 1 */ Mary had a little lamb /* 2 */ Whose Fleece was a white as snow. /* 3 */ And everywhere that Mary went, /* 4 */ The lamb was sure to go! The line numbers are enclosed in /* */ delimiters so the program can be used for numbering Java source files. Prompt the user for the input and output file names.

Answers

#!/bin/bash

INPUT_FILE=$1

count=1

while IFS= read -r line; do

echo $count - $line

count=$(($count + 1))

done < $INPUT_FILE

How does critical thinking relate to peer
assessment ?

Answers

Answer:

It both helps you understand very well on whatever assessments reading you do. You think and you pay 100% to your work and get done with it. You think through whatever you've been working on.

How does the pay for many Science, Technology, Engineering, and Mathematics workers compare to the overall median for all careers? It is far lower than the overall median. It is far higher than the overall median. It is slightly higher than the overall median. It is about the same as the overall median.

Answers

Answer:

B

Explanation:

It just is

Answer:

B is correct

Explanation:

Classify the characteristics as abstract classes or interfaces.

A. Uses the implements keyboard
B. Cannot have subclasses
C. Does not allow static and final variables
D. Can have subclasses
E. Uses the extends keyboard
F. Allows static and final variables

Answers

E for eeeedeerreeeee

An articulated robot has a T-type wrist axis that can be rotated a total of 2 rotations (each rotation is a full 3600 ). It is desired to be able to position the wrist with a control resolution of 0.250 between adjacent addressable points. (a) Determine the number of bits required in the binary register for that axis in the robot's control memory. (b) Using this number of bits, what is the actual control resolution of the joint

Answers

T pose my guy cuz my friend here Justin is next to me

PROJECT: RESEARCHING THE HISTORY OF THE INTERNET
The Internet has had a profound effect on how we conduct business and our personal lives. Understanding a bit about its history is an important step to understanding how it changed the lives of people everywhere.

Using the Internet, books, and interviews with subject matter experts (with permission from your teacher), research one of the technological changes that enabled the Internet to exist as it does today. This may be something like TCP/IP, the World Wide Web, or how e-mail works. Look at what led to the change (research, social or business issues, etc.) and how that technology has advanced since it was invented.
Write a research paper of at least 2, 000 words discussing this technology. Make sure to address the technology’s development, history, and how it impacts the Internet and users today. Write in narrative prose, and include a small number of bullet points if it will help illustrate a concept. It is not necessary to use footnotes or endnotes, but make sure to cite all your sources at the end of the paper. Use at least five different sources.

Submission Requirements
Use standard English and write full phrases or sentences. Do not use texting abbreviations or other shortcuts.
Make any tables, charts, or screen shots neat and well organized.
Make the information easy to understand.

Answers

E-mail, short for “electronic mail” is one of most widely used forms of digital communication. It can be used from nearly any device, and unlike paper mail, it is delivered nearly instantly. E-mail is used in all strata of society, and has endless possibilities for personal and professional uses.

It can be used to send messages, links, images and files, essentially everyone on the planet who uses computers will use e-mail. It powers business and connects families together across continents, and the best part of all is that it is essentially free. People use e-mail on personal computers, mobile phones, tablets, even on ‘smart’ televisions!

Every e-mail address has an inbox. This is where new messages are deposited. An e-mail message has a status called “unread” which disappears after the e-mail has been opened. A typical e-mail inbox will also have a ‘Sent’ folder for viewing messages that you have sent in the past. It also will have an ‘Outgoing’ folder, where messages stay until they have been fully transmitted. It is also common to have a ‘Drafts’ folder for messages that were started but never sent, and a ‘Spam’ folder, where unwanted marketing messages will usually be directed. You can of course setup your own folders and sort your e-mails however you like .

You are the IT administrator for a small corporate network. Over the weekend, another employee in the IT department upgraded some components in the Support workstation. When a Support employee came to work this morning, his computer would not start. In this lab, your task is to troubleshoot the problem and take the necessary steps to get the computer to start. Examine the computer to identify possible problems that would prevent it from coming on. Make sure the power cord between the computer and the power strip is plugged in. Make sure the power supply voltage is set to 115V. Make sure the power supply switch is on.

Answers

Answer:

Explanation:

First, you should make sure the power cable is properly connected to the pc and the wall plug. Next, you need to make sure that the power switch on the PC's power supply is turned on. If the PC still does not turn on, you may want to check if the wall plug is providing electricity. If so, the next step would be to check the inner cables connecting the power supply to the pc and make sure everything is correctly connected.

If you have tried all of this to no avail then the most likely reason is that something is broken. The possible culprits could be bad cables, broken power button, bad power supply, or failed motherboard. You would have to individually test each component to find the culprit.

Which operation will remove the originally selected information?
O Duplicate
O Copy
O Paste
O Cut

Answers

Answer:

D. the cut command

Explanation:

When you purchase donuts, they come in boxes of 12, so 24 donuts take 2 boxes. All donuts need to be in a box, so if you buy 13 donuts, you'll get 2 boxes with 12 in the first box and 1 in the second. If the integer variable numberOfDonuts contains the positive number of donuts purchased, which of the following will correctly give the number of boxes needed?
a. int numberOfBoxes = 1 + numberOfDonuts / 12;
b. int numberOfBoxes = numberOfDonuts / 12 + numberOfDonuts % 12;
c. int numberOfBoxes = numberOfDonuts / 12;
d. int numberOfBoxes = (numberOfDonuts + 11) / 12;

Answers

Answer:

d) int numberOfBoxes = (numberOfDonuts + 11) / 12

Explanation:

Hope this helps

Which save as element allows a user to save a presentation on a computer?

Answers

Answer:

This PC

Explanation:

Got it right

Answer:

Look at the attached file for the answer, I'm correct as you can see.

Explanation:

Devising a plan to solve a problem or perform a task using a set of step by step instructions is called:
Running a program
Writing an algorithm
Creating syntax
Interpreting instructions

Answers

d becaus ig is following INSTRUCTIONS

What number does this binary code represent?

(don’t mind the 36)

Answers

29 if u didn’t do it alr
32+4+1=37 this is how you work it out

Why do we use return statements? Choose all that apply

A.
Javascript requires functions to have return values.

B.
To return multiple data types simultaneously

C.
To allow a function to give different values depending on input.

D.
So that we no longer have to use console.log();

E.
To save the result of a function in a variable in other functions

Answers

Answer:

A.

Javascript requires functions to have return values.

What type of memory disappears when you turn your computer off? CPU, RAM, ROM or Storage​

Answers

Answer:

RAM

Explanation:

Hey,

The answer to this is ram. Ram were your most important info that needs to be read right away is stored when your not using your computer to save power your ram is shut down.

Hope this helps have a great day.

-scav

Pls help computer science I will give brainliest

Answers

Answer:

A driver assists with hardware management.

Hope this helped.

Answer: Hardware Management

Reason: Depends on the driver type

Pls help I will give points

Answers

Answer:

Desktop

Explanation:

Identify advantages that web designers gained by
switching to divs and CSS for page layout. Check
all of the boxes that apply.
Divs describe the type of content they
contain.
Divs can be styled to any shape, size, or
location on a page.
Divs can contain a combination of tagged
content.

Answers

Answer:

B Divs can be styled to any shape, size, or location on a page.

C Divs can contain a combination of tagged content.

Explanation:

What is the influence of new technology on society?
Ο Α. .
New technology hardly has any impact on society.
OB.
New technology is only beneficial to society and cannot be detrimental.
OC.
New technology is detrimental, as it makes the existing technology obsolete.
OD. New technology normally utilizes a lot of resources and can adversely affect the economy.
O E.
New technology is beneficial but can also be usedly a detrimental way.

Answers

Answer:

E. New technology is beneficial but can also be used in a detrimental way.

Explanation:

New technology such as cryptocurrency (powered by blockchain technology) can be regarded as a welcome development that has benefited the society in so many good ways. However, cryptocurrency as a new technology also has disadvantages it presents to the society. One of such negative influence cryptocurrency has is that it can be used for illicit activities such as money laundering, funding terrorism and so on.

So, in summary, we can conclude that:

"New technology is beneficial but can also be used in a detrimental way."

When a laptop internal device fails, what three options can you use to deal with the problem?

Answers

Answer:

I. Return the laptop to a service center for repair.

II. Substitute an external component for the internal component.

III. Replace the internal component.

Explanation:

A laptop can be defined as a small portable computer that is embedded with a keyboard and light enough to be placed on the user's lap while working.

When a laptop internal device fails, the three options which you can use to deal with the problem are;

I. Return the laptop to a service center for repair: a computer technician at the service center would troubleshoot and fix the problem i.e the internal device that failed.

II. Substitute an external component for the internal component: the user could swap a component found on the outside of a laptop with an internal component provided that they are compatible with each other.

III. Replace the internal component: if the failed internal component is a customer replaceable unit (CRU), you can easily replace it.

........................ allows you to press a key or code for insertion of long phrases that you may require using repeatedly which saves time. *

Answers

Answer:

text expander

Explanation:

Answer:

The answer to this is a text expander!

Hope this helps you! Have a nice day!

Assume you are a security professional. You are determining which of the following backup strategies will provide the best protection against data loss, whether from disk failure or natural disaster: Daily full server backups with hourly incremental backups Redundant array of independent disks (RAID) with periodic full backups Replicated databases and folders on high-availability alternate servers Answer the following question(s): Which backup strategy would you adopt? Why?

Answers

Answer: if you have data that is lost then you need to find the things you have deleted and get that data back

Explanation:

You have searched a database to locate US cities with population counts above 1 million people. You need to present the results to the class. Which of these describes the process you should use to accomplish these tasks?

options

enter data into a form and present it to the class

present the table you used to search for cities with more than 1 million people

run a query and create a report from the datasheet

run a query and present the datasheet to the class

Answers

Answer:

Run a query and create a report from the datasheet.

Explanation: creating a report will give a easy to understand explanation of all the data you have collected.

Answer:

the answer is C

the next one is B

Explanation:

In Python!!
1. Correcting string errors
It's easy to make errors when you're trying to type strings quickly.
Don't forget to use quotes! Without quotes, you'll get a name error.
owner = DataCamp
Use the same type of quotation mark. If you start with a single quote, and end with a double quote, you'll get a syntax error.
fur_color = "blonde'
Someone at the police station made an error when filling out the final lines of Bayes' Missing Puppy Report. In this exercise, you will correct the errors.
# One or more of the following lines contains an error
# Correct it so that it runs without producing syntax errors
birthday = "2017-07-14'
case_id = 'DATACAMP!123-456?
2. Load a DataFrame
A ransom note was left at the scene of Bayes' kidnapping. Eventually, we'll want to analyze the frequency with which each letter occurs in the note, to help us identify the kidnapper. For now, we just need to load the data from ransom.csv into Python.
We'll load the data into a DataFrame, a special data type from the pandas module. It represents spreadsheet-like data (something with rows and columns).
We can create a DataFrame from a CSV (comma-separated value) file by using the function pd.read_csv.
# Import pandas
import pandas as pd
# Load the 'ransom.csv' into a DataFrame
r = ___.___('___')
# Display DataFrae
print(r)
3. Correcting a function error
The code in the script editor should plot information from the DataFrame that we loaded in the previous exercise.
However, there is an error in function syntax. Remember that common function errors include:
Forgetting closing parenthesis
Forgetting commas between each argument
Note that all arguments to the functions are correct. The problem is in the function syntax.
# One or more of the following lines contains an error
# Correct it so that it runs without producing syntax errors
# Plot a graph
plt.plot(x_values y_values)
# Display the graph
plt.show()
4. Snooping for suspects
We need to narrow down the list of suspects for the kidnapping of Bayes. Once we have a list of suspects, we'll ask them for writing samples and compare them to the ransom note.
A witness to the crime noticed a green truck leaving the scene of the crime whose license plate began with 'FRQ'. We'll use this information to search for some suspects.
As a detective, you have access to a special function called lookup_plate.
lookup_plate accepts one positional argument: A string representing a license plate.
# Define plate to represent a plate beginning with FRQ
# Use * to represent the missing four letters
____ = ____
Please help out~~~

Answers

Answer:

Following are the solution to the given points:

Explanation:

For point 1:

birthday = "2017-07-14" # defining a string variable birthday that string value  

case_id = 'DATACAMP!123-456?' #defining a variable case_id that stores the string value

In this, two variable "birthday and case_id" is defined, that holds the string value. In the first variable, it uses the hyphen sign to hold the date value as a string. In the second variable, it uses a single quoit to store string value.  

For point 2:

import pandas as pd # using import package to import pandas  

r = pd.read_csv('ransom.csv')# defining r variable that uses pandas to Load the 'ransom.csv' file

print(r)#use print method to print r value

In this code, a pandas package is imported, and in the next step r variable is defined that uses the read method to hold the csv file , and the print method to print r value.

For point 3:

plt.plot(x_values, y_values) # Plot method to hold parameters values

plt.show()#calling the show method

In this code, the plot method is used, which accepts two-parameter to store its value into plt, and in the next step, it uses the show method.  

For point 4:

# Defining a plate variable to represents the plate that starts with FRQ

# Using the * to represent the four missing letter

plate = lookup_plate('FRQ*)  

Other Questions
What are the calf muscles located and what movements are they responsible for? Role playing involves the use of scripts and scenarios.TrueFalse Part AWhat is a theme that is developed in "A Whole New World"?Life gets better as one gets older.It is important to remember the past.Beauty can be found where you least expect it.Gifts are the universal symbol of kindness.Question 2Part BWhich quotation from the passage best supports the answer to Part A?"First, she found an imprint of a tiny plant embedded on the side of the rock.""But as she got down on her knees and examined the rock, a number of things caught her attention.""She occasionally took photos of other things like her cat, Hubble, and hamster, Mr. Lincoln.""Living in New Mexico, one saw miles of scenery bathed in brown and green: pinion trees, juniper trees, and dirt." 24.55 rounded to the nearest hundred what happened on arrival of auschwitz-birkenau, what was the process on getting there All of the following were economic changes in the nation as a result of the War of 1812 EXCEPT-A. increase in taxes on imported goodsB. increased desire in Europe for American manufactured goodsC. increased reliance on American manufactured goodsD. increased industrial production A hut in Tulum, Mexico 8 1/4 mi long. It has a width of 4/5 miles long, and 1/3 miles tall. Whatcis the volume of the hut help I don't understand IF YOU DO thIS YOU GEt BRAINLIEST!! AND A LOT OF POINTS. I HAVE OTHER THINGS I HAVE TO DORead these two transcripts--one from a radio traffic report and another from a television news report of the same event.RADIO: At todays city meeting, parents gathered to protest the change in speed limits in the Rockwood neighborhood. There are two schools in that area, (voice shouts) The last thing we need is people speeding through these streets, (another voice agrees). Although the council seemed to feel there would be no increased risk in Rockwood, parents were able to vote down the motion. This is Katherine Weber for KPAT news.TELEVISION: Reporting from outside City Hall, this is Kevin Hampton for KTVA. It was a noisy meeting tonight as parents battled transportation officials over a raise in the Rockwood area speed limit. As you can see, even though the meeting ended 30 minutes ago, people are still standing around in the parking lot talking about the issue. The final vote was 68 against and 9 for the speed increase, and so, for now, Rockwood will stay a little slower. Kevin Hampton, reportingfor KTVA. What is the main way these two reports differ?A. The television report included interviews with voters.B. The television report was not reported live on site.C. The radio report was biased on the issue of the vote.D. The radio report relied on additional voices to make points. In a bag of marbles, the probability of randomly selecting a yellow marble is 0.3.The probability of randomly selecting a blue marble is 1/4Which of the following is true?A. It is less likely a blue marble is selected than a yellow marble.B. It is more likely a blue marble is selected than a yellow marble.C. It is equally as likely a blue marble is selected as a yellow marble.D. There is no way to compare the two probabilities since we do not know how many marbles are in the bag. What do smart investors do before making an investment? What is the distance between the points (8, 5) and (8, 1)? In what ways is plate tectonics related to the formation of Earth's crustal features? Beams of high-speed protons can be produced in "guns" using electric fields to accelerate the protons. (a) What acceleration would a proton experience if the gun's electric field were 2.95 104 N/C? (b) What speed would the proton attain if the field accelerated the proton through a distance of 1.26 cm? Describe the transformation of the Soviet Union Under Joseph Stalin how will you test for starch ( carbohydrates) in food item I will give branliest! I need help with 9 and 10 !!!!!!!!!!!!!!!!!!!HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Using the image, answer parts A, B and C:Briefly explain the point of view expressed by the artist.Briefly explain one development in the time period 1750-1900 that led to the point of view being expressed by this artist.Briefly explain one development in the time period 1750-1900 that challenged the point of view being expressed by this artist. NEED HELP ASAP!!!Of all the students who tried out for volleyball, 83% made the team what fraction of the students who tried out did NOT make the team? Answers4/51/53/41/3