CRM systems provide an organization with an important element: all employees of the company who directly or indirectly serve a customer are "____."
in the same category
in the same department
in the same division
on the same page

Answers

Answer 1

Answer: On the same page

Explanation:

 The CRM is basically stand for the customer relationship management that are design to support all the relationship with the customers. It basically analysis the data about the customers to improve the relationship and growth in the organization.

All the employees in the organization are directly and indirectly server the customers are basically o the Same page by the individual computers.

The CRM approach are basically compile the given data from the different communication source such as company website, email and telephone.

 


Related Questions

If (41)r = (21)10, determine the value of the radix r.

Answers

Answer:

r=5.

Explanation:

Since we know we can convert a a number with any base to base ten(10) by multiplying the corresponding powers of the base.Stating form the LSB(Least Significant Bit) and with the power 0 and the power will increase by 1 as we move to MSB(Most Significant Bit).

[tex]4*r^1+1*r^0 = 21[/tex]

[tex]4r = 21 -1[/tex]

[tex]4r=20[/tex]

[tex]r=5[/tex]

_______For the C programming language, files containing the code you write are named with a file extension of .g. (T/F)

Answers

Answer:

False.

Explanation:

In C programming language the file which containing the code that we are writing the code is have the file extension .c and for c++ it is .cpp.  C programming language is a general purpose procedural computer programming language.

.g file extension is for data chart file format used by APPLAUSE database development software.

Hence the answer to this question is false.

Define the keywords final and static.

Answers

Answer:

Final Keyword:-It is defined in the class that has the property of non-inheritance and can declare the constant variables. It has no re-initialization function.At the time of the final declaration,it is required that the variable should be initialized.

Static Keyword:-It is used in a particular class for defining it's member so that it can used for any object of the class.Static method in a class can call this keyword. It can has the property of being re-initialized.

What Will Social Media Look Like in the Future?

Answers

Final answer:

Social media in the future is likely to continue evolving and impacting how we interact with the world. It may integrate virtual reality and augmented reality technologies, utilize advanced algorithms and AI, and prioritize privacy and security.

Explanation:

Social media in the future is likely to continue evolving and impacting how we interact with the world. It will likely become more integrated into our daily lives, affecting various aspects such as communication, entertainment, and information dissemination.

One possibility is the increased use of virtual reality (VR) and augmented reality (AR) technologies in social media. Users might be able to experience virtual environments and interact with others in a more immersive way. Social media platforms could also utilize advanced algorithms and artificial intelligence (AI) to provide more personalized content and recommendations based on user preferences and behavior.

Additionally, social media may see advancements in privacy and security features to address concerns over data protection and online safety. New regulations could be implemented to ensure the responsible use of social media and protect users from harmful or misleading content.

how can i take out a random (double) number in between 5.0 to 15.0 in c++?

Answers

Answer:

#include <iostream>

using namespace std;

int main() {

   srand(time(0));

   for(int i=0;i<5;i++)

   {

      double f = (double)rand() / RAND_MAX;//generating random numbers.

       double a= 5.0 + f * (15.0 - 5.0);//random numbers in range provided.

       cout<<a<<" ";

   }

return 0;

}

Explanation:

The above program generate five random numbers in the range 5.0 to 15.0.The function rand() is used to generate random numbers.First we have to call srand(time(0)) otherwise the rand() function will generate same random numbers over and over every time.

While there are a lot of programming languages out there, one of the most widely used when it comes to web applications and web oriented products is Javascript. It differs from other 'standard' program languages in many ways. Using the Internet and/or your book as a resource, describe some of the differences between JavaScript and other programming languages like C++, C#, and Java?

Answers

Explanation:

The main differences between Javascript and other programming languages are as following :-

Javascript is a scripting language so it doesn't need to be compiled to get executed while other programming languages like C++,Java etc need to be compiled.Javascript is typed dynamically while other languages are static typed.Browsers can execute Javascript code on the other hand they can't execute Java,C++ etc.

What is a relational database management system and how does it relate to a database administrator?

Answers

