Pls awnser if awnser is wrong I will unmark brainliest

Pls Awnser If Awnser Is Wrong I Will Unmark Brainliest

Answers

Answer 1

Answer: i think 1, 3, and 4

Explanation:


Related Questions

Define the meaning of software quality and detail the factors which affects the quality not productivity of a software product?

Answers

Answer:

Quality of software may be defined as the need of function and Efficiency. ... A number of factors are given below which gives the effects on quality and production capacity.

Software quality is known to be the method that tells the desirable characteristics of software products.

What are the Software Quality Factors that affects it?

The factors that influence software are;

CorrectnessReliabilityEfficiencyUsability, etc.

Therefore, Software quality is known to be the method that tells the desirable characteristics of software products.

Learn more about software quality from

https://brainly.com/question/13262395

#SPJ2

Assume that you have 22 slices of pizza and 7 friends that are going to share it (you've already eaten). There's been some arguments among your friends, so you've decided to only give people whole slices. Write a Python expression with the values 22 and 7 that calculates the number of whole slices each person would receive and assigns the result to numberOfWholeSlices.

Answers

Answer:

In Python:

numberOfWholeSlices = int(22/7)

print(numberOfWholeSlices )

Explanation:

For each friend to get a whole number of slices, we need to make use of the int function to get the integer result when the number of slices is divided by the number of people.

So, the number of slice is: 22/7

In python, the expression when assigned to numberOfWholeSlices  is:

numberOfWholeSlices = int(22/7)

Next, is to print the calculated number of slices

print(numberOfWholeSlices )

Following are the python program to the given question:

Program Explanation:

Defining a variable "numberOfWholeSlices". Inside this variable, it divides the integer value and holds the quotient part, and holds only the integer part by using the int method.In the next step, it uses the print method that prints the quotient value holding variable.

Program:

numberOfWholeSlices = int(22/7)#defining a variable "numberOfWholeSlices"

#dividing the integer value and holds the quotient value part and convert the value into integer

print(numberOfWholeSlices )#print the quotient value

'''OR'''

numberOfWholeSlices = 22//7#defining a variable "numberOfWholeSlices" that claculates and hold the quotient value integer part

print(numberOfWholeSlices )#print the quotient value

Output:

Please find the attached file.

Learn more:

brainly.com/question/712334

Your supervisor has asked you to make a presentation to a group of new interns about appropriate digital communication in the workplace. Which of these keywords should you research?

A netiquette

B project management

C emojis

Answers

Answer: Netiquette

Explanation:

The keywords that'll be researched is netiquette. Netiquette, is simply made up of the words "net"which and also “etiquette,” and it has to do with appropriate behavior that are used online when communicating with someone. These importance of such rules are to enhance communication skills.

Some of the rules include the use of respectful language, large files should not be emailed but rather compressed, people's privacy should be respected etc

Declare and implement a function called gameOver.gameOver receives a single 3x3 char[] [] array as a parameter, representing a tic-tac-toe board, with each cell containing either a X, a 0, or a (blank space). gameOver should return x if x has won the game, o ifo has won the game, and a blank space (' ') otherwise. Do not check the diagonals!

Answers

Answer:

The function in C++ is as follows:

char gameOver(char arr[][3]){

   char winner = ' ';

   if((arr[0][0] == 'X' && arr[0][1] == 'X' && arr[0][2] == 'X') ||(arr[1][0] == 'X' && arr[1][1] == 'X' && arr[1][2] == 'X') || (arr[2][0] == 'X' && arr[2][1] == 'X' && arr[2][2] == 'X')||(arr[0][0] == 'X' && arr[1][0] == 'X' && arr[2][0] == 'X') ||(arr[0][1] == 'X' && arr[1][1] == 'X' && arr[2][1] == 'X') || (arr[0][2] == 'X' && arr[1][2] == 'X' && arr[2][2] == 'X')){

       winner = 'X';

   }

   else if((arr[0][0] == 'O' && arr[0][1] == 'O' && arr[0][2] == 'O') ||(arr[1][0] == 'O' && arr[1][1] == 'O' && arr[1][2] == 'O') || (arr[2][0] == 'O' && arr[2][1] == 'O' && arr[2][2] == 'O')||(arr[0][0] == 'O' && arr[1][0] == 'O' && arr[2][0] == 'O') ||(arr[0][1] == 'O' && arr[1][1] == 'O' && arr[2][1] == 'O') || (arr[0][2] == 'O' && arr[1][2] == 'O' && arr[2][2] == 'O')){

       winner = 'O';

   }

   return winner;

}

Explanation:

The function checks for the winning character by checking for matching rows and matching columns.

When either X or O fall in the any of the following 6 conditions , then that character (X or O) wins.

The position are:

Rows: (1) 00, 01 and 02 (2) 10, 11 and 12 (3) 20, 21 and 22

Columns: (4) 00, 10 and 20 (5) 01, 11 and 21 (6) 02, 12 and 22

So, the explanation is:

This defines the function gameOver

char gameOver(char arr[][3]){

This initializes winner to blank space

   char winner = ' ';

If any of the condition stated above matches X, then X wins

   if((arr[0][0] == 'X' && arr[0][1] == 'X' && arr[0][2] == 'X') ||(arr[1][0] == 'X' && arr[1][1] == 'X' && arr[1][2] == 'X') || (arr[2][0] == 'X' && arr[2][1] == 'X' && arr[2][2] == 'X')||(arr[0][0] == 'X' && arr[1][0] == 'X' && arr[2][0] == 'X') ||(arr[0][1] == 'X' && arr[1][1] == 'X' && arr[2][1] == 'X') || (arr[0][2] == 'X' && arr[1][2] == 'X' && arr[2][2] == 'X')){

       winner = 'X';

   }

If otherwise that it matches O, then O wins

   else if((arr[0][0] == 'O' && arr[0][1] == 'O' && arr[0][2] == 'O') ||(arr[1][0] == 'O' && arr[1][1] == 'O' && arr[1][2] == 'O') || (arr[2][0] == 'O' && arr[2][1] == 'O' && arr[2][2] == 'O')||(arr[0][0] == 'O' && arr[1][0] == 'O' && arr[2][0] == 'O') ||(arr[0][1] == 'O' && arr[1][1] == 'O' && arr[2][1] == 'O') || (arr[0][2] == 'O' && arr[1][2] == 'O' && arr[2][2] == 'O')){

       winner = 'O';

   }

This returns the winner (either O, X or blank)

   return winner;

See attachment for complete program which includes the main

What devices do not form part of the main components of a computer but can be attached to function effectively?

Answers

Answer:

Peripherals are a generic name for any device external to a computer, but still normally associated with its extended functionality. The purpose of peripherals is to extend and enhance what a computer is capable of doing without modifying the core components of the system. A printer is a good example of a peripheral.

Explanation:

Let us say numbers.txt contains the sequence of numbers from 1 to 10000, like this:
1
2
3
4
Each of the following 2 commands should output the following 4 lines. Complete the commands with correct values to make it happen!
4377
4378
4379
4380
head - numbers.txt | tail -
tail - numbers.txt | head -

Answers

Answer:

Follows are the solution to this question:

Explanation:

head | tail -n 4380 in the numbers.txt

This will take first 4380 lines head -n 4380

tail -n 4 takes out the last 4 lines

tail -n + 4377.txt | head -n 4 -n

tail -n + 4377 requires all 4377 lines

head -n 4 cuts out first four lines

that's why the final answer is "4380, 4 5624,4".

Security attacks are classified as either passive or aggressive. True or false

Answers

Answer:

false is the answer okkkkkkkkkkkkkkkk

help me in computer

no spam i will report wrong answer​

Answers

In the computar process it has to be done in a blind fold

.............................................is the vertical distance between successive lines of the text​

Answers

Answer:

Line spacing is the vertical distance between successive lines of the text​.

Explanation:

Hope this helps you. :)

Suppose that an intermixed sequence of push and pop operations are performed on a LIFO stack. The pushes push the numbers 0 through 9 in order; the pops print out the return value. For example"push(0); pop(); push(1)" and "push(0); push(1); pop()" are possible, but "push(1); push(0); pop()" is not possible, because 1 and 0 are out of order. Which of the following output sequence(s) could occur? Select all that are possible.
a) 12543 609 8 7 0
b) 01564 37928
c) 6543210789
d) 02416 75983
e) 46 8 75 32 901

