Is whistleblowing the same as reporting an unauthorized disclosure?
a. Classified info or controlled unclassifed info (CUI) in the public domain.
b. Improper Safeguarding
c. Prepublication Review
d. No, they use different reporing procedures.

Answers

Answer 1

No, various reporting methods are used to report an unlawful disclosure as well as a whistleblower.

Does reporting an unlawful disclosure count as whistleblowing?

No, they employ different reporing methods. All of the following, with the exception of classified information or controlled unclassified information (CUI), are covered by the Whistleblower Protection Enhancement Act (WPEA).

What constitutes a whistleblower?

If you report specific wrongdoings while working as an employee, you are a whistleblower. Usually, but not always, you've seen something like this at work. You must reveal misconduct that is beneficial to society. It must therefore have an impact on other people, such as the general public.

To know more about whistleblowing  visit:-

https://brainly.com/question/30228352

#SPJ4


Related Questions

Question 6 options: This is a category or partitioned group of the small units of a programming language include its numeric literals, operators, and special words.

Answers

Lexeme is a category or partitioned group of the small units of a programming language include its numeric literals, operators, and special words.

What is a lexeme in programming?

Lexemes are known to be those character strings that are put together from the character group of a program, and the token stands for what aspect of the program's grammar they are made of.

Hence, Lexeme is a category or partitioned group of the small units of a programming language include its numeric literals, operators, and special words.

Learn more about Lexeme from

https://brainly.com/question/14125370

#SPJ1

According to repko and szostak, what is the term that describes the disagreement among a discipline's practitioner's over the defining elements of the discipline?

Answers

According to repko and szostak,  the term that describes the disagreement among a discipline's practitioner's over the defining elements of the discipline is option D- Cognitive Discord.

What is the relationship between interdisciplinarity and the disciplines?

Based on the words of Quoting Jantsch, “Interdisciplinarity is known to be a well used axiomatics for a set of disciplines is seen at a higher level and  this concept is one that can be used to co-ordinate or handle the disciplines.”

Note that Mono or multi - interdisciplinarity is one that is aim at role or duties concerning one or a lot of concrete cases.

Hence, According to repko and szostak,  the term that describes the disagreement among a discipline's practitioner's over the defining elements of the discipline is option D- Cognitive Discord.

Learn more about disagreement from

https://brainly.com/question/955691

#SPJ1

See options below

A- Metanarrative

B- Perspective taking

C- Epistemic norms of a discipline

D- Cognitive Discord

Any factor that leads businesses to collectively expect lower rates of return on their investments ______ investment demand.

Answers

Answer:

Reduces investment demand

A JavaScript __________ runs when something calls it. a. Object b. Programming language c. Property d. JavaScript e. Function

Answers

Function, I think.

Hope it helps!

This question involves the creation and use of a spinner to generate random numbers in a game. a gamespinner object represents a spinner with a given number of sectors, all equal in size. the gamespinner class supports the following behaviors.

creating a new spinner with a specified number of sectors
spinning a spinner and reporting the result
reporting the length of the current run, the number of consecutive spins that are the same as the most recent spin

write the complete gamespinner class. your implementation must meet all specifications and conform to the example.

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that  generate random numbers in a game

Writting the code in JAVA:

public class GameSpinner {

int spinner;

int num;

int current;

public GameSpinner(int spinner) {

super();

this.spinner = spinner;

this.current = 0;

this.num = 0;

}

public int spin() {

int curr = 1 + (int) (Math.random() * spinner);

if (this.current == 0 || this.num == 0) {

this.current = 1;

this.num = curr;

return curr;

}

if (this.num == curr) {

this.current = this.current + 1;

return curr;

} else {

this.num = curr;

this.current = 1;

return curr;

}

}

public int currentRun() {

return this.current;

}

}

GameSpinnerTest.java

public class GameSpinnerTest {

public static void main(String[] args) {

// TODO Auto-generated method stub

GameSpinner g = new GameSpinner(4);

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.spin() : "+g.spin());

System.out.println("g.currentRun() : "+g.currentRun());

}

}

Output

g.currentRun() : 0

g.spin() : 1

g.currentRun() : 1

g.spin() : 4

g.currentRun() : 1

g.spin() : 4

g.currentRun() : 2

g.spin() : 3

g.currentRun() : 1

g.spin() : 3

g.spin() : 2

