Answer:
The pivot table is attached below
Explanation:
procedure used to create the Pivot Table
select insert from worksheet Ribbonselect pivot tableselect the range of Dataselect "new worksheet "select Major as row heading and the summation symbol to count the majorinput variables given in their right cellsafter this procedure the table is successfully created
Attached below is the Pivot Table in Excel displaying The number of graduates in each major and average monthly salaries
Which of the following forms of identity theft involves posing as a legitimate researcher to ask for personal information?
research spoofing
cyberstalking
phishing
pretexting
Answer:
Phishing.
Explanation:
Phishing is a form of internet fraud. It consists of defrauding people by luring them to a fake bank website, which is a copy of the real website, to have them log in there - unsuspectingly - with their login name and password or their credit card number. This gives the fraudster access to this data with all the associated consequences. The fraudster poses as a trusted body, such as a bank. Most forms of phishing are done via e-mail, as the mail contains a link to the false website.
which is a legal term which indicates an idea process or physical creation that come from the work of the mind
Answer:
copy right
Explanation:
don't copy right any major companys
Answer:
Intellectual property
Explanation:
25 POINTS! PLEASE ANSWER! Karrie would like to draw attention to some short statements in her document. What is the best way to draw the readers deeper into the text? A. insert pull quotes B. change the text color C. use a large font D. highlight the text
Answer: I would say D. because it is highlighted text draws the attention of the reader
Explanation:
Answer:
D. highlight the text
Explanation:
if your were trying to grab a readers attention highlighting the text is the most noticeble.
What is a name used to identify a specific location and value in memory?a. Variable b. Operator c. Control structure d. Object
Answer:
(a) Variable
Explanation:
In the programming world, a variable is used to store data that can be referenced and modified in a computer program. It typically refers to the label for the location (in memory) of a particular data used in programs. For example;
var b = 12.
This implies that the value 12 is stored in a location in memory that is labeled as b. Anytime the value 12 is needed either for retrieval or modification purposes, it can be referenced by simply calling the variable b.
Which of the following are part of personal growth? Check all of the boxes that apply.
Answer:
all of them except avoiding setting goals
Explanation:
Part of personal growth increasing self-awareness, improving quality of life, and developing skills. The correct options are a, b, and d.
What is personal growth?Understanding yourself and pushing yourself to realize your full potential are both parts of the process of personal growth. It entails continuously considering your identity and your plans for getting there.
Utilize your time management abilities more effectively, and take better care of yourself. Stop putting things off. Set boundaries for your use of social media. Increase the amount of self-care activities you do each day.
The main components of personal growth are increasing awareness of oneself, enhancing living quality, and increasing skills of yourself.
Therefore, the correct options are:
a. Increasing self-awareness.
b. improving quality of life
d. developing skills
To learn more about personal growth, visit here:
https://brainly.com/question/28146493
#SPJ2
The question is incomplete. Your most probably complete question is given below:
Increasing self-awareness
improving quality of life
avoiding setting goals
developing skills
English language readers are accustomed to seeing paragraphs that are _____.
a. right-aligned.
b. center-aligned.
c. justified.
d. left-aligned.
Answer:
d. left-aligned
Explanation:
They are accustomed to seeing paragraphs that are left aligned. The left alignment is the most common type of alignment. This type of text format aligns text at the left-hand side of a page or paper. In areas areas or countries were english is spoken like the United States, text editors are usually in left alignment. The reason for this is because they read from left to right in these countries.
A company has recently learned of a person trying to obtain personal information of employees illegally. According to which act will be the person punished?
I-SPY
CFAA
Digital Millennium Act
SOPA
Answer:
Digital Millennium Act
Explanation:
The Digital Millennium Copyright Act is a United States copyright law that implements two treaties of the World Intellectual Property Organization . The aim of this ACT is to protect the rights of both copyright owners and consumers. The law complies with the World Intellectual Property Organization Copyright. The law has two basic functions. First, it protects copyright owners by providing them with a mechanism to enforce their rights without having to directly sue the infringer
Hope that helped.
Summarize/discuss at least 6 key things that influence one's Design choices.
Answer:
Six factors that influence one's design choices in data visualization are;
1. subject-matter appeal
2. personal taste
3. attitude and emotion
4. dynamic of need
5. what they need to know
6. subject-matter knowledge.
Explanation:
The subject-matter appeal is the interest the viewers show to the data presented to them, if it really relates to their interest.
Personal taste is the theme from color to the graphic tool used to display the data. Dynamics of need depicts the viewers' choice to know the data they are presented with.
Subject-matter knowledge is the prior knowledge of the data presented, do they have prior knowledge or not.
What they need to know is a factor that helps to answer the viewers' question, does this have the knowledge I seek?
New Top Level Domains (TLDs) are coordinated by:_______.
Define a constructor as indicated. Sample output for below program:Year: 0, VIN: -1Year: 2009, VIN: 444555666// ===== Code from file CarRecord.java =====public class CarRecord {private int yearMade;private int vehicleIdNum;public void setYearMade(int originalYear) {yearMade = originalYear;return;}public void setVehicleIdNum(int vehIdNum) {vehicleIdNum = vehIdNum;return;}public void print() {System.out.println("Year: " + yearMade + ", VIN: " + vehicleIdNum);return;}// FIXME: Write constructor, initialize year to 0, vehicle ID num to -1./* Your solution goes here */}// ===== end ===== //===== Code from file CallCarRecord.java =====public class CallCarRecord {public static void main (String args) {CarRecord familyCar = new CarRecord();familyCar.print();familyCar.setYearMade(2009);familyCar.setVehicleIdNum(444555666);familyCar.print();return;}}// ===== end =====
Answer:
public CarRecord(){
yearMade = 0;
vehicleIdNum = -1;
}
Explanation:
A constructor is used to initialize an object instantly. It does not have a return type and has the same name as class.
Create a constructor and set the year as 0 and vehicleIdNum as -1.
This constructor is the default constructor, initializes the default values for the variables, for this class.
A constructor is a block of code that is called and executed each time an object is created.
The constructor in Java is as follows:
public CarRecord(){
yearMade = 0;
vehicleIdNum = -1;
}
A constructor would have the same name as the class.
The class of the program is CarRecord; so the constructor name is CarRecord()
From the question, variables year and vehicles ID are to be initialized to 0 and -1 respectively.
So, the variable initialization is:
yearMade = 0;
vehicleIdNum = -1;
Hence, the complete code segment is:
public CarRecord(){
yearMade = 0; vehicleIdNum = -1;
}
Read more about constructors at:
https://brainly.com/question/14608885
Jason needs to design the colors for a web site that make it easy to read. Which should he consider using?
O Contrasting background and text
Dark background and dark text
Dark background and light text
Similar background and text
Answer: Dark background and light text.
Explanation:
Assuming when you mean by "light text", you mean by white text. This should be able to be readable by users visiting the site.
Answer:
Contrasting background and text
Explanation:
When selecting a color scheme for a website, designers often choose complementary colors that keep the visitor on the website.
Your web page should have three main colors: one for the background, one for the text, and one for the headings. The colors you select should complement each other and be on opposite sides of the color wheel.
Also i got it right on my test!
what are 6 steps to take to figure out what's wrong with your computer?
this would be a big help thx
Answer
located the problem Go to system settings Try to uninstall and install the programTry troubleshooting the program Try contacting the device admin Read the user Manuel before try to do anything on the systemWhat is generalization error in terms of the SVM? a. How accurately the SVM can predict outcomes for unseen data b. How far the hyperplane is from the support vectors c. The threshold amount of error in an SVM
Answer:
a. How accurately the SVM can predict outcomes for unseen data
Explanation:
Generalization Error in terms of the SVM which is an acronym for Support Vector Machine, that deals with a form of administered learning standard, is a criterion of how accurately the Support Vector Machine algorithm can make a forecast of concluding information for formerly hidden data.
Hence, in this case, the correct answer is option A, which is Generalization error in terms of the SVM is "How accurately the SVM can predict outcomes for unseen data"
It should be noted that generalization error in terms of the SVM base on How accurately the SVM can predict outcomes for unseen data.
Generalization error can be regarded as the error which serves as a measure of how accurately an algorithm is, when predicting outcome values as regards the previously unseen data.
Therefore, option A is correct, generalization error serves as how accurately the SVM can predict outcomes for unseen data.
Learn more about generalization error at;
https://brainly.com/question/17220524
If there is more than one speaker, how should they be all noted?
a.) Speaker X: and the editor will correct it.
b.) Speaker 1, Speaker 2, eat cetera.
c.) Speaker 1, Speaker 2, et cetera. if you can distinguish a speaker’s role in the conversation, you should make it as descriptive as possible.
Answer:
I think is C but I'm not completely sure
What is the quickest way to remove filters from a worksheet?
Answer:If you want to completely remove filters, go to the Data tab and click the Filter button, or use the keyboard shortcut Alt+D+F+F.
The quickest way to remove filters from a worksheet is to Alt+D+F+F.
What is a worksheet?Worksheets often refer to a paper that is blank with workouts or questionnaires on it that students must accomplish & record their responses on. They are utilized in most courses to some extent, and there are two main varieties in the lesson plan where things are often used.
Choose the Sort & Filter group, then click the Refine button. Click Clear Filter after selecting the tab. Removal of All Filters while selecting the worksheet. Designate Clear Filter after clicking each filter.
Columns in a spreadsheet allow you to enter facts and do calculations. Columns and rows have been used to arrange the cells. A textbook is where a workbook always is kept. Many worksheets may be found in a workbook.
Learn more about the worksheet, here:
https://brainly.com/question/13129393
#SPJ2
A blank is a memory location whose value cannot change during the execution of the program
Answer:
Named Constant
Explanation:
blank is a memory location whose value cannot change during the execution of the program is Named Constant
Although the original BBS system was simple, it increased people's ability to communicate
across multiple lines
across analog lines
with multiple messages
across long distances
Answer:
across long distances.
Explanation:
BBS is an acronym for bulletin board system and it can be defined as an application or computer system which is typically used for the sharing and dissemination of user informations or data such as messages or files over a network. It is generally considered to be an alternative to the world wide web (www) in the 1980s and early 1990s before the advancement of the internet.
Hence, the bulletin board system (BBS) was typically accessed using a Telnet or a dial-up modem.
Although the original BBS system was simple, it increased people's ability to communicate across long distances because users didn't have to be physically present to exchange messages or files.
what is the different between ethical and legal issues?
Answer:
Ethical issue is anything that a person believes to be right or wrong that generally comes down based on personal opinion or a persons belief or philosophy while legal issue is any act done by a person whether he/she thinks it is right or wrong, whether it conforms to the law and needs legal expertise.
Explanation:
A collection of code makes up what
Answer:
In computing, source code is any collection of code, with or without comments, written using a human-readable programming language, usually as plain text.
Explanation:
source code may be interpreted and thus immediately executed.
Some might consider careers in the Construction industry to be quite flexible. Which statement supports this claim? Employees can work for themselves, big companies, or the government. Employers often release their staff when projects end. Employees work outdoors in dirty and dangerous environments. Employers can train staff so they work in both Design and Maintenance.
Answer:
The answer is probably A.
Employees can work for themselves, big companies, or the government.
Explanation:
Answer:
The answer is A
Explanation:
I took the test on edgenuity
What phrase best describes the overall structure of the
passage
Answer: The one that gives you more vibe that its correct.
Explanation:
The one that you feel most strongly is accurate is the best describes the overall structure of the passage.
What is the structure of the passage?A passage's internal organizational pattern is defined by its text structure. The author's intent behind the text is supported by the text's structure. When determining the structure of a document, transitions—words or phrases that demonstrate how things are related—can be highly beneficial.
These five text structures—description, sequence, cause and effect, compare and contrast, and issue and solution—are taught in this lesson because they are frequently utilized in informational and nonfiction texts.
The table of contents, the index, headings, captions, bold words, illustrations, pictures, the glossary, labels, graphs, charts, and diagrams are some of the most frequent text elements in books.
Thus, he one that you feel most strongly is accurate.
For more information about structure of the passage, click here
https://brainly.com/question/23662376
#SPJ2
9
of
Thich
the following Controls the process of
system? 6) User interface (b) Language Translator
c) platform (d) Screen Saver
teraction between
Answer:
I'm sorry the answer is really difficult to understand, could you explain?
Explanation:
______ allows a thread to run on only one processor.
A) Processor affinity
B) Processor set
C) NUMA
D) Load balancing
Which of these are examples of a Single Sign-On (SSO) service?
A. Kerberos.
B. Relying Parties.
C. OpenID.
D. Tokens.
It should be noted that examples of a Single Sign-On (SSO) service are
Kerberos.OpenID.According to the question, we are to discuss the examples of Single Sign-On (SSO) service and how it works in term of the user experience.
As a result if this , we can explain Single sign-on (SSO) as session that is required when authentication service us been need by the user, it helps the user have one set of login credentials
Therefore, examples of a Single Sign-On (SSO) service is OpenID.
Learn more about Single Sign-On (SSO) service at;
https://brainly.com/question/13171394
List at least three kinds of information stored in a computer.
Answer:
1)Numbers
2)Text
3) Graphics
Explanation:
three kinds of information stored in a computer are
1)Numbers
2)Text
3)Graphics
An operating system is an example of _______. The hard drive, keyboard and monitor are example of_______.
Answer:
Software
Hardware
Explanation:
Which two statements are true about the Data Sync functionality? (Choose two.)
A. Data Sync can create and manage surrogate keys in target tables.
B. Data Sync is the only mechanism available in Oracle Analytics Cloud Standard Edition for loading data into DBaaS tables.
C. To manage extractions and loads from cloud-based sources, Data Sync can invoke the REST APIs of the Oracle Database Cloud Service as well as the Oracle
D. Data Sync cannot load incremental source insertions and updates; only full refresh loads are supported.
B and C are the correct answers
The statements 'Data Sync can create and manage surrogate keys in target tables' and 'Data Sync can invoke the REST APIs of the Oracle Database Cloud Service as well as the Oracle' are TRUE (Option A and C).
Data synchronization (Data Sync) refers to the process of synchronizing data between different devices, as well as the automatic update of the changes.Oracle database cloud service refers to a cloud category that reaps the advantages of Platform as a Service (e.g., subscription-based services, self-service access to different elastic and reliable cloud environments, etc).This service (Oracle Database Cloud Service) can support different Oracle database versions.In conclusion, the statements 'Data Sync can create and manage surrogate keys in target tables' and 'Data Sync can invoke the REST APIs of the Oracle Database Cloud Service as well as the Oracle' are TRUE (Option A and C).
Learn more in:
https://brainly.com/question/22982136
declare a variable to store 1009.87 in computer
Answer: float n1=1009.87;
hope this helps
plz mark brainleist
Define foreign key. What is this concept used for?
Answer and Explanation:
The foreign key is a column that has been linked in a relational database such as mysql to a primary key in another table. We use the foreign key to show a relationship between 2 tables or more. Out of these two tables, one would have the primary key and another the foreign key. For these keys to be linked, any value that is in each of the foreign and primary keys must match.
Words or symbols that help you narrow down your search are called:
a) search tools
b) filters
c)
search operators
d) hashtags
Answer:
c) search operators
Explanation:
Words or symbols that help you narrow down your search are called search operators. This ultimately implies that, search operators are commands and special characters (words or symbols) which help users to filter and refine their search engine results by making the search more precise and specific in nature. Thus, search operators only provide search engine results that are relevant to what a user is searching for or it narrow down the focus of a search.
Hence, search operators comprises of commands and special characters (words or symbols) such as AND, OR, NOT, "", -, +, *, .., :, etc used for narrowing down search engine results.
For instance, typing "file.mp3" in a search engine would only present results that are in mp3 formats.