Answers

Answer:

b) 01564 37928

e) 26 8 75 32 901

Explanation:

Pushes and pulls are the computer operations which enable the user to perform numerical tasks. The input commands are interpreted by the computer software and these tasks are converted into numeric values to generate output.

Because of the internet, travel agents now focus more on computers than they do on customer relationships.


True

False

Answers

Answer:

true

Explanation:

there are a lot of easier ways to access clients through computers with the internet.

True is the right answer

It's important to understand that even information systems that do not use computers
have a software resource component. State the two (2) types of software resources
with an example for each type to support your answers.

Answers

Answer:

yes I am not sure if you have any questions or concerns please visit the plug-in settings to determine how attachments are handled the situation in the measurements of the season my dear friend I am not sure if you can send you a great day to day basis of

How does Kelvin inspire other

people?

He shows that it's easy to meet an

important leader of a country

He shows that anyone can succeed in

the music business.

He shows that studying engineering

leads to good jobs.

He shows that hard work and creative

thinking can solve problems.

Answers

Answer:

hard work and creative thinking can solve all problomes

Explanation:

Answer:

hard work

Explanation:

Your first submission for the CIS 210 Course Project should include the following functionality: - Requests the user to input his/her first name - Formats the name to capitalize the first letter and makes all remaining characters lowercase, removing any spaces or special characters - Output the formatted name to the console