Answer: A database management system tends to support administration, development, and use of the platforms. A Relation Database Management System (RDBMS) is referred to as a type of Database Management System (DBMS) that consists of a structure(row-based table) that tends to connect data elements and also involve functions that are supposed to maintain accuracy, security, consistency and integrity of the data.

Write two cin statements to get input values into birthMonth and birthYear. Then write a statement to output the month, a dash, and the year. End with newline. The program will be tested with inputs 1 2000, and then with inputs 5 1950. Ex: If the input is 1 2000, the output is: 1-2000 Note: The input values come from user input, so be sure to use cin statements, as in cin >> birthMonth, to get those input values (and don't assign values directly as in birthMonth

Answers

Answer:

// here is code in c++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main() {

// variables to read birth month and year

int birthMonth,birthYear;

cout<<"Enter the birth month:";

// read the birth month

cin>>birthMonth;

cout<<"Enter the birth Year:";

// read the birth year

cin>>birthYear;

// print the output

cout<<birthMonth<<"-"<<birthYear<<endl;

return 0;

}

Explanation:

Declare two variables "birthMonth" and "birthYear". Read the value of birthMonth and birthYear from user. Then print the birth month and birth year and a dash(-) in between them.

Output:

Enter the birth month:1                                                                                                                                      

Enter the birth Year:2000                                                                                                                                    

1-2000  

Enter the birth month:5                                                                                                                                      

Enter the birth Year:1950                                                                                                                                    

5-1950

The program is an illustration of a sequential program, and it does not require loops, iterations or conditions.

The programming statements in C++, where comments are used to explain each line is as follows:

//This gets input for birthMonth

cin>>birthMonth;

//This gets input for birthYear

   cin>>birthYear;

// This prints the month, a dash, and the year

   cout<<birthMonth<<"-"<<birthYear;

Read more about similar programs at:

https://brainly.com/question/15187402

Broadly speaking, how is testing in an object-oriented approach different to testing in traditional software development?

Answers

Answer:

In object oriented programming methodology, the attention is that capture the main structure and conduct of data frameworks into little modules that joins the two information and procedure.

The main principle of Object Oriented Design (OOD) is that it helps in improve the quality and efficiency of framework analysis and configuration by make the system more progressively usable.

The software Programming testing is a significant period of the product advancement cycle of the life. Testing is the way toward executing the main structure of the program with the help of main objective and also discovering mistakes.

In today world the situation of the object oriented ideas are utilized all through programming designing. Testing of item arranged programming is unique in relation to testing with the traditional programming.

. Why is it insufficient to develop a long-term IT strategy and not reexamine the strategy on a regular basis?
a. Systems need to be maintained
b. To keep the CIO part of the executive team
c. Organizational goals change over time
d. To automate business processes

Answers

Answer:

The correct answer is c. Organizational goals change over time.

Explanation:

Develop a long-term IT strategy is an important goal to provide planning and solutions to an organization but it is important to reexamine the IT strategy on a regular basis to do corrections on this strategy because organizational goals change over time.

For a class Foo, one difference between a variable declared Foo * and a variable declared Foo & is that only the variable declared Foo & can potentially have the value NULL.

Select one:

a. FALSE

b. TRUE

Answers

Answer:

False.

Explanation:

When we declare a variable as reference type we have to initialize that variable otherwise the compiler will give error that the reference variable is not initialized.You also cannot initialize the variable Foo& with NULL value because it is a reference variable and we have to initialize it.

On the other there is no need to initialize the variable Foo * since it is a pointer it can also store NULL value.

So the answer is only Foo* can store NULL value not Foo &.

. Write an if/else statement that assign "Excellent" to variable comments (a string data type) when score is 90 or higher, "Good" when score is between 80 and 89, and "Try Harder" when score is less than 80.

Answers

Answer:

Following are the program in c++

if(score>= 90)

 // check if score 90 or higher

{

comments = "Excellent"; // initialize comments to excellent

}

else if(score<90 && score >= 80)

// check if  when score is between 80 and 89

{

comments = "Good";   //initialize comments to good

}

else

//when score is less than 80.

{

comments = "Try Harder"; //initialize comments to try harder

}

Explanation:

Following are the program in c++ language

#include<iostream> // header file

using namespace std;  // namespace

