Answer:
Page orientation
Explanation:
Required
What does portrait and landscape represent?
For better understanding, I'll narrow down the question to Microsoft Office Word. The explanation can be applied to other concepts.
Analysing the option one after the other.
Page layout: This is a term that describes the graphical representation of each document page, visually.
Page Size: This is a term that represents the length and width of the page. Common page sizes are LETTER, A4, A3, and so on.
The above (2) do not in any way represent what portrait and landscape represent.
Page orientation: This is a way the document is represented and it's a direct synonym for landscape and portrait.
Since (1) & (2) do not represented the given term, the last option is incorrect.
Hence,
Page orientation correctly answers the question
Answer:
Page orientation
Explanation:
I took the test
plsss help anyone PLSSSSS
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This question is about to write HTML code for the given sub-questions. In each sub-question different scenario is given. So, the answer to these questions is given below in the order they asked.
1. In this question it is asked to write a code of 5 students' name in a paragraph with a different color that make them unique.
<html>
<body>
<p style="color:red;">Student A</p>
<p style="color:blue;">Student B</p>
<p style="color:black;">Student C</p>
<p style="color:orange;">Student D</p>
<p style="color:green;">Student E</p>
</body>
</html>
2. In it, the below is given code show an ordered list of subjects that you're offering.
<html>
<body>
<h2>An ordered HTML list</h2>
<ol>
<li>Introduction to Computing</li>
<li>Communication Skills</li>
<li>Software Designing</li>
</ol>
</body>
</html>
3. The below-given HTML code shows the unordered list of parts that make up the computer.
<html>
<body>
<h2>An unordered HTML list</h2>
<ul>
<li>CPU</li>
<li>RAM</li>
<li>Motherboard</li>
<li>Mouse</li>
<li>Keyboard</li>
<li>Monitor</li>
</ul>
</body>
</html>
Ray is recording his voice for a presentation and can adjust the bit depth. Increasing the bit depth will mean that sound is sampled more
Answer:
this is true because of the depth interference
how do media and networks interact
Answer:
Media are connected to networks that make information easier to access and pass on.
Software that is downloaded from the internet fits into four categories what are they
Answer:
Application Software
Driver Software.
System Software
Programming Software
Answer:
application, system,driver and programming software
Five Star Retro Video rents VHS tapes and DVDs to the same connoisseurs who like to buy LP record albums. The store rents new videos for $3.00 a night, and oldies for $2.00 a night.
Write a program that the clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals.
The program should prompt the user for the number of each type of video and output the total cost.
An example of the program input and output is shown below:
Enter the number of new videos: 3
Enter the number of oldies: 2
The total cost is $13.0
The clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals is of three types.
What is Five Star Retro Video ?The same discerning individuals who enjoy purchasing LP record albums may rent VHS tapes and DVDs from Five Star Retro Video. The shop offers current DVD rentals for $3.00 per night and vintage titles for $2.00 per night.
n1 is same to eval(input("Enter the number of new videos: "))
Enter the number of seniors in the box below.
print("The whole expense is $%.1f"%(n1*3+n2*2))
Thus, the clerks at Five Star Retro Video can use to calculate the total charge for a customer’s video rentals is of three types.
To learn more about Five Star Retro Video, refer to the link below:
https://brainly.com/question/13138157
#SPJ1
List questions you would be asking to software developers about the form.
List potential risks if there are any with the form.
Nia is editing a row in an Access table. The row contains the Pencil icon on the left end of the record
this icon indicate?
A. The record is committed.
B. The record has not been written.
C. The record has been written.
D. Nia is editing the record currently.
Answer:
The answer is D
Explanation:
That little pencil reminds you that you are entering or editing the current record, and that the changes you are making are not yet saved. The little pencil disappears as soon as you move off the current record. Take that as confirmation that Access has saved your new record, or the changes you made to an existing one.
In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently.
What is record?A record is known to be the state or fact of an act been put down or is been recorded.
Note that In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently as it shows the pen icon.
Learn more about record from
https://brainly.com/question/25562729
#SPJ9
Build an NFA that accepts strings over the digits 0-9 which do not contain 777 anywhere in the string.
To construct NFA that will accept strings over the digits 0-9 which do not contain the sequence "777" anywhere in the string we need the specific implementation of the NFA which will depend on the notation or tool used to represent NFAs, such as state diagrams or transition tables.
To build an NFA (Non-Deterministic Finite Automaton) that accepts strings over the digits 0-9 without containing the sequence "777" anywhere in the string, we can follow these steps:
Start by creating the initial state of the NFA.
Add transitions from the initial state to a set of states labeled with each digit from 0 to 9. These transitions represent the possibility of encountering any digit at the beginning of the string.
From each digit state, add transitions to the corresponding digit state for the next character in the string. This allows the NFA to read and accept any digit in the string.
Add transitions from each digit state to a separate state labeled "7" when encountering the digit 7. These transitions represent the possibility of encountering the first digit of the sequence "777".
From the "7" state, add transitions to another state labeled "77" when encountering another digit 7. This accounts for the second digit of the sequence "777".
From the "77" state, add transitions to a final state when encountering a third digit 7. This represents the completion of the sequence "777". The final state signifies that the string should not be accepted.
Finally, add transitions from all states to themselves for any other digit (0-6, 8, 9). This allows the NFA to continue reading the string without any constraints.
Ensure that the final state is non-accepting to reject strings that contain the sequence "777" anywhere in the string.
In conclusion, the constructed NFA will accept strings over the digits 0-9 that do not contain the sequence "777" anywhere in the string. The specific implementation of the NFA will depend on the notation or tool used to represent NFAs, such as state diagrams or transition tables.
For more such questions on NFA, click on:
https://brainly.com/question/30846815
#SPJ8
Create a class called Date that includes three instance variables-a month (type int), a day (type int) and a year (type int). Provide a constructor that initializes the three instance variables and assumes that the values provided are correct. Provide a set and a get method for each instance variable. Provide a method displayDate that displays the month, day and year separated by forward slashes (/). Add a main method to the class that demonstrates class Date's capabilities.
The class code is given below
lass Date:
def __init__(self, month, day, year):
self.month = month
self.day = day
self.year = year
def setMonth(self, month):
self.month = month
def setDay(self, day):
self.day = day
def setYear(self, year):
self.year = year
def getMonth(self):
return self.month
def getDay(self):
return self.day
def getYear(self):
return self.year
def displayDate(self):
print(self.month, '/', self.day, '/', self.year)
def main():
# create an object of Date class
date1 = Date(1, 15, 2021)
# display the date using the displayDate method
date1.displayDate()
# change the month using the setMonth method
date1.setMonth(2)
# display the date again
date1.displayDate()
if __name__ == "__main__":
main()
What is the class about?The above code will create a class called Date that includes three instance variables a month, a day and a year. It has a constructor that initializes the three instance variables and assumes that the values provided are correct.
It also has set and get methods for each instance variable and a method displayDate that displays the date in the format month/day/year.
Therefore, The main method demonstrates the use of the class by creating an object of the class and displaying the date, then changing the month and displaying the date again.
Learn more about class from
https://brainly.com/question/11842604
#SPJ1
I need help finishing this coding section, I am lost on what I am being asked.
Answer:
when cmd is open tell me
Explanation:
use cmd for better explanatios
Kiểm tra cặp số hứa hôn
Đầu vào : số nguyên n,m
Đầu ra : in ra n,m là cặp số hứa hôn và in ra không là số hứa hôn nếu ngược lại
Answer:
Sorry im not Vietnam so please explain it in English or ask someone who can speak Vietnam to help you
e requirements of Phase 3 are as follows:
In this third phase, you will be obtaining the case, power supply, and monitor for your computer. You will also include a printer.
Case:
Analyze the specifications for the case. Discuss what stood out to you about your choice. For example, "Why did you choose this specific component?" What stood out to you (price, specifications, etc.)?
What are the specifications, source, and price of the case? How did each of these components influence your decision to select it?
Power Supply:
Analyze the specifications for the power supply. Discuss what stood out to you about your choice. For example, "Why did you choose this specific component?" What stood out to you (price, specifications, etc.)?
What are the specifications, source, and price of the power supply? How did each of these components influence your decision to select it?
Monitor:
Analyze the specifications for the monitor. Discuss what stood out to you about your choice. For example, "Why did you choose this specific component?" What stood out to you (price, specifications, etc.)?
What are the specifications, source, and price of the monitor? How did each of these components influence your decision to select it?
Printer:
Analyze the specifications for the printer. Discuss what stood out to you about your choice. For example, "Why did you choose this specific component?" What stood out to you (price, specifications, etc.)?
What are the specifications, source, and price of the printer? How did each of these components influence your decision to select it?
References:
List references used.
References should relate to decision-making articles in addition to a website where one could purchase the product.
All references must be in APA format.
Any images used must be cited properly.
Format:
APA formatted cover page as well as the entirety of the document.
Paragraphs are coherently organized, including the use of proper grammar and correct spelling.
Clearly organized using graphics and tables (where appropriate).
Acronyms are spelled out on first use.
Because this is a research that should b carried out, I will guide you on how to do same. Pay attention to the requirement on APA Formatting.
How can the above research be executed?In order to make an informed decision on each component, it is imperative that you conduct thorough research on their specifications, source and price.
Reliable sources of information such as reputable tech review websites should be utilized in the comparison of features and prices for each option available.
Proper citation using APA format will need to be observed together with inclusion of any images used. Organizing your document with clear and coherent structure will further enhance readability- utilizing tables and graphics where applicable.
Learn more about APA Formatting:
https://brainly.com/question/12548905
#SPJ1
Describe two reasons to use the Internet responsibly. Explain what might happen if the Internet use policies were broken at
your school.
Answer: You don't want to download any virus and Chat rooms with stranger can be harmful
Explanation: You can get a virus on your school device, get yourself in harmful situations and your passwords might not be safe
it is the process of combining the main document with the data source so that letters to different recipients can be sent
The mail merge is the process of combining the main document with the data source so that letters to different recipients can be sent.
Why is mail merge important?Mail merge allows you to produce a batch of customised documents for each recipient.
A standard letter, for example, might be customized to address each recipient by name.
The document is linked to a data source, such as a list, spreadsheet, or database.
Note that Mail merge was invented in the 1980s, specifically in 1984, by Jerome Perkel and Mark Perkins at Raytheon Corporation.
Learn more about mail merge at:
https://brainly.com/question/20904639
#SPJ1
Suggest any three security requirements that any organisation must implement and explain how a framework can be used for security and control of its data
The security implementation by any organizations are:
Backup the computer systems.The use of antivirus.Avoidance of suspicious website.How is data security performed?In an organisation, the data is protected to avoid data and security breaches along with other treats through the following:
Backup the computer systems: Some computer viruses that would require the removal of organisations' data. Without a backup, there would be no way to recover the lost data.The use of antivirus: This is an anti-virus software that helps to protect the computer system again malware.Avoidance of suspicious website: The opening of suspicious website should be avoided while implementing security in an organisation.Learn more about data security here:
https://brainly.com/question/25720881
#SPJ1
write the steps to insert picture water mark
Answer:
Is there a picture of the question?
Explanation:
You are investigating a problem between two wireless bridges and you find that signal strength is lower than expected. Which of the following could cause the problem?
A. Wrong SSID
B. Incorrect 802.11 standard
C. Incorrect encryption key
D. Wrong antenna type
The most likely problem that led to the signal strength is lower than expected is a D. Wrong antenna type
What is a Computer Network?This refers to the inter-connectivity between wireless bridges to connect a computer system to the world wide web.
Hence, we can see that based on the fact that there is troubleshooting going on about two wireless bridges where the signal strength is lower than expected, the most likely problem that led to the signal strength is lower than expected is a D. Wrong antenna type
Read more about computer networks here:
https://brainly.com/question/1167985
#SPJ1
Which of the following formulas properly produces the string "Income Statement"?
O
OO
= "Income"&"Statement"
= "Income "+"Statement"
=Income&Statement
= "Income"&" "&"Statement"
The formulas that properly produces the string "Income Statement" is: D. = "Income"&" "&"Statement"
What is income statement?Income statement is a statement that report the income and expenditure a company or an organization generated at particular or specific period of time.
Option A="Income"&"Statement" :Will produce value IncomeStatement
Option B="Income"+"Statement": Will produce no value
Option C =Income&Statement: Will produce no value.
Option D ="Income"&" "&"Statement": Will produce value Income Statement
Hence, the formulas that properly produces the string "Income Statement" is option D which is: = "Income"&" "&"Statement"
Learn more about Income statement here:
https://brainly.com/question/15169974
https://brainly.com/question/24498019
#SPJ1
An ordinary deck of playing cards contains 52 cards, each of which has a suit and a value. Most card games require that a deck be shuffled at the beginning of a play. However, sometimes the deck isn't shuffled well enough, and there are arrangements of cards in the deck which may cause a bias in the play. Two such arrangements are a same-suit sequence and an ascending sequence. Asame-suit sequence is simply a sequence of consecutive cards in the deck with the same suit. Anascending sequence is a sequence of consecutive cards in the deck that follow one another in increasing value, with Ace following King and preceding two. Thus, 2S, 5S, KS, 3S AS is a same-suit sequence of length five, and 9C, 10D, JC, QS, KH, AC, 2D is anascending sequence of length seven, and 2H 3H 4H 5H 6H is both a same-suit and ascending sequence of length five.
The Problem
Given a deck of cards, determine the length of the longest same-suit sequence and the length of the longest ascending sequence.
The Input (to be read from standard input)
The first line will contain a single positive integer, c (CS25), representing the number of test cases to process. The test cases follow.
Each test case will be two lines long, each line will contain a string of 52 characters. The first line represents the first 26 cards in the deck and the second line represents the next 26 cards, in order in the deck
Each card will be represented with two characters, one for its kind and one for its suit, in that order. The 13 characters representing kinds are '2', '3', '4', '5', '6', '7', '8', '9', 'T', 'J', 'Q', 'K', 'A', in ascending order. The 4 characters representing suits are 'C', 'D', 'H' and 'S'.
The Output (to be printed to standard out)
For each input case, output two space separated integers on a line by themselves: the length of the longest same-suit sequence and the length of the longest ascending sequence, respectively.
Sample Input
2
255SKS3SAS9CTDJCOSKHAC2D2H3H4H5H6HQD9SJDSHAH4D7CJS 8C KD5C2CQHTS9H5DJHQC4C8D7STHAD 7H6D6C6S9D4S7DKC3D8S3CTC QCTD4C8D7STHADZH2D3S6D6C6S9D4 SAS 7D2HKC5H3DTC8S9C3H3C QD9SQSJDSHAH2SKS4D4H557CJS8CKD5C2CACQHJCTSCHKH9H5DJH
Sample Output
5 7
3 2
Implementation Restrictions/Run-Time/Memory Restrictions
1. You must read the deck for each case into statically allocated string(s).
2. For full credit, your algorithm must run in O(n) time. This means that you can only do a few separate single loops through a deck of cards for full credit. In particular a correct solution that has a pair of nested loops will NOT receive full credit.
3. For full credit, you must have appropriately designed functions. In particular, any correct solution which is fully coded in main will NOT receive full credit.
You must only declare your string variables INSIDE your case loop.
how to find tax rate using VLOOKUP in microsoft excel
To find a tax rate using VLOOKUP in Microsoft Excel, you would set up a table with tax brackets and corresponding rates, and then use the VLOOKUP function to match the income amount and retrieve the corresponding tax rate.
What is VLOOKUP?
When you need to find anything in a table or a range by row, use VLOOKUP. Look for the pricing of an automobile item by its part number, or locate an employee's name by their employee ID.
The VLOOKUP method requires three inputs, in this order: lookup value, table array, and column index number. The lookup value is the value for which you wish to locate matching data and must be in the lookup table's first column; it can be a value, a text string, or a cell reference.
Learn more about VLOOKUP:
https://brainly.com/question/30154536
#SPJ1
Use the drop-down menus to describe how to add a data bar to a report.
1. Open the table in view.
2. Click the column of the desired numerical field.
3. Click the conditional tab Format, then .
4. In the Rules Manager dialog box, click .
5. Select to “compare to other records,” and determine whether you want the value and bar to show at the same time.
6. Adjust the desired length of the bar and the color. Click OK.
7. Once satisfied with your rule, click and then OK.
Answer:
1. layout
3. conditional formatting
4. new rule
7. apply
Explanation:
just did it on edge
Help me! I’ll mark you brainly ! Please help me I need this now
Explanation: For number 3 I would say shade and darkness.
20.
Meter is to Kilometer as Gigabyte is to
?
... PINGULAR
A. Byte
B. Terabyte
C. Kilobyte
O D. Pedabyte
E. Megabyte
Previous
Answer:
Megabyte
Explanation:
Megabytes come before Gigabytes like how Gigabytes come before Terrabytes
explain the digitization process
Answer:
Digitization is the process of converting information into a digital (i.e. computer-readable) format. The result is the representation of an object, image, sound, document or signal (usually an analog signal) by generating a series of numbers that describe a discrete set of points or samples
Explanation:
1.ShoppingBay is an online auction service that requires several reports. Data for each auctioned
item includes an ID number, item description, length of auction in days, and minimum required bid.
Design a flowchart or pseudocode for the following:
-a. A program that accepts data for one auctioned item. Display data for an auction only if the
minimum required bid is more than $250.00
The pseudocode for the program: Announce factors for the unloaded thing information, counting:
auction_id (numbers)
item_description (string)
auction_length (numbers)
minimum_bid (drift)
Incite the client to enter the auction_id, item_description, auction_length, and minimum_bid.
What is the pseudocode?The program acknowledges information for one sold thing, counting the auction_id, item_description, auction_length, and minimum_bid. It at that point checks in case the minimum_bid for the unloaded thing is more prominent than or rise to to $250.00.
The pseudocode for the program pronounces factors for the sold thing information and prompts the client to enter the information. At that point it employments an in the event that articulation to check in case the minimum_bid is more noteworthy than or break even with to 250.00.
Learn more about pseudocode from
https://brainly.com/question/24953880
#SPJ1
For each of the cache modifications that we could perform, select whether it will increase, decrease, have no effect, or have an unknown effect on the parameter. An unknown effect means that it could either decrease or increase the parameter in question. No effect also includes marginal or very little effect When answering for multilevel caching, answer based on the caching system as a whole. Improvement Hit Rate Cache Access Time Average Memory Access Time Increase Cache Size (C) Increase Increase Increase Increase Associativity(K) Increase Increase [ Select ] Increase Block Size(b) Decrease Increase [ Select ] Use Multilevel Caching Increase
The question above is related to the effects of modifications related to the Computer Cache.
What is a Computer Cache?A computer cache is a technical name for the part of the computer called the CPU Cache Memory. It may also be referred to as the temporary memory.
Usually, it serves the purpose of allowing the computer to access information faster than it would normally take to get them directly from the hard drive.
See the results below for what happens when certain modifications to the Cache are made:
Increase in Cache Size = Increase in Computer PerformanceIncrease in Associativity (K) = Increase in Computer Performance, especially of memory system and processor.Increase in Block Size = Increase in overall performance, especially where many and various sizes of files are concernedThe Use of Multi-level Caching = Decreased Performance.Learn more about Computer Cache at:
https://brainly.com/question/3406184
10. Differentiate between equity share & preference share.
Answer:
Equity Shares are commonly called Common shares and have both advantages and disadvantages over Preference shares.
Equity shareholders are allowed to vote on company issues while preference shareholders can not.Preference shareholders get paid first between the two in the case that the company liquidates from bankruptcy. Preference shareholders get a fixed dividend that has to be paid before equity share dividends are paid. Preference shareholders can convert their shares to Equity shares but equity shareholders do not have the same courtesy.Preference shares can only be sold back to the company while equity shares can be sold to anybody.FILL IN THE BLANK. a __ area network is a type of wireless network that works within your immediate surroundings to connect cell phones to headsets, controllers to game systems, and so on.
A personal area network (PAN) is a type of wireless network that works within your immediate surroundings to connect cell phones to headsets, controllers to game systems, and so on.
A personal area network (PAN) is a type of wireless network that provides connectivity between devices in close proximity to each other, typically within a range of 10-meters. PANs are typically used for personal, non-commercial purposes and connect devices such as cell phones, headsets, personal digital assistants (PDAs), game controllers, and other small, portable devices.
PANs typically use low-power, short-range technologies such as Bluetooth, Infrared Data Association (IrDA), or Zigbee to establish connectivity. These technologies allow devices to communicate with each other wirelessly, eliminating the need for cords and cables and making it easier to connect and use the devices.
One of the main benefits of PANs is their simplicity and convenience. They allow you to quickly and easily connect devices in close proximity, eliminating the need for manual configuration or setup. Additionally, they use very low power, making them ideal for use with battery-powered devices.
Overall, PAN are a useful technology for individuals and small groups who need to connect their devices in close proximity for personal, non-commercial purposes.
Learn more about personal area network (PAN) here:
https://brainly.com/question/14704303
#SPJ4
Within the manufacturing industry, there are fourteen subindustries. Which of the
following is one of these subindustries?
A) Shipping and warehousing.
B) Petroleum and coal products.
C) Automobile manufacturing.
D) Concrete and steel.
Answer: A or B i done this before but my memorys quite blurry i rekon doing A
Explanation:
Please answer questions 2-12
Answer:
i never learned that
Explanation: