What are some options available in the Write & Insert Fields group? Check all that apply.
O Start Mail Merge
O Highlight Merge Fields
O Edit Recipient List
O Address Block
O Greeting Line
O Rules

Answers

Answer 1

Answer:

Highlight Merge Fields

Address Block

Greeting Line

Rules

Explanation:

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

A Mail Merge is a Microsoft Word feature that avails end users the ability to import data from other Microsoft applications such as Microsoft Access and Excel. Thus, an end user can use Mail Merge to create multiple documents (personalized letters and e-mails) at once and send to all individuals in a database query or table.

Hence, Mail Merge is a Microsoft Word feature that avails users the ability to insert fields from a Microsoft Access database into multiple copies of a Word document.

Some of the options available in the Write & Insert Fields group of Mail Merge are;

I. Highlight Merge Fields.

II. Address Block.

III. Greeting Line.

IV. Rules.


Related Questions

#include
main()
{
int i, n=10, rem, inc=0;
scanf("%d",&n);
for(i=1; i =3)
inc++;
else;
inc--;
}
printf("Final Value=\n",inc);
}
SOLVE THIS PROGRAM...

Answers

Answer:inpossible !889

Explanation: I npossible !889

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.

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

The third assignment involves writing a Python program to compute the cost of carpeting a room. Your program should prompt the user for the width and length in feet of the room and the quality of carpet to be used. A choice between three grades of carpeting should be given. You should decide on the price per square foot of the three grades on carpet. Your program must include a function that accepts the length, width, and carpet quality as parameters and returns the cost of carpeting that room. After calling that function, your program should then output the carpeting cost.
Your program should include the pseudocode used for your design in the comments. Document the values you chose for the prices per square foot of the three grades of carpet in your comments as well.
You are to submit your Python program as a text file (.txt) file. In addition, you are also to submit a test plan in a Word document or a .pdf file. 15% of your grade will be based on whether the comments in your program include the pseudocode and define the values of your constants, 70% on whether your program executes correctly on all test cases and 15% on the completeness of your test report.

Answers

Answer:

# price of the carpet per square foot for each quality.

carpet_prices=[1,2,4]

def cal_cost(width,height,choice):

 return width*height*carpet_prices[choice-1]  

width=int(input("Enter Width : "))

height=int(input("Enter Height : "))

print("---Select Carpet Quality---")

print("1. Standard Quality")

print("2. Primium Quality")

print("3. Premium Plus Quality")

choice=int(input("Enter your choice : "))

print(f"Carpeting cost = {cal_cost(width,height,choice)}")

Explanation:

The cal_cost function is used to return the cost of carpeting. The function accepts three arguments, width, height, and the choice of carpet quality.

The program gets the values of the width, height and choice, calls the cal_cost function, and prints out the string format of the total carpeting cost.

Question 4 (5 points)
The more RAM you have, the less things your computer can do at the same time.
True
False
ent:​

Answers

The correct answer is False

Complete the sentence.
If you wanted the best performance for a game that requires a powerful graphics processor and lots of memory, you
would run it on a
tablet
desktop
smartphone

Answers

You would run it on a desktop, as they usually can process things much better.

Suppose the following sequence of bits arrives over a link:
11010111110101001111111011001111110
Show the resulting frame after any stuffed bits have been removed. Indicate any errors that might have been introduced into the frame.

Answers

Answer:

ok

Explanation:

For which of the following tasks would a for-each loop be appropriate?
A. Reversing the order of the elements in an array.
B. Printing all the elements at even indices of an array.
C. Printing every element in an array.
D. Determining how many elements in an array of doubles are positive.
E. Determining whether an array of Strings is arranged in alphabetical order.
F. Printing every even number in an array of ints.

Answers

Answer:

The answer is "Option B, C,  and F".

Explanation:

In the For-each loop, it is used for traversing items in a sequence is the control flow expression. It typically required a loop becomes referred to it as an enhanced loop for iterating its array as well as the collection elements. This loop is a version shortcut that skips the need for the hasNext() method to get iterator and the loop and over an iterator, and the incorrect choice can be determined as follows:

In choice A, it is wrong because it can't reverse the array element.In choice D, it is wrong because it can't determine the array of positive.In choice E, it is wrong because it can't determine an array of the sting in alphabetical order.

