Which two configuration steps are required before quick actions can be used in macros?

Answers

Answer 1

The two configuration steps are required before quick actions can be used in macros are:

B . Quick Actions must be enabled in the org.

C . The specific quick action must be added to the case Feed.

What is Computer configuration?

In regards to communications or the use of computer systems, a configuration of a system is known to be a term that connote a kind of an arrangement  or setting of all of its functional units.

It is one that is known to be based to their nature, number as well as main chief characteristics.

Therefore, The two configuration steps are required before quick actions can be used in macros are:

B . Quick Actions must be enabled in the org.

C . The specific quick action must be added to the case Feed.

Learn more about configuration from

https://brainly.com/question/13484609
#SPJ1

October 6, 2021examsLeave a commentPost navigation

Which two configuration steps are required before quick actions can be used in Macros?

A . Global Actions needs on the publisher layout.

B . Quick Actions must be enabled in the org.

C . The specific quick action must be added to the case Feed.

D . The specific quick action must be added to the case record Type.


Related Questions

Write code that sets the value of the variable num_cards to seven if its current value is less than seven. otherwise, don't change the value. assume that num_cards already has an initial value.

Answers

The program to illustrate the information is given below.

How to express the code?

num_cards = 5 #Assuming value of num_cards is 5 (You can take any value you want)

if num_cards<7 :

num_cards=7

print(num_cards)

def dice_eval(x,y):

if (x+y== 7)|(x+y== 11) :

return "Winner!"

elif (x+y== 2)|(x+y== 3)|(x+y== 12) :

else:

a = x+y

if a<10:

return "Point is 0"+ str(a)

else :

return "Point is " + str(a)

Example -

dice_eval(0,8) returns 'Point is 08'

Learn more about programs on:

https://brainly.com/question/26642771

#SPJ1

21. are promoters sequence-specific, or can all strings of as and ts work equally well? how did the taga promoter contradict the hypothesis that at-rich promoters are the best?

Answers

You can demonstrate that not all AT-rich promoters are the same because TATA is a significantly better promoter than TAAA. The promoter is therefore sequence-specific and not just found in regions of DNA that are AT-rich.

A promoter is a person or group of people who have the idea to start a successful business. Following conception, the promoters conduct preliminary research to ascertain the benefits and drawbacks of the proposal. In addition, they compute possible income, expected costs, and working capital requirements.

A promoter may be an employee of the company who organizes events on contract or a shareholder. Promoters request capital from investors to invest in a company so it can expand. They strive as shareholders to increase the return on both their own and other investors' capital.

Learn more about promoters https://brainly.com/question/20472836?

#SPJ4

A variety of memory cards and flash drives can be classified as _____ storage, which stores data in a nonvolatile, erasable, low-power chip.

Answers

A variety of memory cards and flash drives can be classified as Solid state storage, which stores data in a nonvolatile, erasable, low-power chip.

What are memory cards?

A memory card is known to be  a type of storage device that is known to be used for saving media as well as data files.

Note that this is a tool that helps to give  a permanent as well as non-volatile tool to be able to save data and files from any attached device.

Therefore, A variety of memory cards and flash drives can be classified as Solid state storage, which stores data in a nonvolatile, erasable, low-power chip.

Learn more about memory cards from

https://brainly.com/question/21708725

#SPJ1

Select the 3 TRUE statements about storing digital images.

Group of answer choices

When storing the original file, use highest resolution possible if you are not sure how the images might be used.

Back up important documents on an external storage device.

Don't include descriptive information, version or size, and intended use information, as this increases file size.

Keep the original high resolution file in a separate place and make a copy to edit and process.

To get a higher resolution image of a low resolution picture, simply resave it at a higher resolution.

Answers

Answer:

When storing the original file, use highest resolution possible if you are not sure how the images might be used.Back up important documents on an external storage device.Keep the original high resolution file in a separate place and make a copy to edit and process.

Explanation:

The other two are incorrect. -->

Descriptive info hardly affects file size. In fact this should be a requirement to identify the image.

You cannot go from a lower resolution image to a higher resolution image, only the other way around

______ describes the way a document is printed or displayed on a screen.
Options are:
Red, Thesaurus, Mailing, Page Orientation, Track Changes.

Answers

Answer:

Page orientation.

Explanation:

Because the other words have nothing to make sense in this sentence.

In linux, in the /dev directory, devices that start with sd can be associated with what type of device? check all that apply

Answers

In Linux computer system, in the /dev directory, devices that start with sd can be associated with this type of device:

Hard drivesUSB drivesMemory sticks

What is a directory?

