Sales and marketing users have similar roles, and use similar record types. However, sales uses 3 different fields and marketing has 5, how do you set up processes most efficiently?

A. 2 page layouts, 2 record types, 2 profiles
B. 2 page layouts, 1 record type, 2 profiles
C. 1 page layout, 2 record types, 2 profiles
D. 1 page layout, 1 record type, 1 profile

Answers

Answer 1

Answer:

B. 2 page layouts, 1 record type, 2 profiles

Explanation:

The most efficient way to setup the process is by setting 2 page layouts, 1 record type and also 2 profiles.


Related Questions

Write a program that uses nested loops to collect data and calculate the average rainfall over a period of years. The program should first ask for the number of years. The outer loop will iterate once for each year. The inner loop will iterate four times, once for each quarter. Each iteration of the inner loop will ask the user for the inches of rainfall for that quarter.

Answers

Answer & Explanation:

Written in java

import java.util.Scanner;

public class Main{

   public static void main(String[] args) {

       int totalRainfall = 0;

       int rainfall;

       Scanner keyboard = new Scanner(System.in);

       int year;

       do {

           System.out.println("Enter number of year(s): value must be greater than 0");

           year = keyboard.nextInt();

       } while (year < 1);

//        {

//

//            System.out.println("Invalid input, please enter a number greater than zero ");

//

//            year = keyboard.nextInt();

//

//        }

       for (int i = 0; i < year; i++) {

           for (int quarter = 1; quarter <= 4; quarter++) {

               int currentYear = 1 + i;

               System.out.println("Enter the inches of rainfall for year " + currentYear + " quarter " + quarter);

               rainfall = keyboard.nextInt();

               if(rainfall > -1){

                   totalRainfall += rainfall;

               }

               while (rainfall < 0) {

                   System.out.println("Enter the inches of rainfall for year " + currentYear + " quarter " + quarter +": value must be greater or equal to 0 ");

                   rainfall = keyboard.nextInt();

               }

           }

       }

       

       System.out.println("Average quarterly rainfall is: " + (totalRainfall/(year*4)));

       System.out.println("Average yearly rainfall is: " + (totalRainfall/(year)));

   }

}

Final answer:

A Python program is provided that calculates the average rainfall over a number of years. User inputs the number of years, then for each quarter of each year, the rainfall in inches. The program computes and outputs the average rainfall in inches and converts it to millimeters.

Explanation:

The program to calculate the average rainfall over a period of years will involve two nested loops. The outer loop will iterate through the number of years, while the inner loop will iterate through each quarter of a year. For each quarter, the program will collect the rainfall data in inches and calculate the average, eventually converting the final result to millimeters.

Python Code Example:

years = int(input('Enter number of years: '))
total_rainfall = 0
for year in range(1, years + 1):
 for quarter in range(1, 5):
   rainfall = float(input(f'Enter the inches of rainfall for year {year} quarter {quarter}: '))
   total_rainfall += rainfall
average_rainfall_inches = total_rainfall / (years * 4)
average_rainfall_mm = average_rainfall_inches * 25.4
print(f'The average rainfall over {years} years is {average_rainfall_inches} inches or {average_rainfall_mm} mm.')

#include ... void sig_handler(){ static int i = 1; printf("Beep\n"); alarm(i); ++i; } int main(){ struct sigaction sa; sa.sa_flags = 0; sa.sa_handler = sig_handler; if(sigaction(SIGALRM, &sa, NULL) != 0){ printf("Failed to bind handler.\n"); exit(1); } printf("Going into an infinite loop.\n"); alarm(1); while(1); return 0; }

Suppose the above program is run for 7.5 seconds after it prints "Going into an infinite loop". The program is run multiple times where the "system load" from other processes sharing the cpu will vary from none to many other processes. Which best characterizes how many times "Beep" is printed?

Answers

Answer:

Explained below

Explanation:

After the compiling the program it prints "Going to infinite loop" after that i started the timer till 4.5 sec. The program prints more than 4 beeps nearly 6-7 beep messages were printed.

The number "Beep" would always be strictly greater than 4.

Hence, if the above program is run for 7.5 seconds after it prints "Going in an infinite loop", it will print Beep for about 9-10 times. Hence, the number will always be greater than 7

Write an abstract superclass encapsulating a college applicant:

A college applicant has two attributes: the applicant’s name and the college the applicant is applying to.

This class has two non-abstract subclasses: one encapsulating an applicant for undergraduate school, and the other encapsulating an applicant for graduate school.