Answers

Answer:

In Java:

import java.util.*;

public class Main{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 String name;

 System.out.print("First name: ");

 name = input.next();

 name= name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();

 System.out.print(name);

}

}

Explanation:

This declares name as string

 String name;

This prompts the user for first name

 System.out.print("First name: ");

This gets the name from the user

 name = input.next();

This capitalizes the first letter of name and makes the other letters to be in lowercase

 name= name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();

This prints the formatted name

 System.out.print(name);

Type the correct answer in the box. Spell all words correctly.
Graphic designers can compress files in different formats. One of the formats ensures that the quality and details of the image are not lost when the graphic designer saves the file. Which file format is this?
The _______file format ensures that images don’t lose their quality and details when graphic designers save them.

Answers

Answer: TIFF

Explanation:

Tag Image File Format (TIFF) is the go to file format when one needs to store their image without worrying about it losing its quality and details. This is why TIFF images do not become smaller when compressed because they aim to save the quality of the work.

One has access to options such as tags and transparency on TIFF and it can be used on Photoshop as well as for things like desktop publishing and faxing.

Answer:

The lossless file format ensures that images don’t lose their quality and details when photographers save them.

Explanation:

Who manages the team’s work during a sprint?
a) Scrum master manages the people so they can complete the work
b) The team manages the work by self organization
c) Product owner manages the work
d) Delivery manger manages the work

Answers

Answer:

d) delivery manger manages the work

Explanation:

sana po makatulong ako daghay salamat sayo emo

Write a function longer_string() with two string input parameters that returns the string that has more characters in it. If the strings are the same size, return the string that occurs later according to the dictionary order. Use the function in a program that takes two string inputs, and outputs the string that is longer.

Answers

Answer:

Here you go :)