A directory is also referred to as a folder and it can be defined as a document that is typically used for storing and organizing a file on a computer system.

What is a hard-disk drive?

A hard-disk drive can be defined as an electro-mechanical, non-volatile data storage device that is made up of magnetic disks (platters) that rotates at high speed in a computer system.

On all Linux computer system, the /dev directory is a command that is generally associated with mass storage devices and as such it can be used to manage all of the following devices that start with sd:

Hard drivesUSB drivesMemory sticks

Read more on Linux computer directory here: https://brainly.com/question/25704515

#SPJ1

Complete Question:

In Linux, in the /dev directory, devices that start with sd can be associated with what type of device? Check all that apply.

Speakers

Hard drives

USB drives

Memory sticks

This problem can sometimes be caused by disabling or refusing to accept cookies.

Answers

"The Page isn’t Redirecting Properly” Message is a problem that can sometimes be caused by disabling or refusing to accept cookies. Something went wrong if you experience the issue in your web browser.

The message basically signifies that the website keeps getting cycled through numerous addresses and may have become stuck in an infinite loop, which prevents you from accessing the website you wanted to.

In some cases, turning off or rejecting cookies can lead to this issue. The issue could be resolved by deleting your cookies for this site or permitting cookies from third parties.

An illustration of how cookies are used has been given on the link below

https://brainly.com/question/28142160

#SPJ4

An operating system is an example of which of the following?
A. Hardware
B.software
C.networking system
D.messaging system

Answers

B. Software.

Operating system is a software the supports a computer’s basic functions.

In __________ write, the data are stored in the cache, and control returns to the caller.

Answers

In an asynchronous write, the data are stored in the cache, and control returns to the caller.

An asynchronous write is a write operation that does not block the caller until the data is actually written to the underlying storage. The data is instead stored in the cache, and control returns to the caller. When the data is eventually written to the underlying storage, the write is said to be "completed".

Asynchronous writes can be useful in situations where blocking the caller is not desirable, or where the time to complete the write is not known in advance. For example, an application that is writing data to a slow storage device may choose to use an asynchronous write in order to avoid blocking the caller while the data is being written.

Learn more about Asynchronous write here:

https://brainly.com/question/10057909

#SPJ4

What Is Classification of Computers?

Answers

Answer:

Explanation:Sr.No.

Type

Specifications

1

PC (Personal Computer) or Micro-Computers

It is a single user computer system having a moderately powerful microprocessor. It is termed as a computer that is equipped microprocessor as its CPU.

2

Workstation

It is also a single user computer system, similar to the personal computer, however, has a more powerful microprocessor.

3

Mini-Computer

It is a multi-user computer system, capable of supporting hundreds of users simultaneously.

4

Main Frame

It is a multi-user computer system, capable of supporting hundreds of users simultaneously. Software technology is different from minicomputer.

5

Super-Computer

It is an extremely fast computer, which can execute hundreds of millions of instructions per second.

two examples of how scientists, technologists, engineers, and mathematicians may work together to create a new product

Answers

Answer:

Which places were Included in Nepal by Pratap. Singh Shah in his short rule

_____ compress data so that it can be transmitted in a fast and efficient manner and then decompress it when it is to be read or played back.

Answers

Codec compress data so that it can be transmitted in a fast and efficient manner and then decompress it when it is to be read or played back.

In computing, a codec is a computer program that encodes or decodes digital data. The term codec is a portmanteau of "coder-decoder". A codec encodes data for transmission, storage or compression, or decompresses and plays back encoded data.

There are many different codecs available, each with its own advantages and disadvantages. Some codecs are better suited for certain types of data than others. For example, video codecs are designed to compress moving images, while audio codecs are designed to compress audio data.

When choosing a codec, it is important to consider the file size, the quality of the encoded data, the CPU usage, and the compatibility with the playback software.

Learn more on codec here:

https://brainly.com/question/14338673

#SPJ4

_____ often function as standards or procedures to be used when configuring or maintaining systems.

Answers

The security policies often function as standards or procedures to be used when configuring or maintaining systems.

What is in a security policy?

A security policy is known to be a kind of a written document  that is know to be made by an organization stating how one can protect the organization from any form of threats, such as computer security threats, and how to handle cases when they do happen.

Note that A security policy need  to identify all of a firm's  assets and also all the likely threats to those assets.

Therefore, The security policies often function as standards or procedures to be used when configuring or maintaining systems.

Learn more about security policies  from

https://brainly.com/question/14469263

#SPJ1

An office uses an application to assign work to its staff members. The application uses a binary sequence to represent each of 100 staff members. What is the minimum number of bits needed to assign a unique bit sequence to each staff member?.

Answers