Is a NAS just a collection of hard drives or a computer

Answers

Answer:

NAS systems are networked appliances that contain one or more storage drives, often arranged into logical, redundant storage containers or RAID.

As you will solve more complex problems, you will find that searching for values in arrays becomes a crucial operation. In this part of the lab, you will input an array from the user, along with a value to search for. Your job is to write a C++ program that will look for the value, using the linear (sequential) search algorithm. In addition, you should show how many steps it took to find (or not find) the value, and indicate whether this was a best or worst case scenario (... remember the lecture). You may refer to the pseudo-code in the lecture, but remember that the details of the output and error conditions are not specified there. Also, note that in pseudo-code arrays are sometimes defined with indices 1 to N, whereas in C++ the indexes span from 0 to N-1.
The program will work as follows. First, you should ask the user to enter the size of the array, by outputting:
"Enter the size of the array: "
to the console. If the user enters an incorrect size, you should output the error message:
"ERROR: you entered an incorrect value for the array size!"
and exit the program. If the input is a valid size for the array, ask the user to enter the data, by outputting
"Enter the numbers in the array, separated by a space, and press enter: "
Let the user enter the numbers of the array and store them into a C++ array. Up to now, this should be exactly the same code as Lab#2. Next, ask the user a value v to search for in the array (called the "key"), by outputting:
"Enter a number to search for in the array: " to the screen, and read the key v.
Search for v by using the linear search algorithm. If your program finds the key, you should output:
"Found value v at index i, which took x checks. "
where i is the index of the array where v is found, and x is the number of search operations taken place.
If you doesn't find the key, then output: "
The value v was not found in the array!"
Then indicate whether you happened to run into a best or worst case scenario. In case you did, output: "
We ran into the best case scenario!" or "We ran into the worst case scenario!"
otherwise, don't output anything.

Answers

Answer:

#include<iostream>

using namespace std;

int main() {

cout<<"Enter The Size Of Array: ";

int size;

bool isBestCase=false;

cin>>size;

if(size<=0){

cout<<"Error: You entered an incorrect value of the array size!"<<endl;

return(0);

}

int array[size], key;

cout<<"Enter the numbers in the array, separated by a space, and press enter:";

// Taking Input In Array

for(int j=0;j<size;j++){

cin>>array[j];

}

//Your Entered Array Is

for(int a=0;a<size;a++){

cout<<"array[ "<<a<<" ] = ";

cout<<array[a]<<endl;

}

cout<<"Enter a number to search for in the array:";

cin>>key;

for(i=0;i<size;i++){

 if(key==array[i]){

   if(i==0){

     isBestCase=true; // best case scenario when key found in 1st iteration

     break;

   }

 }

}

if(i != size){

 cout<<"Found value "<<key<<" at index "<<i<<", which took " <<++i<<" checks."<<endl;

}  else{

 cout<<"The value "<<key<<" was not found in array!"<<endl;

 cout<<"We ran into the worst-case scenario!"; // worst-case scenario when key not found

}

if(isBestCase){

cout<<"We ran into the best case scenario!";

}

return 0;

}

Explanation:

The C++ source dynamically generates an array by prompting the user for the size of the array and fills the array with inputs from the user. A search term is used to determine the best and worst-case scenario of the created array and the index and search time is displayed.

write an algorithm and draw a flowchart to calculate the sum of of the first 10 natural numbers starting from 1​

Answers

Answer:

#include <stdio.h>

void main()

{

int j, sum = 0;

printf("The first 10 natural number is :\n");

for (j = 1; j <= 10; j++)

{

sum = sum + j;

printf("%d ",j);

}

printf("\nThe Sum is : %d\n", sum);

}

Within a loop

Step 1: Initialize a variable to 1 (say x=1)

Step 2: Specifiy the condition

In this case x<=10

Step 3: Increment the variable by 1

using increment operator x++

OR

simply x+=1(x=x+1)

Step 4: Print the value of variable

Terminate the loop

Explanation:


What is the total March Expenditure now? (cell Q2)

Answers

I did a lot to do it lol was

Why is sequencing important?

A. It allows the programmer to test the code.
B. It allows the user to understand the code.
C. It ensures the program works correctly.
D. It makes sure the code is easy to understand.