int main() // main function

{

string comments; // variable

int score;  // variable declaration

cout<<" enter score ";

cin>>score;

if(score>= 90)

{

comments = "Excellent"; // initialize comments to execellent

}

else if(score<90 && score >= 80)

{

comments = "Good";   //initialize comments to good

}

else

{

comments = "Try Harder"; //initialize comments to try harder

}

cout<<comments;

return(0);

}

Output:

enter score

45

Try Harder

In this we check the condition  

if score>= 90 then it store the Excellent in variable  comments of type string

if(score<90 && score >= 80)

it store the Good in variable comments of type string.

otherwise it store harder in variable comments of type string.

In what respects does a UML state diagram differ from a state transition diagram?

Answers

Answer: The difference between the UML state diagram and state transition diagram are as follow:-

State-transition diagrams display the states of the object where the change takes place whereas the UML(Unified modeling language) state diagrams are representation of parts of system at certain time instance. State-transition diagram requires the condition to be accomplished before the transition happens whereas the dynamic behavior of the states are expressed by transitions in UML state diagrams.

Which of the following creates a new table called 'game_scores' with 2 columns 'player_name' and 'player_score'?

(a) CREATE TABLE game_scores (
player_name string(45),
player_score integer(10)
);

(b) NEW TABLE (
player_name varchar(45),
player_score int(10)
) AS game_scores;

(c) NEW TABLE game_scores (
player_name varchar(45),
player_score int(10)
);

(d) CREATE TABLE (
player_name varchar(45),
player_score int(10)
) AS game_scores;

(e) CREATE TABLE game_scores (
player_name varchar(45),
player_score int(10)
);

Answers

Answer:

e

Explanation:

the valid sql syntax for creating table is

CREATE TABLE table_name (

column_name column_type

)

varchar and int are the valid sql types not string and integer

AS is used in select queries to aggregate results under given name

What are three key characteristics of an OS process?

Answers

Answer:

 The three key charactertics of the operating system process is that:

The process of the operating system is the instance of the program that can be executed and run.The operating system process is represented by the code and program. It is also indicated by the parameters that it is also allow in the situation if any interruption occur. In the case of the Linux operating system the process is also used to indicate as task in the system.  

What is the efficiency (Big O Notation) of quicksort algorithm?

Answers

Answer:

O(NlogN)

Explanation:

The time complexity of quick sort in worst case is O(N²) but the average case time complexity of quick sort is O(NLogN).The efficiency of quick sort totally depends upon the pivot.If the pivot is the smallest or the largest element in the array every time then the time complexity of quick sort algorithm will come out to be O(N²).

Name the contributions of Steve Jobs and Bill Gates, with respect to technology.

Answers

Answer: Steve Jobs made several contributions towards technology by introducing the range of Apple devices and technologies .he started the Apple Incorporation.The technologies introduced by his company are as follows:-

iPodiPhoneApple LisaiMaciPad etc.

 Bill Gates is the founder of Microsoft incorporation and made a lot of development in that field to create various software for the operating system.the creation of "Microsoft Window" was started by him and some other contributions are as follows:

Windows 7Windows 8VistaXPwindows 95 etc.

Answer:

Steve jobs also made the Macintosh

Explanation:

Flash memory is:

a) a semiconductor

b) a type of ROM

c) non-volatile

d) all of the above

e) none of the above

Answers

Answer:

d) all of the above.

Explanation:

Flash Memory is a memory storage that is non volatile.It can be erased electrically and reprogrammed since it is a type of ROM(Read Only Memory).It is the least expensive form of semiconductor memory.It offers lower power consumption and can be erased in large blocks.

Hence the answer to this question is option d.

What value will be stored in the Boolean variable t after each of the following statements executes?
A) t = (12 > 1);
B) t = (2 < 0);

C) t = (5 == (3 * 2)); D) t = (5 == 5);

Answers

Answer:

A) True

B) False

C) False

D) True

Explanation:

In the following expressions we are evaluating whether a value is greater than (>), less than (<) or equal (==) to another value.

A) The expression is pointing out that 12 is greater than 1, which is True.

B) The expression is pointing out that 2 is less than 0, which is False