g.spin() : 2

g.currentRun() : 2

See more about JAVA at brainly.com/question/12975450

#SPJ1

When methods have ____, other programs and methods may use the methods to get access to the private data.

Answers

When methods have public access, other programs and methods may use the methods to get access to the private data.

What do you mean by public access?

The Definition of the term public access is known to be a kind of a television channel where anybody can be able to broadcast a program

An example is the city council meeting can be able to broadcast on public access.

Hence, When methods have public access, other programs and methods may use the methods to get access to the private data.

See full question below

When methods have ____, other programs and methods may use the methods to get access to the private data.

a. private access

b. public access

c. complete access

d. all access

Learn more about public access from

https://brainly.com/question/2736088

#SPJ1

In fedora 20, the logging system used to record the messages normally stored within the boot.log, messages, and syslog files has been replaced by a journaling database system called?

Answers

The logging system which has replaced the journaling database system for use in recording messages that are normally stored within the boot.log is Journald.

What is Journald?

Journald refers to a logging system service which allows for messages to be stored and does so in an easier way so that system administrators can find relevant and interesting information when they look through log messages.

In the past, these messages that Journald now stores would have been stored in boot.log, messages, and syslog files but thanks to Journald using the special file format which is made especially for log messages, this has changed.

Find out more on log messages at https://brainly.com/question/4595770?referrer=searchResults

#SPJ1

A coworker is exploring virtualization for some development projects, and is trying to decide between a bare metal hypervisor and a hosted one. Which of the following pieces of advice should you give

Answers

The pieces of advice that one should give are:

A hosted hypervisor will be easier to set up and maintain if you're new to virtualization.Bare metal hypervisors can run more VMs on the same hardware

What is virtualization?

Virtualization is one that depends on software so as to be able to simulate hardware functionality and make a kind of a virtual computer system.

Hence, The pieces of advice that one should give are:

A hosted hypervisor will be easier to set up and maintain if you're new to virtualization.Bare metal hypervisors can run more VMs on the same hardware

See full question below

A coworker is exploring virtualization for some development projects and is trying to decide between a bare metal hypervisor and a hosted one. Which of the following pieces of advice should you give? Choose all that apply

answer choices

A hosted hypervisor will be easier to set up and maintain if you're new to virtualization.

Bare metal hypervisors can run more VMs on the same hardware

You can run a bare metal hypervisor within your existing operating system.

Learn more about virtualization from

https://brainly.com/question/13204456

#SPJ1

Submit a report outlining the steps you will take to obtain digital evidence. In your report you must include the legal requirements, ethical considerations, and the digital sources you will be investigating in hopes of recovering data and collecting evidence to determine who was responsible for the data exfiltration.


For all assignments, remember the following important elements:

Proofread for spelling, grammar, and punctuation.
You may respond in bullet form for this project, but use standard written English. Do not use texting abbreviations or other similar shortcuts.

Answers

The steps you will take to obtain digital evidence.

One has to Respond First. Then a Search and Seizure is ordered.There is the Evidence Collection. There is the Securing of the Evidence. There is Data Acquisition stage.Then there is Data Analysis. Then there is Evidence Assessment. Then there is  Documentation and Reporting.The last is expert witness testimony.What is Digital evidence?

Digital evidence is known to be a kind of information that is often saved or transmitted in a method that uses binary form that can be relied on in case of court.

Note that it is one that can be found on a computer hard drive, a mobile device such as phone, among other means.

Hence, The steps you will take to obtain digital evidence.

One has to Respond First. Then a Search and Seizure is ordered.There is the Evidence Collection. There is the Securing of the Evidence. There is Data Acquisition stage.Then there is Data Analysis. Then there is Evidence Assessment. Then there is  Documentation and Reporting.The last is expert witness testimony.

Learn more about digital evidence from

https://brainly.com/question/18566188

#SPJ1

Joe has been issued a company-owned tablet. He finds that the performance decreases after a few hours of use. After he power-cycles the tablet, performance returns, but the tablet begins to slow again after an hour of use. Which of the following is the BEST action to troubleshoot the problem

Answers

The best  action to troubleshoot the problem is Airplane mode has been set on the tablet.

What does airplane mode do?

Airplane mode is known as “flight mode” as it is said to be a setting that can be seen on a  smartphone that temporarily hinders signals and Wi-Fi.