An applicant for undergraduate school has two attributes: a SAT score and a GPA. An applicant for graduate school has one additional attribute: the college of origin.

It also has a method that returns "from inside" if the college of origin is the same as the college applied to; otherwise, it returns "from outside".

You also need to include a class to test two classes.Java please.

Answers

Answer:

The code snippet file is attached. There are four files:

Abstract Applicant ClassThe Graduate ClassThe Undergraduate classThe TestApplicantClass

The code is well commented and explanatory.

Explanation:

A company has made the decision to host their own email and basic web services. The administrator needs to set up the external firewall to limit what protocols should be allowed to get to the public part of the company's network. Which ports should the administrator open? (Choose three.)

Answers

Answer:

Port 25

Port 53

Port 80

Explanation:

Port 25 is to be used for relaying messages between MTAs (Mail Transfer Agents) or from MSAs (Mail Submission Agents) to MTAs.

Port 53 is used by the Domain Name System (DNS), a service that turns human readable names like AuditMyPc.com into IP addresses that the computer understands. Because port 53 is usually open, malicious programs may attempt to communicate on it.

On a Web server or Hypertext Transfer Protocol daemon, port 80 is the port that the server "listens to" or expects to receive from a Web client, assuming that the default was taken when the server was configured or set up. By default, the port number for a Web server is 80.

Which of the following is the definition of registration authority ( RA)?

a. The process of applying an algorithm to cleartext (or plain text) data, resulting in a ciphertext.
b. The certificate authority’s list of invalid certificates.
c. The concept of ensuring that an originator cannot refute the validity of a statement or document.
d. An entity that is responsible for the registration and initial authentication of certificate subscribers.

Answers

Answer:

The correct answer following question will be Option D.

Explanation:

An authority that verifies the user requests for digital certificates and tells to the CA (Certificate authority) to issue the certificates, known as Registration Authority (RA). The digital certificate contains a key named "public key" which is used to encrypt and decrypt digital signatures.

Hence, registration authority, it's an entity that is responsible for the authentication of certificate and registration and the other given options are not relatable to this authority.

So, option D is the correct answer.

What should you double check for some reason its not working? You have created a workflow rule to send an email in your configuration sandbox.

A. You have the correct email address
B. HTML does not work in sandbox, make sure your email has no HTML
C. Check the deliverability settings
D. Look at the system audit trail

Answers

Answer:

Option A and C are the correct options

Explanation:

The following options is true because when the user created the flow of the work rule for sending an email in their configuration sandbox then, the user correct these email address and also users can examine their deliverability setting.

Option B is false because the HTML also works in the sandbox.

Option D is false because the audit trail did not look at the system.

A dictionary attack works by hashing all the words in a dictionary and then comparing the hashed value with the system password file to discover a match.

A. True
B. False

Answers

Answer:

True

Explanation:

A dictionary attack is an attempts to gain illegal access to a computer system by hashing all the words in a dictionary and then systematically entering each hashed value as a password so as to discover a match. it has been the most successful password guessing technique over the years because many users and organization use ordinary words as passwords.

________ symbol is used in the "Advanced" section of the time range picker to round down to nearest unit of specified time.

Answers

Answer:

@(at sign) is the correct answer to the following statement.

Explanation:

Because the following symbol is the "at sign" symbol that is used for the Advanced section in the time range picker that lets the user search for the specified time for the round down the closest entity of a particular period. So, that's why the following answer is correct for the following statement.