C) The expression is pointing out that 5 is equal to (3*2); 3*2=6 therefore 5 is not equal to 6. The answer is False

D) The expression is pointing out that 5 is equal to 5, which is True.

What is a URI (include example)

Answers

Answer:

 URI is the uniform resource identifier and it is basically a sequence of the character which identify the physical and logical resources. The uniform resource identifier basically contain the predefined set of rules and syntax and also maintain the extensibility hierarchical schema.

There are basically two types of URI that are:

  1)  Uniform Resource Name (URN)

  2) Uniform Resource Locator (URL)

For example: HTTP protocol , file transfer protocol (FTP).

 

what would you consider the most effective perimeter and network defense methods available to safeguard network assets?

Answers

Answer: There are several methods that are used for maintenance of safety and defensing the network against any type of hacking or attacking.Some of the methods are mentioned as follows:-

Denial of service attack(Dos)-it is the type of service that does not let the unauthorized sources and users to use the resources of the service.Intrusion detection system(IDS)-it is the system that is used for the detection of any unauthorized access happening in the system.It detects the accessing on the basis of host and networkFirewall-is the system for the security of network for controlling the  traffic that enters and exits a networks and maintains barriers by blocking untrusted traffic.

__________________ are evaluations of a network

Answers

Answer:

 The evaluation of the network is basically depend upon the various factors such as the stage, type and size of the network development. The main purpose for the evaluation of the network is that the system works with high efficiency without any interruption in the network.

According to the size and the type of the network we can easily evaluate the particular network in the system and then we can easily work on the network infrastructure to make the network more efficient.

Some companies, especially consulting firms, require their employees to create ____ about sessions with clients.
timesheets
reports
logs
stories

Answers

Answer: Reports

Explanation:

 Some companies always ask to the employees to create the particular report for the session with their clients.

As, the report is the main communication channel between the company employees and clients where all the information are complied together and focus for transmitting the data clearly.

Efficient reports are basically help in the decision making and problem with sufficient knowledge.  

On the other hand, all the other options are not needed for session with the clients in the organization. Therefore, report is the correct option.

 

Enumerations can contain ___________ values.

a.only unique

b.an indefinite number of

c.up to 10

d.up to 100

Answers

Answer: (A) Only unique

Explanation:

 Enumeration basically contain only unique value as enumeration is define as the set of the numeric values that is finite and it is represent specifically by the identifiers which is known as the enumeration constant.  

It only work with the finite values and also hide all the un-relevant and unnecessary information from the programmers. Enumeration is the type of the data type variable which contain only previous declared values.  

The value of the mathematical constant e can be expressed as an infinite series: e=1+1/1!+1/2!+1/3!+... Write a program that approximates e by computing the value of 1+1/1!+1/2!+1/3!+...+1/n! where n is an integer entered by the user.

Answers

Answer:

// here is code in c++ to find the approx value of "e".

#include <bits/stdc++.h>

using namespace std;

// function to find factorial of a number

double fact(int n){

double f =1.0;

// if n=0 then return 1

if(n==0)

return 1;

for(int a=1;a<=n;++a)

       f = f *a;

// return the factorial of number

return f;

}

// driver function

int main()

{

// variable

int n;

double sum=0;

cout<<"enter n:";

// read the value of n

cin>>n;

// Calculate the sum of the series

  for (int x = 0; x <= n; x++)

  {

     sum += 1.0/fact(x);

  }

  // print the approx value of "e"

    cout<<"Approx Value of e is: "<<sum<<endl;

return 0;

}

Explanation:

Read the value of "n" from user. Declare and initialize variable "sum" to store the sum of series.Create a function to Calculate the factorial of a given number. Calculate the sum of all the term of the series 1+1/1!+1/2!.....+1/n!.This will be the approx value of "e".

Output:

enter n:12

Approx Value of e is: 2.71828

Euler's number, e, can be approximated using a series expansion. The provided C program calculates e by summing the series up to 1/n! where n is entered by the user.

Euler's number, e, is a mathematical constant approximately equal to 2.71828. It can be computed using the series expansion:

e = 1 + 1/1! + 1/2! + 1/3! + ... + 1/n!