Note that The best  action to troubleshoot the problem is Airplane mode has been set on the tablet.

See options below

Which of the following is the MOST likely cause of this issue?

MAC filtering has been enabled on the branch office wireless access point.

Joe's tablet has been configured with full device encryption.

Airplane mode has been set on the tablet.

The connection between the branch office router and internet service provider is down.

Learn more about troubleshoot from

https://brainly.com/question/1382377

#SPJ1

One difference between a switch and a router is that a router will only process messages addressed to the router (at layer 2), while a switch processes all messages.

Answers

Answer: True

Explanation:

During the maintenance phase of the software development life cycle, the information system is ______

Answers

Design

Explanation:

After the maintenance phase, next you need to design or build the information system

During the maintenance phase of the software development , the information system is design.

What is software development?

Software development is the name given to a group of computer science tasks involved in developing, and maintaining software.

The set of instructions or programs that a computer follows are known as software. It makes computers programmable and is independent.

Operating systems, utilities, hardware management, and other fundamental operational functions are all provided by system software.

creating computer programs that provide code-writing tools including text editors, to programmers.

Therefore, During the maintenance phase of the software development life cycle, the information system is design.

To learn more about software, refer to the link:

https://brainly.com/question/1022352

#SPJ2

In the formula =VLOOKUP(“shovel”, B2:D12, 3, FALSE), which part is the lookup value parameter?

A.
shovel

B.
FALSE

C.
B2:D12

D.
3

Answers

In the formula =VLOOKUP(“shovel”, B2:D12, 3, FALSE), the part that is the lookup value parameter is B2:D12.

What are the parameters in VLOOKUP?

The VLOOKUP is known to often have four arguments:

lookup_value, table_array, column_index_num, range_lookup

This value is known to be a LOOKUP searches which is in an array. The lookup_value argument is one that be seen to be a  number, text, a logical value.

Note that If LOOKUP is one that did not see or find the value of lookup_value, it is said to often uses the largest value in the array that is known to be smaller than or one that is equal to lookup_value.

Hence, In the formula =VLOOKUP(“shovel”, B2:D12, 3, FALSE), the part that is the lookup value parameter is B2:D12.

Learn more about value parameter from

https://brainly.com/question/24076677

#SPJ1

what is the internet​

Answers

♨ANSWER♥

The Internet, sometimes called simply "the Net," is a worldwide system of computer networks -- a network of networks in which users at any one computer can, if they have permission, get information from any other computer

...hope this helps...

_♡_mashi_♡_

The internet is a worldwide computer network that transmits a variety of data and media across interconnected devices. It works by using a packet routing network that follows Internet Protocol (IP) and Transport Control Protocol (TCP).

A global computer network providing a variety of information and communication facilities, consisting of interconnected networks using standardized communication protocols.

______________________ refers to the real-time connection between a mobile device and other computing environments.

Answers

Answer:

Mobile Compunting refers to real time .... .

I HOPE IT HELP YOU

Class ____________ allow you to create one version of a class, without having to replicate code to handle multiple data types.

Answers

Class templates allow you to create one version of a class, without having to replicate code to handle multiple data types.

Answer:

Class templates allow you to create one version of a class, without having to replicate code to handle multiple data types.

Explanation:

A template is a general and already formatted standard that many people can use and customize on their own. For example, a PowerPoint template already has the font size, font, and background already picked, and you can put what you want on it.

An intern at an IT company provisioned a Linux based On-demand EC2 instance with per-second billing but terminated it within 30 seconds as he wanted to provision another instance type. What is the duration for which the instance would be charged

Answers

The duration for which the instance would be charged is known to be c. 60 seconds in regards to the (Billing and Pricing).

What are pricing models?

Pricing modeling is known to be the ways or the methods a person is able or can use to know the right price for a products or services.

Note that in the case above, since it involves billing and pricing, The duration for which the instance would be charged is known to be c. 60 seconds.

See options below

a. 600 seconds

b. 300 seconds

c. 60 seconds

d. 30 seconds

Learn more about billing from

https://brainly.com/question/24719924

#SPJ1

Which methods or commands provide access to superuser privileges for authorized users?

Answers

In Linux computer systems, the methods and commands that provide access to superuser privileges for authorized end users are:

The su command.Logging into the root account.The sudo command.

What is a Linux command?