Explanation:

Change this to your liking:

def longer_string(s1, s2):

   if len(s1) > len(s2):

       return s1

   elif len(s1) < len(s2):

       return s2

   else:

       return s2

x = input("Enter string 1: ")

y = input("Enter string 2: ")

print(longer_string(x, y))

How can we display outputs of DIR one screenful at a time? There are at least two different ways, and either one is acceptable.

Answers

Answer:

DIR has a /p option to paginate any output.

dir /p

Will give you one screen length at a time.

I believe you can use that simultaneously with /w if you want to fit more file names on the screen, at the loss of additional data like file size, type, etc.

10. Select the correct answer.
Thomas has signed a deal with a production house that allows them to use his images on their website. What is required that permits the usage of images for commercial or editorial purposes?
A.
copyright
B.
licensing
C.
permit
D.
public domain
E.
fair use

Answers

b) licensing because they are giving Thomas permission to use the images
B is the correct answer .!!!!!

From which of the following locations can you run a single line of the program?
Manual Movement dialog box
RoboCell toolbar
Program toolbar
Run menu
I’m in manufacturing and I don’t like this class it has nothing to do with what I wanna do so can someone help please

Answers

RoboCell toolbar and Run menu

What is the algorithm to determine the absolute of a number

Answers

This was written in python, let me know if it needs to be in another language.

Answer:

Conditionals are slower than plain arithmetic operations, but much, much faster than something as silly as calculating the square root

Explanation:

integer or bitwise op: 1 cycle floating -point add/ sub/mul: 4 cycles . Floating- point div ~ 30 cycles Floating - point exponentiation :~ 60 cycles depending on implementation Conditional branch : avg. 10_ cycles, better if well- predicted , much worse if mispredicted.

Write an algorithm to show whether a given number is even or odd.

Answers

Answer:

int num = Console.ReadInt("Please enter a number");

if(num%2 == 0) {

Console.WriteLine("Number is even");

} else {

Console.WriteLine("Number is odd");

Explanation:

Your goal is to write a JAVA program that will ask the user for a long string and then a substring of that long string. The program then will report information on the long string and the substring. Finally it will prompt the user for a replacement string and show what the long string would be with the substring replaced by the replacement string. Each of the lines below can be produced by using one or more String methods - look to the String method slides on the course website to help you with this project.
A few sample transcripts of your code at work are below - remember that your code should end with a newline as in the textbook examples and should produce these transcripts exactly if given the same input. Portions in bold indicate where the user has input a value.
One run of your program might look like this:
Enter a long string: The quick brown fox jumped over the lazy dog
Enter a substring: jumped
Length of your string: 44
Length of your substring: 6
Starting position of your substring: 20
String before your substring: The quick brown fox
String after your substring: over the lazy dog
Enter a position between 0 and 43: 18
The character at position 18 is x
Enter a replacement string: leaped
Your new string is: The quick brown fox leaped over the lazy dog
Goodbye!
A second run with different user input might look like this:
Enter a long string: Friends, Romans, countrymen, lend me your ears
Enter a substring: try
Length of your string: 46
Length of your substring: 3
Starting position of your substring: 21
String before your substring: Friends, Romans, coun
String after your substring: men, lend me your ears
Enter a position between 0 and 45: 21
The character at position 21 is t
Enter a replacement string: catch
Your new string is: Friends, Romans, councatchmen, lend me your ears
Goodbye!

Answers

Answer:

In  Java:

import java.util.*;

public class Main{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 String longstring, substring;

 System.out.print("Enter a long string: ");

 longstring = input.nextLine();

 System.out.print("Enter a substring: ");

 substring = input.nextLine();

 

 System.out.println("Length of your string: "+longstring.length());

 System.out.println("Length of your substring: "+substring.length());

 System.out.println("Starting position of your substring: "+longstring.indexOf(substring));

 

 String before = longstring.substring(0, longstring.indexOf(substring));

 System.out.println("String before your substring: "+before);

 

 String after = longstring.substring(longstring.indexOf(substring) + substring.length());

 System.out.println("String after your substring: "+after);

 

 System.out.print("Enter a position between 0 and "+(longstring.length()-1)+": ");

 int pos;

 pos = input.nextInt();

 System.out.println("The character at position "+pos+" is: "+longstring.charAt(pos));

 

 System.out.print("Enter a replacement string: ");

 String repl;

 repl = input.nextLine();

 

 System.out.println("Your new string is: "+longstring.replace(substring, repl));

 System.out.println("Goodbye!");

}

}

