PLEASE ANYONE!!which present margins would be best to get the most information to fit on the page​

Answers

Answer 1
Answer:

Answer:

Normal Margin is fit on the page. The default margins for Microsoft Word is normal margin.                                      

Explanation:

The paper visual effect give the document’s theme and quality. Margins send visual effects. Making a document right helps you to send the right message to readers. Use a small paper and adding a border.

You can change the page layout that people notice first with size, orientation, and margins.

Page margins make your document readable. Margins make the document more readable, make text look inviting, and given reviewers.

With narrower margins, you can reduce more words on-page.

To many words in a line make it difficult to read the document.

Margins are of many types

  • Normal Margin
  • Narrow margins
  • Moderate margins
  • Wide margins

Normal gives an equal inch to all sides of the page.

Narrow margins give little room to each column.

Average margins squeeze words from left and right.

Wide gives space when proofing the manuscript.

Answer 2
Answer:

Answer:

A.) narrow margins

Explanation:

e2020


Related Questions

Quicksort reaches the worst-case time complexity when:Partition is not implemented in placePicking the largest one of input or partitioned data as pivot valueMedian of input or partitioned data is expensive to calculateData is sorted already and always pick the median as pivotChoose the incorrect statement:When the median is always picked as pivot in input/partitioned data, then quicksort achieves the best-case time complexity.Mergesort has O(N(log(N)) time complexity for its worst case, average case and best caseInsertionsort reaches its best-case time complexity O(N log(N)) when the input data is pre-sortedQuicksort is practically fast and frequently used sorting algorithm.Choose the incorrect statement:In the lower bound analysis by using decision tree, each branch uses one comparison to narrow down possible casesIn the lower bound analysis by using decision tree, he number of required comparisons can be represented by height of decision treeA decision tree to sort N elements must have N^2 leavesO(N log(N)) lower bound means that comparison-based algorithm cannot achieve a time complexity better than O(N log(N))Choose the incorrect statement regarding time complexity of union-find operation:Inverse Ackermann function does not depend on N and is a constant factor.When we use arbitrary union and simple find for union-find operation, the worst-case time complexity is O(MN) for a sequence of M operations and N elementsUnion-by-size and Union-by-rank both improve the time complexity to O(M log(N)) for a sequence of M operations and N elementsTo finish the entire equivalence class computation algorithm, we need to go over each pair of elements, so if we use union-by-rank with path compression for find operation, then the overall time complexity is O(N^2 log*N), where log*N denotes the inverse Ackermann function.Choose the incorrect statement regarding Dijstraâs algorithmDijstraâs algorithm is a greedy algorithmDijstraâs algorithm requires to dynamically update distance/costs/weights of paths.To begin with, Dijstraâs algorithm initializes all distance as INFDijstraâs algorithm can be implemented by heaps, leading to O(|E|+|V| log(|V|)) time complexity, where, particularly, log(|V|) is due to "insert" operation in heaps.
Write a function copy that takes two arrays A and B, both of size N. The function then copies all N values from A into B and then displays it.
What is not an operating system
Write a program that can be used to assign seats for a commercial airplane. The airplane has 13 rows, with six seats in each row. Rows 1 and 2 are first class, rows 3 through 7 are business class, and rows 8 through 13 are economy class. Your program must prompt the user to enter the following information: a. Ticket type (first class, business class, or economy class)b. Desired seatSo far the code I have is ... now can I go about finishing to retreive the user input ? (This is for C++)#include #include using namespace std;int main(){ int r, c; char seat_resvr; char tic_type; char availability[13][6], reserved[2]; int row_num, col_num; char seats; cout << "A program that lets you choose your seating arrangement on an airplane"; cout << endl; char A[13][6]; for (int r = 0; r < 13; r++) { for (int c = 0; c < 6; c++) A[r][c] = '*'; } /*int row, seat; cin >> row >> seat; A[row - 1][seat - 1] = 'X';*/ cout << " A B C D E F" << endl; for (int r = 0; r < 13; r++) { cout << "Row" << setw(3) << r + 1 << " "; for (int c = 0; c < 6; c++) cout << A[r][c] << ' '; cout << endl; } cout << endl << "* -- available seat" << endl << "X -- occupied seat" << endl << endl << "Rows 1 and 2 are for first class passengers." << endl << "Rows 3 through 7 are for business class passengers." << endl << "Rows 8 through 13 are for economy class passengers." << endl; cout << "To reserve a seat enter Y/y (Yes), N/n(No):" << endl; cin >> seat_resvr; reserved[2] = 'X'; return 0;}
Write an if/else statement that assigns 0 to x when y is equal to 10; otherwise it should assign1 to x.

What technology would you like to use or see developed that would help you be a "citizen of the world"?

Answers

Answer and explanation:

While traveling abroad the main barrier to be considered is language. Entrepreneurs should focus special attention on developing mobile apps that interpret people's segments accurately so regardless of the country and language they can communicate through the app and make them feel they are "citizens of the world".

Write a program using integers user_num and x as input, and output user_num divided by x three times.Ex: If the input is:20002Then the output is:1000 500 250Note: In Python 3, integer division discards fractions. Ex: 6 // 4 is 1 (the 0.5 is discarded).LAB ACTIVITY2.29.1: LAB: Divide by x0 / 10main.pyLoad default template...12''' Type your code here. '''

Answers

Answer:

Following are the code to the given question:

user_num = int(input())#defining a variable user_num that takes input from user-end

x = int(input())#defining a variable x that takes input from user-end

for j in range(3):#defining for loop that divides the value three times

   user_num = user_num // x#dividing the value and store integer part

   print(user_num)#print value

Output:

2000

2

1000

500

250

Explanation:

In the above-given program code two-variable "user_num and x" is declared that inputs the value from the user-end and define a for loop that uses the "j" variable with the range method.

In the loop, it divides the "user_num" value with the "x" value and holds the integer part in the "user_num" variable, and prints its value.  

Which business application uses electronic tags and labels to identify objects wirelessly over short distances? A. Radio-frequency identification
B. Global positioning systems
C. Geographic information systems
D. Location-based services

Answers

Answer:

Option A (Radio Frequency Identification)

Explanation:

Option A (Radio Frequency Identification)

Radio Frequency Identification:

This technology uses radio waves to transfer data between a reader and movable items. The benefit of this technology is we do not require physical contact with items and scanner.

Components of RFID:

  • tags (computer chip)
  • Reader
  • Communication System
  • RFID software

There are two RFID standards:

  • Electronic Product Code (EPC) standard
  • International Standard Organization (ISO)

.Although SQL is a language, you donât use it to write applications? (true, false)

Answers

Answer:

True

Explanation:

SQL stands for structured  query language , which is used to query Relational Database Management systems like SQLServer. This is not for writing applications like business layer where we use some programming languages.SQL is meant for data layer to perform CRUD operations against database.

CRUD operations :

Create

Read

Update

Delete

we can perform above operations on database by using SQL query language

Following a security assessment, the Chief Information Security Officer (CISO) is reviewing the results of the assessment and evaluating potential risk treatment strategies. As part of the CISO’s evaluation, a judgment of potential impact based on the identified risk is performed. To prioritize response actions, the CISO uses past experience to take into account the exposure factor as well as the external accessibility of the weakness identified. Which of the following is the CISO performing?A. Documentation of lessons learned
B. Quantitative risk assessment
C. Qualitative assessment of risk
D. Business impact scoring
E. Threat modeling

Answers

Answer:

The correct answer to the following question is option B). Quantitative risk assessment.

Explanation:

QRA ( Quantitative Risk assessment) is the objective risk  assessment tool that is used to project threat impacts.

Quantitative Risk Assessment provides the estimate of magnitude of the consequences for each of the identified budget threats.

It set out to measure, define, provide, and predict the confidence  level of the likelihood and the occurrence of the threat impacts.

What is copyright and what are your thoughts on it?

Answers

It’s a type of property marking that gives an owner the right to copy creative pieces/work. I think that it makes life easier

Answer:

Copyright is a type of intellectual property that gives its owner the exclusive right to make copies of a creative work.

Explanation:

Other Questions