A Linux command can be defined as a software program that is designed and developed to run on the command line, in order to enable an administrator (end user) of a Linux network perform both basic and advanced tasks by entering a line of text.

In Linux computer systems, some examples of the methods and commands that provide access to superuser privileges for authorized administrators (end users) include the following:

The su command.Logging into the root account.The sudo command.

Read more on Linux commands here: brainly.com/question/25480553

#SPJ1

To create a datasheet that lists all herbs that are Perennials, Jorge will create a new query. The Perennial field has a data type of Yes/No. Which criterion should Jorge use in the query for the Perennial field

Answers

The criterion that Jorge should use in the query for the Perennial field is Yes

What is a Datasheet?

This refers to the document that summarizes the product specifications and other necessary details of the project.

Hence, we can see that Jorge has created a database for the herb garden he is planting this spring.

The fields in the database include Plant Name, When to Plant, Amount of Sun, Annual, and Perennial.

Therefore, the criterion that Jorge should use in the query for the Perennial field is Yes

Read more about datasheets here:

https://brainly.com/question/27362402

#SPJ1

In the case above, to create a datasheet that lists all herbs that are Perennials, Jorge will create a new query. The Perennial field has a data type of Yes.

What means datasheet?

A datasheet is known to be a kind of a document that is known to be often printed or electronic that gives a kind of a details in regards to a product, such as a computer, computer component, and others.

Note that  the datasheet is made up information that can be used to be able to make a buying decision about a product or services by giving technical specifications in regards to the product.

Hence the response is yes, In the case above, to create a datasheet that lists all herbs that are Perennials, Jorge will create a new query. The Perennial field has a data type of Yes.

See full question below

Jorge has created a database for the herb garden he is planting this spring. Fields in the database include: Plant Name, When to Plant, Amount of Sun, Annual, and Perennial. He needs to answer the following questions using his database.Which plants need full sun?Which plants are Perennials? To create a datasheet that lists all herbs that are Perennials, Jorge will create a new query. The Perennial field has a data type of Yes/No. Which criterion should Jorge use in the query for the Perennial field?

Learn more about Perennial field from

https://brainly.com/question/9465492

#SPJ1

HELPPPP MEEEE!!!!! ITS LIFE OR MUERTEEE
The author uses the text structure of ____

a. problem and solution

b. cause and effect

c.compare and contrast

d.sequence of events

to show that _____

a.navigators

b.muliple signals

c. electromagnetic traps

d. quartx crystal oscillators

Answers

The author uses the text structure of compare and contrast to show multiple signals.

What is Text structures?

This is a term that connote the method used by authors to put together information in text.

Note that in the case above, The author uses the text structure of compare and contrast to show multiple signals.

Learn more about text structure from

https://brainly.com/question/12053427

#SPJ1

Create a round object to hang in your window that will touch the midpoints of all four edges of your window

Answers

The round object that can touch the midpoints of all four edges of a window is illustrated by a circle with dimensions.(x-h)² + (y-k)² = r².

What is a midpoint?

It should be noted that a midpoint is a point that is lying between two points and is in the middle of the line joining the two points.

Based on the information given, the center is (h,k) and tthe radius = r.

Top of the circle = (h,r+k) = midpoint of the window's top

The circle's bottom = (h,k-r)=midpoint of the window bottom

The left edge of the circle = (h-r, k)=midpoint of the window's left side

The right edge of the circle = (h+r, k)= midpoint of the window's right side

The window square is illustrated as 2r by 2r and its vertices are (h-r, r+k), (h+r, r+k), (h-r, r-k),  (h+r, r-k).

Learn more about midpoint on:

https://brainly.com/question/5566419

#SPJ1

_______________ is a technology system requiring the driver to maintain constant control of the vehicle.

Answers

The technology system requiring the driver to maintain constant control of the vehicle are:

 Forward collision avoidance Automatic emergency braking Lane keeping assist

What is technology?

Technology can be regarded as the application of science to bring improvement to mankind at large.

It should be noted that The technology system requiring the driver to maintain constant control of the vehicle includes  Forward collision avoidance as well as Automatic emergency braking and Lane keeping assist .

Learn more about technology  on:

https://brainly.com/question/25110079

#SPJ1

If a user has a low level of digital literacy, what might they have trouble interpreting?

Answers

If a user has a low level of digital literacy,  they might have trouble interpreting:

Calls to action IconsDesign patterns