Other Questions
SP: Describe what moment is,give the formula and unit for it.Rearrange the equation to makea force as a subject What makes a trapezoid an isosceles trapezoid? MacKenzie Company sold $640 of merchandise to a customer who used a Regional Bank credit card. Regional Bank deducts a 2.0% service charge for sales on its credit cards and credits MacKenzie's account immediately when sales are made.The journal entry to record this sale transaction would be:A)Debit Cash of $640 and credit Sales $640.B)Debit Cash of $640 and credit Accounts Receivable $640.C)Debit Accounts Receivable $640 and credit Sales $640.D)Debit Cash $627.20; debit Credit Card Expense $12.80 and credit Sales $640.E)Debit Cash $627.20 and credit Sales $627.20. You have a pea plant with round, yellow seeds. A cross test with green, wrinkled seeds (rryy) gives the following data: 50% of the offspring make round seeds, 50% of the offspring make wrinkled seeds, and 100% of the offspring make yellow seeds. What was the genotype of the original plant? Let's consider the effects of inflation in an economy composed of only two people: Bob, a bean farmer, and Rita, a rice farmer. Bob and Rita both always consume equal amounts of rice and beans. In 2013, the price of beans was $1, and the price of rice was $3. Suppose that in 2014 the price of beans was $2 and the price of rice was $6. What was inflation? Was Bob better off, worse off, or unaffected by the changes in prices? What about Rita?b. Now suppose that in 2014 the price of beans was $2 and the price of rice was $4. What was inflation? Was Bob better off, worse off, or unaffected by the changes in prices? What about Rita?c. Finally, suppose that in 2014 the price of beans was $2 and the price of rice was $1.50. What was inflation? Was Bob better off, worse off, or unaffected by the changes in prices? What about Rita?d. What matters more to Bob and Ritathe overall inflation rate or the relative price of rice and beans? Amaya used these steps to solve the equation 8x+4=9+4(2x1). Which choice describes the meaning of her result, 4=5? Technical standards in high-technology industries are: a. general guidelines proposed by industry leaders. b. specifications that producers adhere to when making a product or a component of it. c. product features desired by consumers. d. product specifications imposed by the federal government. e. specifications developed by each producing company for its own products and product components. Rachel is collecting donations for the local animal shelter. So far she has collected $245, which is 70% of what she hopes to collect. How much money does Rachel plan to collect for the shelter? Show your work. Read this excerpt from the text. "The trial of a person charged with a federal crime, or a suit involving the infringement of a patent or a copyright, or one involving any other matter arising out of an act of Congress is . . . within the . . . jurisdiction of the federal courts." In a patent case being heard for the first time, this is an example of? All of the following issues involve environmental science except a. measuring smog levels in cities. b. asking people questions about the cost of various resources. c. studying the loss of plant and animal species. d. publishing the results of a study on fossil fuel depletion. Legal responsibility for someone elses use of your possessions or someone elses activity for which you are responsible is called __________.a. negligence.b. strict liability.c. vicarious liability. d. property risk.e. pure risk Write an algebraic expression for the verbal expression, "17 less than k and 12" In the graduating class of a certain college, 48 percent of the students are male and 52 percent are female. In this class 40 percent of the male and 20 percent of the female students are 25 years old or older. If one student in the class is randomly selected, approximately what is the probability that he or she will be less than 25 years old?A. 0.9B. 0.7C. 0.45D. 0.3E. 0.25 What is the value of secant theta given the diagram below? A unit circle is shown. A ray intersects point (negative 3, 6) in quadrant 2. Theta is the angle formed by the ray and the x-axis in quadrant 1. Negative StartRoot 5 EndRoot Negative StartFraction StartRoot 5 EndRoot Over 2 EndFraction StartFraction StartRoot 5 EndRoot Over 2 EndFraction StartRoot 5 EndRoot 5(2r+6)-12r ; Simplify Read through the scenarios below and calculate the predicted change in kinetic energy of the object compared to a 100 kg ball traveling at 5 m/s.A 1,000 kg ball traveling at 5 m/s would have ____ Kinetic energyA 10 kg ball traveling at 5 m/s would have ____ kinetic energyA 100 kg person falling at 5 m/s would have ____ Kinetic energy Find the other endpoint given one endpoint (-1,6) and the midpoint is (4,2) When dissolved in water, acids produce ____. Solve 6x - 2 = 4x + 13 for x.15/21123/12 consultorio dedos embarazada enfermero examen farmacia ojos resfriado sano sntoma tobillo tos changedQuestion 1 with 1 blankEl lugar donde compramos medicamentos es la farmacia You answered. changedQuestion 2 with 1 blankLa persona que ayuda a los doctores en el hospital es un enfermero You answered. changedQuestion 3 with 1 blankLo opuesto de enfermo es sano You answered. changedQuestion 4 with 1 blankLas personas van al mdico para ver si estn bien; se hacen un examen You answered mdico. changedQuestion 5 with 1 blankUna mujer que va a tener un hijo est embarazada You answered. changedQuestion 6 with 1 blankCuando alguien estornuda mucho y tiene un poco de fiebre, tiene un resfriado You answered. changedQuestion 7 with 1 blankA veces cuando ests corriendo, te tuerces el tobillo You answered. changedQuestion 8 with 1 blankEn cada mano tenemos cinco dedos You answered. changedQuestion 9 with 1 blankLos rganos del cuerpo con los que podemos ver son los ojos You answered. changedQuestion 10 with 1 blankLa habitacin donde los doctores te atienden (attend to) es un consultorio You answered. Steam Workshop Downloader