Explanation:

Because of the length of the explanation; I've added the explanation as an attachment where I used comments to explain the lines

In this exercise we have to use the knowledge of the JAVA language to write the code, so we have to:

The code is in the attached photo.

So to make it easier the JAVA code can be found at:

import java.util.*;

public class Main{

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

String longstring, substring;

System.out.print("Enter a long string: ");

longstring = input.nextLine();

System.out.print("Enter a substring: ");

substring = input.nextLine();

System.out.println("Length of your string: "+longstring.length());

System.out.println("Length of your substring: "+substring.length());

System.out.println("Starting position of your substring: "+longstring.indexOf(substring));

String before = longstring.substring(0, longstring.indexOf(substring));

System.out.println("String before your substring: "+before);

String after = longstring.substring(longstring.indexOf(substring) + substring.length());

System.out.println("String after your substring: "+after);

System.out.print("Enter a position between 0 and "+(longstring.length()-1)+": ");

int pos;

pos = input.nextInt();

System.out.println("The character at position "+pos+" is: "+longstring.charAt(pos));

System.out.print("Enter a replacement string: ");

String repl;

repl = input.nextLine();

System.out.println("Your new string is: "+longstring.replace(substring, repl));

System.out.println("Goodbye!");

}

}

See more about JAVA at brainly.com/question/2266606?