What is digital literacy?

Digital literacy  can be regarded as the  an individual's ability in finding the evaluation, and communication of  information through typing and other media on various digital platforms.

It can be evaluated with  individual's grammar as well as the composition and  typing skills and ability to produce text, with technology.

It should be noted that If a user has a low level of digital literacy,  they might have trouble interpreting Calls to action and  Icons and Design patterns.

Learn more aboutdigital literacy at:

https://brainly.com/question/14242512

#SPJ1

COMPLETE QUESTION:

If a user has a low level of digital literacy, what might they have trouble interpreting? Select all that apply.

a. Calls to action

b. Words

c. Icons

d. Design patterns

The residual volume can be measured directly with: Select an answer and submit. For keyboard navigation, use the up/down arrow keys to select an answer. a digital spirometer b wet spirometer c both digital and wet spirometers d it can not be measured directly

Answers

The residual volume can not be measured directly.

How is residual volume measured?

Residual volume is known to be measured by what we call a gas dilution test.

Note that this test often  measures how the concentration of the gases in the container changes.

What is residual volume?

This is known to be the Volume of air that is left over after a FORCED EXPIRATION. Note that it is one that cannot be measured by a spirometer.

Hence, The residual volume can not be measured directly.

Learn more about residual volume from

https://brainly.com/question/12897209

#SPJ1

Developers found a "time of check to time of use" (TOCTTOU) vulnerability in their application. The vulnerability made it possible to change temporary data created within the app before the app uses the data later. This vulnerability is taking advantage of what process in the application?

Answers

This vulnerability above is taking advantage of the race condition process in the application.

What is race condition?

This race condition is said to be in the critical section or one that is a part of the program and it is a place where shared memory is accessed and it is concurrently worked on or executed by two or more threads.

Hence,  This vulnerability above is taking advantage of the race condition process in the application.

Learn more about race condition from

https://brainly.com/question/13445523

#SPJ2

Today, the standard term for placing telephone calls over the Internet or any other type of data network is ____.

Answers

Answer:

VOIP (voice over internet protocol )

Identify the numbered parts and accessories of a desktop computer. Include an indefinite article with each response

Answers

The numbered parts of the desktop in the image are;

Monitorlogic boardProcessor ChipRAM ChipFloppy DiskPower UnitDVD DriveHard DriveKeyboardMouse

What is a desktop computer?

A desktop computer is a piece of personal technology intended to sit on top of an ordinary office desk.

It links to input devices like the monitor, keyboard, and mouse that users use to interact with a computer's actual hardware.

Learn more about desktop computers:
https://brainly.com/question/26671214
#SPJ1

A customer is trying to configure an 802.11b wireless card in an old laptop to connect to an 802.11g wireless router. When the customer scans for the wireless network's SSID (Dion-Corp), it is not displayed within Windows. What is the MOST likely reason that the SSID is not being displayed

Answers

In the case above, the most likely reason that the SSID is not being displayed is that The broadcast is disabled on the wireless router.

What is disable broadcast in Wi-Fi?

The term broadcasts is known to be any medium that is often used by organization to share a program.

Note that the act of Disabling the SSID Broadcast is said to  be one of the method of securing a wireless network.

Note also that this procedure will hinder other users from getting or detecting your SSID or one's wireless network name if they ever attempt to see the available wireless networks in one's area.

Therefore, In the case above, the most likely reason that the SSID is not being displayed is that The broadcast is disabled on the wireless router.

Learn more about wireless router from

https://brainly.com/question/9362673

#SPJ1

See full question below

A customer is trying to configure an 802.11b wireless card in an old laptop to connect to an 802.11g wireless router. When the customer scans for the wireless network's SSID (Dion-Corp), it is not displayed within Windows. What is the MOST likely reason that the SSID is not being displayed?

Options are :

802.11g and 802.11b use different frequencies

The wireless router is not configured for DHCP support

The broadcast is disabled on the wireless router

The wireless router is configured with WPA2 encryption

Question 3 Fill in the blank: Curiosity, understanding context, having a technical mindset, data design, and data strategy are _____. They enable data analysts to solve problems using facts.

Answers

Curiosity, understanding context, having a technical mindset, data design, and data strategy are data driven.

What are data driven skills?

Data-driven decision-making is known to be one that entails the five analytical skills which are:

curiosity, understanding context, having a technical mindset, data design, data strategy.