An office uses an application to assign work to its staff members. The application uses a binary sequence to represent each of 100 staff members. The minimum number of bits required to assign a unique bit sequence is 7.

This means that the office can have up to 2^7, or 128, different staff members. This is a pretty small office, and it's likely that they'll never have more than 100 staff members, so they don't need to worry about running out of space.

This means that each staff member can be assigned a unique work assignment with just 7 bits. This is a very efficient way to assign work, and it ensures that each staff member gets a unique assignment.

Learn more on bits here:

https://brainly.com/question/28214531

#SPJ4

What controls the interactions between hardware and user applications?(1 point) domains domains programming languages programming languages system software system software hardware layers

Answers

The system software controls the interactions between hardware and user applications.

Which software controls the interaction between the user and the hardware?

The system software is known to be made up of the Operating system (OS).

The function of the Operating system (OS) is that it is a kind of a software that helps to controls as well as handle  and coordinates the computer hardware devices and it also function by helping to runs other software as well as applications on a computer.

Therefore, The system software controls the interactions between hardware and user applications.

Learn more about system software  from

https://brainly.com/question/24321656
#SPJ1

Clicking the help button at a dialog box opens the _____ support website with specific information about the dialog box.

Answers

By clicking the help button at a dialog box opens the control support website with specific information about the dialog box.

What is a Dialog box?

The dialog box is known to be a kind of graphical control tool that is said to be in a way of a small window.

The term Help Button is one that functions as a kind of control that a user can select or use to show the application in regards to their help system.

It is known to be one that often helps one to communicates information to the user as well as quickens them for the set  response.

The Dialog boxes are said to be known to be "modal" or "modeless", based on if they block interaction and as such, By clicking the help button at a dialog box opens the control support website with specific information about the dialog box.

Learn more about dialog box from

https://brainly.com/question/23119185
#SPJ1

In the tcp/ip model, what layer is considered so simple that it is ignored entirely?

Answers

In the tcp/ip model, what layer is considered so simple that it is ignored entirely is the Physical layer.

What is the Physical layer of tcp/ip model?\

The Physical Layer is known to be called the smallest or the lowest layer of the TCP/IP model.

Note that it is one that helps to handle  data in the form of bits and this  layer helps to deal with the host to host communication in any given network.

Therefore, In the tcp/ip model, what layer is considered so simple that it is ignored entirely is the Physical layer.

Learn more about tcp/ip model from

https://brainly.com/question/17387945

#SPJ1

In the TCP/IP model, what layer is considered so simple that it is ignored entirely? a. Physical b. Data Link c. Application d. Network

what does an operating system do

Answers

Answer: An operating system manages and runs all of the hardware and software installed onto the computer.

Explanation:

It performs basic tasks such as file, memory, and process management, handling input and output, and controlling peripheral devices such as disk drives and printers.

calculate the ideal mechanical advantage of the inlcined plane system.

Answers

Answer:

To find the ideal mechanical advantage of an inclined plane, divide the length of the slope by its height. An inclined plane produces a mechanical advantage to decrease the amount of force needed to move an object to a certain height; it also increases the distance the object must move

Explanation:

hope that explains it

The ____ orders data and instructions from cache or ram based on the current task.

Answers

The prefetch unit orders data and instructions from cache or ram based on the current task.

Prefetch is a feature, introduced in Windows XP and still used in Windows 10, that stores specific data about the applications you run to help them start up faster. Prefetch is an algorithm that helps anticipate cache errors (when Windows requests data that is not stored in the disk cache), and stores that data on the hard disk for easy retrieval.

Superfetch is a feature that tries to determine which application you are going to launch and then loads all the necessary files and data into memory. Both of these features require several read and write operations to function.

You can learn more about Prefetch Windows here https://brainly.com/question/9810355

#SPJ4

Expressed as a power of two, there are ____________ megabytes in a terabyte. use a ^ to indicate an exponent, like 2^3 is 2 to the 3rd power.

Answers

Expressed as a power of two, there are  2^20 megabytes in a terabyte. use a ^ to indicate an exponent, like 2^3 is 2 to the 3rd power.

As anyone who has ever dealt with large amounts of data knows, storage is crucial. And when it comes to storage, size matters. A lot.

That's why it's important to know that a terabyte is equal to 2^20 megabytes. In other words, a terabyte is a whopping 1,048,576 megabytes.

For context, a megabyte is equal to 1,000,000 bytes, so a terabyte is equal to 1,048,576,000,000 bytes. That's a lot of data.

In practical terms, this means that a terabyte can store upwards of 2 million high-resolution photos, or 250 hours of high-definition video.

So, if you're dealing with large amounts of data, be sure to keep this number in mind. A terabyte is a lot of storage space, and it's important to know just how much data that really is.

Learn more on storage space here:

https://brainly.com/question/27837430

#SPJ4

How do clustered systems differ from multiprocessor systems? what is required for two machines belonging to a cluster to cooperate to provide a highly available service?

Answers

In order to complete a distributed computational task, clustered systems are often built by fusing several computers into a single system.

On the other hand, multiprocessor systems could be a single physical object made up of numerous CPUs.

A multiprocessor system is more strongly coupled than a clustered system. While the processors in a multiprocessor system might be able to interact using shared memory, clustered systems require messages.

The state on the two machines needs to be copied and regularly updated for two machines to deliver a highly available service. If one of the machines breaks down, the other might step in to take over.

Learn more on clustered systems here:

https://brainly.com/question/26150121

#SPJ4

Which windows feature, introduced in windows 95, helped eliminate device resource conflicts and precluded manual device configuration with jumpers?

Answers

The windows feature, introduced in windows 95, helped eliminate device resource conflicts and precluded manual device configuration with jumpers is known to be  called option b. Plug and Play.

What is meant by plug and play?

Plug and Play (PnP) is known to be an aspect of Windows that helps any  computer system to be able to adapt to hardware alterations with low intervention by a given user.

Note that user is one who can be able to can add as well as remove devices without to use of manual configuration, and without having the  knowledge of computer hardware.

Hence, The windows feature, introduced in windows 95, helped eliminate device resource conflicts and precluded manual device configuration with jumpers is known to be  called option b. Plug and Play.

Learn more about device configuration from

https://brainly.com/question/14949260
#SPJ1

In the blank______ age, infinite quantities of facts are widely available to anyone who can use a computer.

Answers

In the option B. information age, infinite quantities of facts are widely available to anyone who can use a computer.

Why is it called the Information Age?

This is known to be the time period in  history that is said to be called the Information Age.

It was called so due to the fact that it makes a lot of things available such as the instant access to knowledge as it could have been difficult or very hard to find formerly.

Therefore, In the option B. information age, infinite quantities of facts are widely available to anyone who can use a computer.

Learn more about information age from

https://brainly.com/question/10385855

#SPJ1

In the _________ age infinite quantities of facts are widely available to anyone who can use a computer.

A. intelligence

B. information

C. people

D. knowledge

Size vs capacity the netvidsdatabase class had two methods called size and capacity. what is the difference between size and capacity?

Answers

The NetvidsDatabase class is a data structure that stores information about movies. The size of the NetvidsDatabase represents how many movies are currently in the database, while the capacity represents how many movies can be stored in the database before the underlying array needs to be expanded.

When the NetvidsDatabase is first created, its size and capacity are both set to 0. As movies are added to the database, the size is incremented. If the size reaches the capacity, then the capacity is doubled and the underlying array is expanded to accommodate the new movies.

The NetvidsDatabase class is an efficient way to store and manage information about movies. The size and capacity parameters help to ensure that the underlying array does not need to be frequently expanded, which can save time and resources.

Learn more here:

https://brainly.com/question/28347588

#SPJ4

What are the major activates of operating systems with regard to file management?

Answers

Creating, deleting, manipluation, backing up file and mapping to permanent storage are the major activities of operating systems with regard to file management.

File basically refers to collection of specific information stored in the memory of computers and file management refers to the process of manipulating these files, such as  creating, modifying and deleting files.

Following are the five major activities of all operating systems in regard to file management :

Creating and deleting files:  This service creates new files and places them at the particular locations. Also it deletes unnecessary files.Creating and deleting directories: This function helps to store the files in separate folders known as directories that support users to search files quickly. Also deleting files from directories is performed by this activate.File manipulation instructions: It provides functionality to manipulate files and directories, such as modifying the data on files and changing  file names in the directories.Mapping to permanent storage: It helps in mapping files onto secondary storage so that the files can be located easily and quickly.Backing up files: This service prevents data loss by providing a backup facility of data on stable and secure storage devices.

File management is one of the basic and important functions that all operating systems perform. Therefore, creating, deleting, backing up and manipulation are the major activities of operating system regarding files management.

You can learn more about file management at

https://brainly.com/question/12736385

#SPJ4

To represent 9 different colours, what is the minimum
colour depth needed? Give your answer in bits.

Pls help!!

Answers

Answer:

4 bits

Explanation:

3 bits gives you 8 combinations, which is not enough.

4 bits gives you 16 combinations.

n bits gives you 2ⁿ combinations in general.

To represent 9 different colors, the minimum color depth needed is 4 bits.