Below is a C program that approximates e by computing the sum up to 1/n! where n is an integer entered by the user.

#include <stdio.h>
// Function to calculate factorial of a number
double factorial(int n) {
   double fact = 1;
   for (int i = 1; i <= n; i++) {
       fact *= i;
   }
   return fact;
}
int main() {
   int n;
   double e = 1.0; // Starting with 1 as per the series definition
   
   // User input
   printf("Enter an integer n: ");
   scanf("%d", &n);
   
   // Calculate value of e
   for (int i = 1; i <= n; i++) {
       e += 1.0 / factorial(i);
   }
   
   // Display result
   printf("Approximation of e using %d terms: %lf\n", n, e);
   return 0;
}

Wi-Fi is all around us. Is there any downside to its pervasiveness?

Answers

Answer:

  Wi-Fi(Wireless fidelity) is the networking technology that helps in providing the internet connectivity to the users. The Wi-Fi is all around the surrounding due to several Wi-Fi connections the users demand and use. It creates the networking environment where internet access becomes easy.

There are drawback to Wi-Fi service range that covers a large area is the high number of users.The addition of many users slow down the data rate and accessing .The radiation from this service is also a negative side of the Wi-Fi pervasiveness.

Final answer:

The downsides to the pervasiveness of Wi-Fi include the digital divide, security risks, and the psychological impact of being constantly connected. To mitigate these issues, digital literacy, cybersecurity, and healthy digital habits are crucial.

Explanation:

Wi-Fi's pervasiveness indeed comes with downsides alongside the immense benefits it provides in terms of connectivity and access to information. One major concern is the digital divide, a gap that is widening between those who have access to technology and those who do not, both locally and globally. This phenomenon can lead to disparities in access to information and inequalities in educational and economic opportunities.

Another significant concern is security risks. With Wi-Fi networks, there is the potential for eavesdropping and unauthorized access to communications, raising issues of privacy and data protection. As we further integrate Wi-Fi and other wireless technologies into critical infrastructure and personal devices, the risk for systemic failures and technological vulnerabilities increases, which could have severe consequences in the event of natural disasters or targeted attacks.

Write an application that calculates and displays the weekly salary for an employee. The main() method prompts the user for an hourly pay rate, regular hours, and overtime hours. Create a separate method to calculate overtime pay, which is regular hours times the pay rate plus overtime hours times 1.5 times the pay rate; return the result to the main() method to be displayed. Save the program as Salary.java.

Answers

Answer:

// import package

import java.util.*;

// class definition

class Salary

{

   // method to calculate weekly salary

   public static double fun(int p_rate,int r_hour,int o_hour)

   {

       // calculate weekly salary

       double w_salary=(p_rate*r_hour)+(o_hour*p_rate*1.5);

       // return salary

       return w_salary;

   }

   // main method of the class

public static void main (String[] args) throws java.lang.Exception

{

   try{

    // object to read value from user

    Scanner scr=new Scanner(System.in);

   

       System.out.print("enter hourly pay rate: ");

       // read hourly pay rate

       int p_rate=scr.nextInt();

     

       System.out.print("enter regular hours: ");

       //read regular hours

       int r_hour=scr.nextInt();

       

       System.out.print("enter overtime hours : ");

       // read overtime hours

       int o_hour=scr.nextInt();

       // call the method

       System.out.println("weekly salary of an employee :"+fun(p_rate,r_hour,o_hour));

   }catch(Exception ex){

       return;}

}

}

Explanation:

Read hourly pay rate, regular hours and overtime hours from user.Call the method sal() with these parameters.There weekly salary is calculated by multiply regular hours with p_rate and overtime hours with 1.5 time of p_rate.Sum both of them, this will be the weekly salary.return this to main method and print it.

Output:

enter hourly pay rate: 50                                                                                                  

enter regular hours: 35                                                                                                    

enter overtime hours : 15                                                                                                  

weekly salary of an employee :2875.0

The `Salary` application prompts the user for hourly pay rate, regular hours, and overtime hours, then calculates and displays the weekly salary using a separate method to calculate overtime pay.