Hence,  Curiosity, understanding context, having a technical mindset, data design, and data strategy are data driven.

Learn more about Curiosity from

https://brainly.com/question/4975503

#SPJ1

Write a python program that prompts the user to enter 20 numbers, and then calculates and displays the sum of the positive ones.

Coding Assignment

Answers

123456789101112131415161818102

Explanation:

h

The Python program that prompts the user to enter 20 numbers and calculates the sum of the positive ones is given below.

We have,

The Python program that prompts the user to enter 20 numbers and calculates the sum of the positive ones:

def main():

   num_count = 20

   positive_sum = 0

   for i in range(num_count):

       try:

           num = float(input(f"Enter number {i+1}: "))

           if num > 0:

               positive_sum += num

       except ValueError:

           print("Invalid input! Please enter a valid number.")

   print("Sum of positive numbers:", positive_sum)

if __name__ == "__main__":

   main()

In this program, we define a function main() that runs the main logic.

It uses a for loop to prompt the user to enter 20 numbers.

Each input is converted to a floating-point number using float(), and if the number is positive (greater than 0), it adds it to the positive_sum variable.

The program then prints the sum of the positive numbers after all inputs are processed.

Thus,

The Python program is given above.

Learn more about Python programs here:

https://brainly.com/question/32674011

#SPJ3

Other Questions
THIS IS IREADY PLEASE HELP RIGHT ANSWER (Only)1. What section of park is located at 7,0? A. Duck pound B. Gardens C. Bike trail D. parking lot. SOLVING THE SYSTEM BY ELIMINATION Cules son los gestos, las posturas y los movimientos que realizamos enuna ceremonia civica? Heather made 4 identical necklaces, each having beads and a pendant. The total cost of the beads and pendants for all 4 necklaces was $23.60. If the beadscost a total of $12.40, how much did each pendant cost? Which are perfect cubes? Check all that apply.64x168x327x481x6125x9and pls tell me how to find a perfect cube i will mark brainlyesr Plz help I dont get this Why is a health care social worker more suited to helping a patient during hospital discharge than a doctor? health care social worker has specific training in psychology and sociology that a doctor does not have. A doctor is trained to treat the physical and mental states of a patient. While some doctors are also trained in psychology and sociology, health care social workers have advanced training in those fields and can assist persons in the adjustments out of a hospital. 1. Write your own poem, exploring what you would miss the most if you suddenly went blind.2. Requirements:- at least 12 lines- no line may be shorter than 5 words- must have an interesting title- must use figurative and literal language- must use at least one idiom (and use it correctly!)- must use school appropriate academic language and proper spelling Alguien me podra ayudar con ingls? por favor...Trata sobre Verbs modal HAVE TO/MUSTI ____ to go to the supermarket everyday.I ____ study more to get a better grade.She ____ more somewhere else, she doesn't like de townHe ____ quit cooking classes, he is such a bad Cook.You ____ know about de rules of the game.We ____ smoke hereKaren ____ forget about her trip next weekStudents ____ practice exercises many times to get good at learning a language. What is the solution to 5x-2 menton esuna palabra grabe o aguda A box contains 6 red marbles, 4 green marbles, 3 blue marbles, and 2 yellow marbles. If Greg chooses one marble at random 300 times, how many times would he expect the marble to be blue? What element has the following Electron Configuration? The speech suggests that JFK'spersonality wasA. philosophical and relaxed.B. sensitive and thoughtful.C. benign and mild-mannered.D. valorous and challenging. Select whether each system of equations has no solution, one solution, or infinitely many solutions.No SolutionOne SolutionInfinitely Many Solutions60I + 2y23 --2642 2y = -6y = 2.c 4O-.2.0y = 462 3y = 12 The temperature is 3.4 degrees Celsius. The temperature goes down 7.9 by degrees. What is the new temperature? pls help me its due in 10 Help pls sue before midnight La palabra tambin se llama [tex]simplify \sqrt{21 - 20i} [/tex] 17. After WW1, why was Germany upset with the outcome of the Treaty ofVersailles? *Because the treat didn't give Germany as much territory as they wanted after winningthe war.Germany felt that they should have been required to pay more reparations to theallies.Germany wanted to save money so they wanted more of their military abolished.Germany was devastated by the reparations, limits on military size, and they wereforced to sign the "War Guilt Clause."