A bit is the smallest unit of digital information, representing either a 0 or a 1 in binary code.

In computing, bits form the foundation of data storage and processing, enabling the representation of complex information through combinations of 0s and 1s.

To represent "n" different colors, there is a need to find the smallest "k" such that [tex]2^k[/tex] is greater than or equal to "n."

For this case, n = 9 (since there are 9 different colors).

Now, we find the smallest "k" such that [tex]2^k \le 9[/tex]:

[tex]2^k = 2^3 \\[/tex]

= 8 (with 3 bits, we can represent 8 different colors)

[tex]2^4[/tex] = 16 (with 4 bits, we can represent 16 different colors)

Since 4 bits ([tex]2^4[/tex]) is the smallest power of 2 that is greater than or equal to 9, the minimum color depth needed to represent 9 different colors is 4 bits.

Learn more about bit here:

https://brainly.com/question/13014227

#SPJ7

In a print statement, you can set the ________ argument to a space or empty string to stop the output from advancing to a new line. newline end separator stop

Answers

In a print statement, you can set the end argument to a space or empty string to stop the output from advancing to a new line. newline end separator stop.

What is a print statement?

The print statement is known to be an element or a tool that is often used to send output to a given standard output unit.

This can be your monitor, or even your printer  of a given computer system.

Therefore, In a print statement, you can set the end argument to a space or empty string to stop the output from advancing to a new line. newline end separator stop.

Learn more about print statement from

https://brainly.com/question/27221616

#SPJ1

Since the ntfs file system enjoys more widespread compatibility with other operating systems, it is often used on removable devices such sd cards and usb flash drives.
a. true
b. false

Answers

Answer: false

Explanation:

Design an algorithm for function to find the longest substring which contains 2 unique characters in a given stirng. you may list steps or psuedo code.

Answers

The fake code consists of the following two classes: public class LongestSubstr and import java.util.HashSet.

How Do Algorithms Work?

An algorithm is a process used to carry out a computation or solve a problem. In either hardware-based or software-based routines, algorithms function as a detailed sequence of instructions that carry out predetermined operations sequentially. All aspects of information technology employ algorithms extensively.

An algorithm is a series of instructions for completing a task or solving a conundrum.A common example of an algorithm is a recipe, which includes thorough instructions for making a dish or meal.An algorithm is a method for performing calculations or finding solutions to issues.Algorithms perform as a precise set of instructions that carry out preset activities consecutively in either hardware-based or software-based routines.Algorithms play a big role in information technology across the board.

Introduction to Algorithm Types:

Algorithm using brute force. Avaricious algorithmAlgorithm with recursion.

To learn more about algorithm, refer to:

https://brainly.com/question/13800096

#SPJ4

Other Questions
If a seller carries back $12,000 at 10 percent interest and closes on july 9 with the first loan payment due september 1, the interest on the new loan on the settlement worksheet will be:_____. Hypothermia is an excessive decline in a body temperature. true/ false how many zeros will be in the product of 5 x 105 the 105 is the 10 of the power of 5 which of these measurements has only nonsignificant zeros? group of answer choices 506 ml 400. ml 0.0037 ml 60.0 ml Which actions can the mentor take to develop effective leadership qualities in the aspiring leader? select all that apply. one, some, or all responses may be correct. rewrite the following statements less formally, without using variables. determine, as best as you can, whether the statements are true or false The first amendment clause barring the government from passing any laws that prohibit an individual's practice of his or her religion is known as the ______ clause. PETS AND FOOD IS NOT ALOUD IN THE STORE The division of power, by a constitution, between a central government and regional governments is known as? Marketing is an activity that creates value for customers, clients, partners, and society at large. a firm does this by blank______. (select three answers) At the development team meeting someone suggests building database queries dynamically from form fields on the login page. how do you respond? what do you use to support your position? how many significant figures of .00000281 mA Fixed assets are property and buildings that a firm expects to use for more than? Occupational safety and health administration (osha) violations are categorized into three types: willful, intentional, and non-intentional. a. true b. false Need help asap will give u brainliest Exercise 6 Place a check next to each sentence in which the adverb is positioned correctly.Scrubbing a dirty chain with kerosene and an old toothbrush will usually do the trick. 5 pairs of words than can be used for interchangeably as noun or verb PLEASE HELPPPP. WILL GIVE BRAINLIEST AND 5 STR RATINGGG Ryan has nine 14-ounce bags of popcornto repackage andsell at the school fair.A small bag holds 3 ounces. How manysmall bags can he make? The nurse is providing care for a client with a recent transverse colostomy. which observation requires immediate notification of the primary health care provider?