Mad Libs are activities that have a person provide various words, which are then used to complete a short story in unexpected (and hopefully funny) ways.
Write a program that takes a string and integer as input, and outputs a sentence using those items as below. The program repeats until the input string is quit.
Ex: If the input is:
apples 5
shoes 2
quito 0
the output is
Eating 5 apples a day keeps the doctor away.
Eating 2 shoes a day keeps the doctor away.
Note: This is a lab from a previous chapter that now requires the use of a loop. LB 334 1 LAB Mad Lib-loops main.cpp Load default template.
1 #include
2 #include
3 using namespace std;
4
5 int main()
6
7 {
8 return;
9
10

Answers

Answer:

Following are the code to this question:

#include <iostream>//header file

#include <string>//header file

using namespace std;

int main() //main method

{

   string item;//defining a string variable

   int n;//defining integer variable

   while(cin >>n >>item)//defining while loop to input value  

   {

       if(item == "quito" && n == 0)//use if block to check input value  

       {

           break;//use break keyword

       }

       cout << "Eating " << n << " " << item << " a day keeps the doctor away." << endl;//print input value with the message

   }

   return 0;

}

Output:

Please find the attached file.

Explanation:

In this code, inside the main method one string variable and one integer variable "item, n" is defined, that uses the while loop for input the value and uses the if block that checks string value is equal to "quito" and n value is equal to "0" it breaks the loop, and print the value with the message.

Where or what website can I download anime's? For free ​

Answers

https://todo-anime.com/

Consider the following statements: Statement A: In Duplex transmission, either node can transmit while the other node can receive data Statement B: In half-duplex transmission, both the nodes can transmit as well as receive data at the same time. Which of the following is true with respect to the above statements?

a. Both statements A and B are false
b. Statement A is false and statement B is true
c. Both statements A and B are true
d. Statement A is true and statement B is false

Answers

Answer:

d. Statement A is true and Statement B is false

Explanation:

Indeed, when using duplex transmission either node can transmit while the other node can receive data from the network. Also, in half-duplex transmission, both the nodes can transmit as well as receive data.

However, in half-duplex transmission, the nodes cannot transmit and receive data at the same time. Hence, this makes Statement B false, while Statement A is true.

9. Select the correct answer.
Jude has entered into an agreement with his client regarding the use of his images over a span of five years. They have agreed that the images will not be shared with any other clients. Which type of usage has Jude agreed to in this contract between himself and the client?
A.
non-exclusive
B.
exclusive
C.
fair use
D.
copyright
E.
statutory

Answers

Answer:

I believe the answer is exclusive but im not 100% sure

Answer:

The answer is choice B. Exclusive.

Explanation:

3. What workplace hazards can be found on picture A?

4-5. Describe the workplace A and B, What are their differences​

Answers

Answer:

Hakdog

Explanation:

kase hakdog ka kainin mo tite ko

Write a program to calculate the total price for car wash services. A base car was is $10. A dictionary with each additional service and the corresponding cost has been provided. Two additional services can be selected. A '-' signifies an additional service was not selected. Output all selected services along with the corresponding costs and then the total price for all car wash services.Ex: If the input is:Tire shineWaxthe output is:ZyCar WashBase car wash -- $10Tire shine -- $2Wax -- $3----Total price: $15Ex: If the input is:Rain repellent-the output is:ZyCar WashBase car wash -- $10Rain repellent -- $2----Total price: $12services = { 'Air freshener' : 1 , 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5 }base_wash = 10total = 0service_choice1 = input()service_choice2 = input()''' Type your code here '''

Answers

Answer:

Replace

''' Type your code here '''

with the following lines of code:

price1 = services[service_choice1]

price2 = 0

if not (service_choice2 == "-"):

   price2 = services[service_choice2]

total = base_wash + price1 + price2

print("Zycar Wash")

print("Base car wash: $"+str(base_wash))

print(service_choice1+str(": $")+str(price1))

print(service_choice2+str(": $")+str(price2))

print("Total price: $"+str(total))

Explanation:

The complete program with explanation is as follows:

The italicized lines were originally part of the question

services = { 'Air freshener' : 1 , 'Rain repellent': 2, 'Tire shine' : 2, 'Wax' : 3, 'Vacuum' : 5 }

base_wash = 10

total = 0

service_choice1 = input()

service_choice2 = input()

This line gets the price of service choice 1

price1 = services[service_choice1]

This line initialzes price of service choice 2 to 0

price2 = 0

If an additional service (i.e. service choice 2) is selected

if not (service_choice2 == "-"):

This line gets the price of service choice 2

   price2 = services[service_choice2]

This calculates the total price

total = base_wash + price1 + price2

This prints the header

print("Zycar Wash")

This prints the base car wash

print("Base car wash: $"+str(base_wash))

This prints the service choice 1

print(service_choice1+str(": $")+str(price1))

This prints the service choice 2

print(service_choice2+str(": $")+str(price2))

This prints the total

print("Total price: $"+str(total))

Which statement about creating a client request in quickbooks online accountant is false

Answers

Answer:

You can add attachments by selecting the + Add document link

The request is not sent to the client's email address unless the default setting is changed.

The request appears in the client's QuickBooks Online company in My Accountant

If you wish to notify your client of your request with a QuickBooks Online-generated email, select Notify client

Explanation:

The highlighted one is correct. Its QBO question.

Other Questions
Smoking can put smokers at risk for health problems, but smokers are also subject to social consequences. Write a short letter to a friend or family member, urging them to abstain from smoking, using the social and physical consequences of smoking as the support for your argument.GOT IT RIGHT ON EDGE2020Answer--------------------Dear Mom,I wanted to write you this letter and tell you that I really wish you would stop smoking. It is so bad for your health and can end up causing a ton of diseases that can kill you like it did grandma. It might be a routine to you or maybe you think it helps relieve stress.When you smoke you can get cancer in your lungs, your brain, and even in your uterus. It also makes your clothes and hair stink like smoke all the time. Not only you but also the people who are inhaling that smoke which may be termed as second-hand smoke. And because I am one of those people who is inhaling the secondhand smoke I am at risk for getting cancer too, This second-hand smoke has thousands of chemicals where seventy percent of them might cause cancer.There are other diseases which can be caused by smoking, for example, heart disease, lung cancer, respiratory system and cancer.So mom, please, I am begging you to really put yourself first and please stop smoking. We truly need to stay with you so you can be around when we start having kids and you can be a grandma,,,,Love,Your Son Please help worth a lot of pointsFull-time farmers in the United States and Canada differ from those in other parts of the world becauseA. their work is driven by technology.B. they produce crops primarily for selling.C. their farms are rarely family run.D. they do not allow farms to be left fallow.E. their products are for domestic use and export. I also really need help with this question. Based on this image, what is responsible for the pattern of ocean currents?differences in water densityEarth's rotationdifferences in water temperaturedifferences in water salinity What is 11 divided by 5 as a fraction Complete each sentence by writing an adverb on the line. The word in parentheses tells what kind of adverb to write. 1. My cat slept ____________________. (where) 2. Well go to Hawaii ____________________. (when) 3. We walked ____________________ down the street. (how) 4. The woman took her son ____________________. (where) 5. Jeremy spoke ____________________ to the class. (how) PLEASE HELP i need this fast i will give BRAINLIEST Brain boosters , breaking the internet . Can you solve ? If Teresa's daughter is my daughter's mother , what am I to Teresa ? a). Grand mother. b). Mother. c). Daughter. d). Grand daughter. e). l am Teresa. The particle in the atom with a negative charge is the ______Answer here The National Association of Manufacturers (NAM) is an example of what type of organization?Select one:a.agricultural groupb.labor groupc.trade associationd.professional association Which of the following statements best describes the relative amount of content held by digital libraries vs. the amount held by traditional libraries?Digital libraries have more access to fiction, while traditional libraries have more access to nonfiction and reference materials.Traditional libraries tend to have access to more information because they have been around longer.Digital libraries and traditional libraries both tend to have the same access to information.Digital libraries tend to have access to more information because they can share with other digital libraries. If you wanted to make sure a company has enough money available to pay its bills, which financial statement would be most helpful? A.Balance sheet B. Income statement C. Statement of owners' equity D. Cash flow statement Which expression would be easier to simplify if you used the associative property to change the grouping? O A. (170 + 30) 41 OB. 3+ (-3) OC. [(-0.1) + (-0.3)] + 2.4 o D. } + [(-5)+ Is it appropriate to say 'good morning' after 12:00 o'clock? what is the correct java syntax to output the sentence: My dog's name is "dee-dee"? how many solutions does x=-2 have Mariah Jacobsen is the marketing manager at ABC Electronics, a major consumer electronics supplier in the northwest. Over the last five years, sales of the company's flagship product - the Wizer Anonymizer (the WA) - have been 45000, 45500, 44500, 46000 and 44000 units. This rate of sales is considered average for the product over the last twenty years or so. Ms. Jacobsen believes that the distribution of the WA's sales is normal with a standard deviation of 1500 units. If she were asked to make a forecast of next year's sales to upper management, what is the likelihood that she would be correct if she predicts sales between 43000 and 46000? What is true about the inertia of two cars, Car A of mass 1,500 kilograms and Car B of mass 2,000 kilograms?OA.Car A and Car Bhave the same inertia.B.Car A has more inertia than Car B.Oc.Car Bhas more inertia than Car A.D.Both the cars have negligible inertia. How do you write 8.0 as a percentage? What type of reaction is _CaCO3 and H2