Here's the Java program `Salary.java` that calculates and displays the weekly salary for an employee:

import java.util.Scanner;

public class Salary {

   public static void main(String[] args) {

       Scanner scanner = new Scanner(System.in);

       // Prompt the user for input

       System.out.print("Enter hourly pay rate: ");

       double hourlyPayRate = scanner.nextDouble();

       System.out.print("Enter regular hours: ");

       double regularHours = scanner.nextDouble();

       System.out.print("Enter overtime hours: ");

       double overtimeHours = scanner.nextDouble();

       // Calculate and display the weekly salary

       double weeklySalary = calculateWeeklySalary(hourlyPayRate, regularHours, overtimeHours);

       System.out.println("Weekly salary: $" + weeklySalary);

       scanner.close();

   }

   // Method to calculate overtime pay

   public static double calculateWeeklySalary(double hourlyPayRate, double regularHours, double overtimeHours) {

       double regularPay = regularHours * hourlyPayRate;

       double overtimePay = overtimeHours * hourlyPayRate * 1.5;

       return regularPay + overtimePay;

   }

}

Explanation:

The `main` method prompts the user for input: hourly pay rate, regular hours, and overtime hours.It then calls the `calculateWeeklySalary` method to calculate the weekly salary based on the provided inputs.The `calculateWeeklySalary` method calculates the regular pay and overtime pay separately, then returns the total weekly salary.Finally, the main method displays the calculated weekly salary.

You can compile and run this program to calculate and display the weekly salary for an employee based on the provided hourly pay rate, regular hours, and overtime hours.

The World Wide Web (not the Internet) went live in this decade:

Select one:

a. 1960s

b. 1970s

c. 1980s

d. 1990s

Answers

Answer:

d. 1990s

Explanation:

The World Wide Web is a kind of friendly information system that uses hypertext, and since its creation has made Internet available for most people.

The Internet already existed quite before the World Wide Web: the first computer network was ARPANET (created in 1969), a project of the Advanced Research Projects Agency of the United States Department of Defense.

Further developments in computers' protocols (ways in which computers communicate with each other) resulted in a network of networks, or the Internet, in 1983.

Although the World Wide Web was a proposal first published on March 12, 1989, by Tim Berners-Lee of the European Nuclear Research Center (CERN) --this is why it is considered that the World Wide Web was created in 1989-- the idea came into life at the end of the year 1990, for the following reasons:

After that proposal of 1989, Berners-Lee wrote another on May 1990, and in September 1990 he received support to develop those ideas.Some of the essential technologies needed to create the World Wide Web were already available by October 1990, that is, the HTTP (Hypertext Transfer Protocol), the HTML (Hypertext Markup Language) and the URI (Universal Resource Identifier), all considered been developed by Berners-Lee.On November 12, 1990, with the Belgian engineer Robert Cailliau, who was working in similar ideas, wrote a more formal proposal of such a system to share information across the CERN where they mentioned: "build a Hypertext project called WorldWideWeb" [Wikipedia, 2019].

Well, by the end of December 1990, in a NeXT computer, and after the creation of the first web server and the first web page browser, the first web site, running at CERN, appeared on December 20, 1990.

This idea was rapidly adopted outside the CERN in 1991 and, by the end of the 1990s, more than 130 million people could access the Internet using the World Wide Web technology.

In conclusion, the World Wide Web went live in the decade of 1990s: was a project, a proposal by the end of 1989 and started to work as a fast-adopted technology at the beginning, and throughout, the 1990s.

Answer:

b

Explanation:

Left uncaught, a thrown exception will cause your program to terminate.

Select one:

a. FALSE

b. TRUE

Answers

Answer: True

Explanation:

  Yes, the given statement is true that the left uncaught, the throwing exceptions caused stop execution or terminate the program. The uncaught exception is basically refers that the compiler control the termination function in the program.  

Left Uncaught exception basically cause termination of the program and also implement the interface in the uncaught exception handler in the particular java thread.

Standards are used when an organization has selected a solution to fulfill a policy goal.

True

False

Answers

Answer: True

Explanation:

 Yes, the given statement is true that the standard are basically used when the organization are selected for the solution to fulfilling the particular policy goals. In the organization are standard are basically require for the software and hardware solutions to control the security risk.