Answers

Answer:

c i think but if not go with d

Answer:

C

Explanation:

It ensures the program works correctly

hope it helps!

Other Questions
What is a working model used to test a design called? Maria needs $2.35 to buy a magazine. The only money she has is a jar of nickels and dimes. Write an equation in standard form for the different amounts of nickels and dimes she could use. How was the settlement of Virginia different from the settlement of Massachusetts?A. Virginia was created as a haven for Native American to escape persecution by English colonists.B. Massachusetts was created as a haven for Quakers from England.C. Massachusetts was settled primarily for economic reasons rather than to escape religious persecution.D. Virginia was settled primarily for economic reasons rather than to escape religious persecution How do you define wellness? Marquette King, formerly of the Denver Broncos, is practicingkicking off using a kicking holder with the ball on the ground.For one of the kicks the ball reaches a height of 90.6 m andlands on the ground 53 yds (48.5 m) away. Find the magnitudeof the initial velocity given by his kick to the ball. Treat airresistance as negligible. Hint: Even though the horizontal andvertical motions are independent, there is a quantity that iscommon to both of them. Brendan buys a used car in April 2020 from his neighbor for $20,000. After one month, he loses his job and decides to sell the car to get some cash. He sells the car for $22,000 to a car dealer. The dealer fixes a few things here and there and sells the car for $27,000 in July 2020. Because of these transactions, the 2020 nominal GDP increases by ______ dollars. Consider the following random experiment. First, roll a die and observe the number of dots facing up; then, toss a coin the number of times that the die shows and observe the total number of heads. For example, if the die shows three dots facing up and the coin (which is then tossed three times) comes up heads exactly twice, then the outcome of the experiment can be represented as (3, 2).a. Determine a sample space for this experiment.b. Determine the event that the total number of heads is even. Which expression represents "the product of a and b decreased by 9"? What will happen to a plant if put in a box with only one hole? At Pete's pizza, the cost of a 1 topping pizza is $17.35 and the cost of a 3 topping pizza is $21.05.Assuming the cost of a pizza follows a linear model, write an equation that represents C, the cost of any pizza with t,toppings. PLZ HELP PLZZZZZZZZZZ Drag and drop each equation to match the type of solution. How does global warming affect earths troposphere? 13.Which shows the order of increasing ionization energy?a.Si, Al, Mg, Nab.Ga, Ge, As, Sec.Be, Mg, Ca, Srd.F, Cl, Br, I What is the proper question tag: I have many duties a)haven't i b) hadn't i c)don't i A cylindrical can of tennis balls holds a stack of three tennis balls so that they touch the can at the top,bottom,and sides. The radius of each tennis ball is 1.25 inches. Find the volume inside the can that is not taken up by three tennis balls.round to the nearest tenths. Find the area, to the nearest hundredth, of the figure Solve the inequality. Please show your math work step by step. -3x+4 LOGIC PROBLEM 3. CALL TO ORDER by MARY MARKS CEZUS Sally was just about to complete her first week as a waitress with no major problems when in walked four of her friends. Each ordered a different sandwich, drink, and salad. To test her logic and her waitressing skills, they gave their order to Sally as clues. Sally successfully placed their orders in front of them within a few minutes. Can you, too, match each friend's name (one is Mike), sandwich, drink, and salad (one is a fruit salad)? 1. The four orders are Kathy's, the one with a hamburger, the one with a cola, and the one with the tossed salad. 2. Linda does not want the tuna melt. 3. Jeff, the person who wants the lemon-lime drink, and the person who wants the grilled cheese, all three think this is great fun. 4. The orange drink does not go with the potato salad. 5. Jeff wants neither the cola nor the tuna melt. 6. The tossed salad does not go with the chicken fillet. 7. Linda and the person who ordered the grilled cheese are going shopping after lunch. 8. Neither the coleslaw nor the root beer go with the hamburger. 9. The coleslaw goes with neither the chicken fillet nor the lemon-lime. . As of December 31, 2019, Sheffield Corp. had $3000 of raw materials inventory. At the beginning of 2019, there was $2500 of materials on hand. During the year, the company purchased $375000 of materials; however, it paid for only $322500. How much inventory was requisitioned for use on jobs during 2019