Adopting standard in the organization it provide many advantages like it helps to save money and productivity of the organization or company.

Standard are basically establish a common throughput in the organization which provide all the department in the organization on the same level.

Other Questions
Which of the following was an effect of the slave trade on Africa?A. loss of population in AfricaB. spread of European diseasesC. economic stability in African kingdomsD. All answers are correct. Read the sentence.As part of my presentation, I read my class the final stanza of the poem and then performed a critique.Which word in the sentence functions as the indirect object? Matthew invested $3,000 into two accounts. One account paid 3% interest and the other paid 8% interest. He earned 4% interest on the total investment. How much money did he put in each account? 10TIME REMAINING53:10The functions f(x) and g(x) are graphed.Which represents where f(x) = g(x)?O f(2) = g(2) and f(0) = g(0)O f(2) = g(0) and f(0) = g(4)O f(2) = g(0) and f(4) = g(2)O f(2) = g(4) and f(1) = g(1) Click an item in the list or group of pictures at the bottom of the problem and, holding the button down, drag it into the correct position in the answer box. Release your mouse button when the item is place. If you change your mind, drag the item to the trashcan. Click the trashcan to clear all your answers. Divide the following polynomial and then place the answer in the proper location on the grid. 8y 7 4y 5 In the Holiday Shop the manager wants 20% of the total inventory in the stockroom and the rest displayed on the floor. After meeting these instructions, you placed $35,000 of inventory in the stockroom. What is the dollar amount of the inventory on the selling floor?Total InventoryInventory in the stockroomInventory on the selling floor Solve 23(3x+9)=2(2x+6). All the following are characteristics of vitamin D except a. It is activated by the liver and kidney b. it causes the kidney to excrete less calcium in the urine. c. its synthesis is enhanced by use of sunscreen. d. it facilitates calcium absorption from the small intestine u=3a-1 Solve the equation for the indicated variable: a which part of the governmnt, according to the Constitution, is made up of justices who make sure that laws are followed the perimeter of a rectangle if the width is 3 centimeters and the length is 6 centimeters longer than the width. The purpose of the ____ is to define the scope of the CP operations and establish managerial intent with regard to timetables for response to incidents, recovery from disasters, and reestablishment of operations for continuity. A skater is standing still on a frictionless rink. Herfriendthrows a Frisbee straight at her. In which of the followingcases isthe largest momentum transferred to the skater?a) the skater catches the frisbee and hols onto it.b) the sjater catches the frisbee momentarily, but thendropsit vertically downward.c) the skater catches the frisbee, holds it momentarily,andthrows it back to her friend. I need help with question? There is evidence that the rate at which money changed hands rose during the German hyperinflation. This means that a. velocity rose. If monetary neutrality holds the rise in velocity increased the ratio M/P. b. velocity rose. If monetary neutrality holds the rise in velocity decreased the ratio M/P. c. velocity fell. If monetary neutrality holds the fall in velocity increased the ratio M/P. d. velocity fell. If monetary neutrality holds the fall in velocity decreased the ratio M/P. A student is running at her top speed of 5.3 m/s to catch a bus, which is stopped at the bus stop. When the student is still a distance 40.7 m from the bus, it starts to pull away, moving with a constant acceleration of 0.168 m/s^2 . a) For how much time does the student have to run at 5.3 m/s before she overtakes the bus?b) For what distance does the student have to run at 5.3 m/s before she overtakes the bus?c) When she reaches the bus, how fast is the bus traveling?d) If the student's top speed is 2.00 m/s , will she catch the bus?e) What is the minimum speed the student must have to just catch up with the bus?f) For what time does she have to run in that case?g) For what distance does she have to run in that case? The nurse is evaluating the coping skills of a client with a diagnosis of depression. Which statement indicates to the nurse the need to help the client learn and appropriately use these skills? The structures that deflect air as it passes through the nose are called a. choanac. b. paranasal sinuses. c. conchae. d. vibrissae. Differentiate phloem from xylem. What is the polynomial function of least degree whose only zeros are -3, ,-2, and 4 ?