what is source code? group of answer choices any proprietary software licensed under exclusive legal right of the copyright holder. any software whose source code is made available free for any third party to review and modify. contains instructions written by a programmer specifying the actions to be performed by computer software. consists of nonproprietary hardware and software based on publicly known standards that allow third parties to create add-on products to plug into or interoperate.

Answers

Answer 1

It is to be noted that a source code is "any proprietary software licensed under the exclusive legal right of the copyright holder." (Option A)

Why is source code important?

Source code meets the requirements of businesses that have procedures in place that they want to keep independent of the program deployed. Some businesses view source code as a means to ensure that the software evolves as their business's demands change in the future.

There are several forms of source code. Proprietary software is software that is licensed under the copyright holder's exclusive legal right, and the source code for this sort of software is often not made available to the public. Open-source software, on the other hand, is software whose source code is made freely available for any third party to inspect and alter.

Learn more about Source Code:
https://brainly.com/question/14879540
#SPJ1


Related Questions

Prefixe = "BCFHMPRSVT"
uffix = "at"
for p in prefixe:
print(p uffix)
Since Tat i not a word, the program need to be changed to print That intead of Tat. Add a conditional tatement to make the program print That intead of Tat

Answers

Answer:

prefixe = "BCFHMPRSVT"

uffix = "at"

for p in prefixe:

   if p == "T":

       print(p + "hat")

   else:

       print(p + uffix)

I need help please!
c = 2
while (c < 12):
print (c)
c = c + 3

Answers

Answer:

11

Explanation:

Answer:

output:

2

5

8

11

Explanation:

the while loop will continue to run until the condition is false. In this case, the condition is false when c is greater than 12. The loop will run 4 times, and the value of c will be 2, 5, 8, and 11.

Why do games usually have rules?

A.
to make them less fun

B.
to provide structure so that the game objective can be achieved

C.
so that they can be broken

D.
because it’s easier to program rules into a game

Answers

answer b:

games NEED structure to function usefully.

What type of story attempts to make you feel engaged by scaring you?

A.
love story

B.
horror story

C.
fantasy story

D.
bedtime story

Answers

Answer: B

Explanation: Horror

which python module and method are used to create a multiple regression model for a given data set? select one.

Answers

Answer:

Ols method from statsmodel module

Explanation:

The Python method that can be used to return the residuals is the model resid method.

What is module?

The variable has been declared as the "module", and the method has been meant to return the residual of the dataset. Resid is a method that returns the residual of a multiple regression model.

The Python system includes the PVM, an the interpreter that executes the bytecode. The PVM must convert the byte code instructions into machine code in order for the computer to run the machine code instructions and display the results.

This conversion has been carried out by the PVM interpreter. The interpreter that converts the code from bytes into machine code, which is subsequently transmitted to the computer processor for execution.

Therefore, The Python method that can be used to return the residuals is the model resid method.

Learn more about Python on:

https://brainly.com/question/30427047

#SPJ2

Computer literacy means a person can perform basic computer operations such as using the Internet to search for information.
True
False
thank you too whoever answers this

Answers

Answer:

True

Explanation:

Computer literacy is having the knowledge and ability to use computers and information technology efficiently.

What does this comparison block indicate?
if
+
getItem
5
then
O
A. The comparison is true if the left side is not equal to the right side.
B. The comparison is true if the left side is less than the right side.
C. The comparison is true if the left side is greater than the right side.
D. The comparison is true if the left side is equal to the right side.

Answers

Answer:

This comparison block indicates that the comparison is true if the left side is equal to the right side.

Explanation:

The comparison uses the = operator, which is the assignment operator in most programming languages. This operator is used to assign a value to a variable. In this case, the comparison is checking whether the value of the getItem variable is equal to 5. If the value of getItem is equal to 5, then the comparison will evaluate to true. If the value of getItem is not equal to 5, then the comparison will evaluate to false.

what is a platform used to provide telephony, video, and web conferences that can serve as an entry point to a threat actor?

Answers

Call manager is the platform used to provide telephony, video, and web conferences that can serve as an entry point to a threat actor.

What does a threat actor do?A threat actor, also known as a malicious actor, is a person or a group of persons who engage in an activity with the intent of harming computer systems, devices, networks, or other items in the cyberspace.Threat actors commit cybercrimes to target uncovered vulnerabilities and sabotage operations. Threat actors come from various educational backgrounds and have a variety of resources. Cyberattack frequency and classification are both rapidly evolving. Threat actors' backgrounds influence who they attack, how they attack, and what information they seek.The authors contend that in order to more effectively combat cybercrime, we should work to better understand cyber threat actors and the motives guiding their behaviour. The research distinguishes between three categories of cybercriminals: state-sponsored actors, organised crime gangs, and hacktivists.

To learn more about Cyberattack refer :

https://brainly.com/question/27665132

#SPJ4

All dual core or higher processors and all motherboards sold today support what technology capable of enhancing the processor support for virtual machines?

Answers

The hardware-assisted virtualization technology is capable of enhancing the processor support for virtual machines.

What is virtualization with hardware support?

The use of a computer's physical components to support the software that builds and maintains virtual machines is known as hardware-assisted virtualization (VMs). The concept of virtualization has roots in 1960s mainframe system architectures known as "legacy mainframe system designs."

Should I enable hardware-assisted virtualization?

The main advantage is that it is much easier to control a virtual machine than a physical server. Operating systems running on the machine appear to have their own memory and processor. Hardware virtualization can increase the scalability of your business while also reducing expenses at the same time.

What benefit does hardware virtualization offer?

The key advantages of hardware virtualization are better resource management, cheaper costs overall, higher uptime, and IT flexibility.

To know more about virtual machine visit:

https://brainly.com/question/28901685

#SPJ4

how does the addition of this module affect the game’s difficulty OA. It changes the number of times a function is called based on the
player's skill level.
OB. It changes all the parameters in the game based on the player's
skill level.
OC. It changes the enemy sprite based on a chosen condition.
O
D. It changes the speed parameter based on a chosen condition.

Answers

The addition of this module affect the game’s difficulty is that:  It changes all the parameters in the game based on the player's

skill level.

How might gaming technology be used to improve education and growth?

Studies show that incorporating games into the classroom can boost engagement, promote social and emotional learning, and encourage students to take calculated risks.

Therefore, All video games incorporate the idea of difficulty. It is the driving force behind challenge in a video game, thus game designers need to give this component of the design process careful consideration if they want to create the experience they're going for.

Learn more about game’s difficulty from

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

sally notices that she has the same set of 10 blocks in her code in multiple places. she decides to create a new block (procedure) in scratch so that she can simply replace those 10 blocks with one procedure. why would this be beneficial to sally when she debugs and reasons through her program?

Answers

Since Sally notices that she has the same set of 10 blocks in her code in multiple places. The option that would be beneficial to sally when she debugs and reasons through her program are:

(A) The procedure can make the code section more abstract, so she doesn't have to think through all 10 blocks each time she comes across them in her code.

(C) If there is an error in the procedure, she can fix the error in the procedure

What is a procedural error?

The discrepancy between a measured value and its true value is known as experimental error. In other words, the error or inaccuracies are what prevent us from perceiving a measurement that is 100 percent accurate. Every measurement has some degree of experimental error, which is fairly common.

When an experimenter disregards the methodological protocol, procedural errors happen. Videos frequently contain these flaws, which can sometimes be fixed by rescoring the data, but occasionally the data must be destroyed.

Therefore, Debugging is the process of identifying and resolving faults or bugs in any software's source code. Computer programmers examine the code to ascertain the cause of any faults that may have happened when software does not function as planned.

Learn more about debugs from

https://brainly.com/question/15079851

#SPJ1

See full question below

Sally notices that she has the same set of 10 blocks in her code in multiple places. She decides to create a new block (procedure) in Scratch so that she can simply replace those 10 blocks with one procedure. Why would this be beneficial to Sally when she debugs and reasons through her program?

Select two answers.

answer choices

a. The procedure makes the code section more abstract, so she doesn’t have to think through all 10 blocks each time she comes across them in her code.

b. The procedure will make the program more efficient, spending less time running the same set of 10 blocks over and over again.

c. If there is an error in the procedure, she can fix the error in the procedure without having to search through her code for each place the procedure is used.

c. If there is an error in the procedure, she can fix the error in the procedure without having to search through her code for each place the procedure is used.

Select a statement you would need within a "while true:" loop to control the number of iterations:

for statement
nested while statement
range statement
relational operators

Answers

Answer:

relational operators

Explanation:

relational operators are used to control the number of iterations in a loop structure.

which of the following statements holds true for search engine optimization (seo)? a.it refers to the process of improving an ads rank in 's online advertising listings. b.it refers to software that traverses available web links in an attempt to perform a given task. c.it refers to a temporary storage space used to speed computing tasks. d.it refers to the process of improving a page's organic search results. e.it refers to internet content that can't be indexed by and other search engines.

Answers

The statements that true for search engine optimization is it refers to the process of improving a page's organic search results.

What is search engine optimization?

Search engine optimization is a method to improving the visibility of the websites, page, or even application for customers when they search for it.

The visibility is important for websites, page, or application because with the great visibility the customers can easily give attention to the website, page, or application which if the websites or application is for business it can attract the customers to purchase their product or at least know about their product.

Organic search result is when the user search something in search engine often search engine will give the result for what user search and a ads. The ads is not organic, the organic one is if the customer visit a website that is no ads in search result of search engine.

So, search engine optimization is to create more visibility so the user can easily view the website without must be paid for ads, or in other the view is organic.

Learn more about search engine optimization here:

brainly.com/question/14097391

#SPJ4

6.All the following are rules for using the computer lab Except:

(1 Point)

Do not install or attempt to copy any software without your teacher's permission.

Do not change any of the settings in the computer

Do not share information with your classmates.

Do not eat or drink in the computer lab.
7.Which storage device are you to avoid to store information from the computer lab if they are from outside the laboratory:

(1 Point)

mouse

projector

android

USB
8.The _______________________ operating system comes with a troubleshooting tool that helps with diagnosing and fixing common software problems:

(1 Point)

MAC OS

IOS

Windows

LINEX
9.This is a computer problem for software:

(1 Point)

an application is frozen

the computer does not start up when the power button is pressed.

the computer is frozen

the keyboard does not work.
10.This is not a computer software problem

(1 Point)

an application is frozen

the internet is not working

the computer is frozen

the blue screen of death appears

Answers

A computer is a type of machine that stores and processes data.

What are the rules in computer lab?

On any lab computers, do not install any software or modify or delete any system files. When listening to music or when the sound from your computer may disturb other users, use headphones. Take care of the equipment. No labels, parts, or cables should be removed or disconnected.

Answers to the questions :

6. The rules for using the computer lab are as follows: Except that you

    should not share any information with your classmates.

7. USB is used to store information from computer lab, if they are outside

    the laboratory.

8. MAC OS is a troubleshooting tool used to diagnoses and fix software

    problems.

9. An application is frozen is the problem related to computer software.

10. The blue screen of death appears is not problem related to computer

    software it is hardware related problem.

To learn more about computer refer to :

https://brainly.com/question/24540334

#SPJ1

Samara wants to incorporate feedback into the design of a new game she is working on, but she wants to do something more creative than simply displaying a score on the top of the screen. What is another, more creative way that Samara could incorporate feedback into her game design?

A.
sending the user an email about their progress

B.
having the user’s character change color or shape

C.
allowing the user to communicate with other players

D.
having a pop-up bubble appear where the user can type a question

Answers

Note that since Samara wants to incorporate feedback into the design of a new game she is working on, but she wants to do something more creative than simply displaying a score on the top of the screen, another, more creative way that Samara could incorporate feedback into her game design is: "having a pop-up bubble appear where the user can type a question" (Option D).

What is Feedback?

Pop-Up bubbles are User Interface devices used to trigger the discussion interface with which users of a game or online service can speak with the company or make inquiries.

This is available on most websites in the bottom right corner of the screen. Thus it is correct to state that one creative way that Samara could include feedback in her game design is by having a pop-up bubble appear where the user can type an inquiry.

Learn more about Feedback:
https://brainly.com/question/26994432
#SPJ1

which sql keyword is used to specify a condition that rows must meet to be included in the results of an sql select query?

Answers

In a SQL statement, the WHERE clause specifies criteria that field values must meet for the records that contain the values to be included in the query results.

How is the conditional search specified in SQL?

The row or rows that you want to retrieve, edit, or delete are identified by search criteria that are specified in the WHERE clause. The amount of rows that meet the WHERE clause search criterion determines how many rows you can handle with a SQL statement.

How is the conditional search specified in SQL?

The row or rows that you want to retrieve, edit, or delete are identified by search criteria that are specified in the WHERE clause. The amount of rows that meet the WHERE clause search criterion determines how many rows you can handle with a SQL statement.

to know more about  SQL keyboards here:

brainly.com/question/24921064

#SPJ4

Project stem
Assignment 7: calender

Answers

Answer:

import calendar

year = int(input("Enter a year: "))

month = int(input("Enter a month: "))

print(calendar.month(year, month))

Explanation:

since you didnt mention what program to use, im going to answer using python.

Functions can do all of the following except:
A)Ask the user for input.
B) Allow writing without proper syntax
C) Stop the program from repeating
D) Simplify code

PLS HELP ME ILL MARK YOU BRAINLEST

Answers

Answer:

B) Allow writing without proper syntax

Explanation:

Functions can do all of the following except Allow writing without proper syntax.

What is Syntax?

The placement of words and phrases in a particular order is known as syntax in English. The meaning of the entire statement can be altered by shifting the placement of only one word.

The placement of words has strict restrictions in every language, and proficient authors can bend these rules to create sentences that sound more dramatic or poetic.

When it comes to language, syntax is a complex subject that can be challenging to comprehend. To help you communicate clearly, we cover the fundamental principles and varieties of syntax in this book, along with several syntax examples.

Therefore, Functions can do all of the following except Allow writing without proper syntax.

To learn more about Syntax, refer to the link:

https://brainly.com/question/28182020

#SPJ2

Which celebrity recently made amends at the 7-11 where he regularly shoplifted as a teen?.

Answers

Answer: the rock/Dwayne Johnson

Explanation:

Isabella is creating a video game and wants to include a unique mental obstacle. Which of the following should Isabella consider adding to her game?

A.
a riddle or puzzle

B.
a wall to jump over

C.
an enemy with a sword

D.
dynamite

Answers

A riddle or puzzle should Isabella consider adding to her game. Hence option A is correct.

What is puzzle?

Puzzle is defined as a challenge that can appear in many forms, such as games and toys, and that must be overcome using knowledge, creativity, or other abilities. When kids play with puzzles, they are encouraged to pick the right piece for every place and search for answers by combining patterns or colors.

Isabella could think about including a riddle or conundrum as a special mental challenge in her game. In order to complete puzzles and riddles, players must use their mental faculties.

Thus, a riddle or puzzle should Isabella consider adding to her game. Hence option A is correct.

To learn more about puzzle, refer to the link below:

https://brainly.com/question/21327199

#SPJ1

a mobile device user is installing a map application. the app requests several permissions during installation. which permission is not legitimate?

Answers

Permissions like device's camera, contacts, or storage, NFC.

What permission should be avoided?

It is difficult to determine which of the requested permissions might not be legitimate without more information about the specific permissions being requested and the context in which they are being requested.

In general, it is not uncommon for mobile apps to request a variety of permissions, such as access to the device's location, camera, contacts, or storage. However, if an app is requesting permissions that seem excessive or unrelated to its intended purpose, or if the app is from an untrustworthy source, it may be a cause for concern.

In these cases, it is best to carefully review the requested permissions and consider whether or not to install the app.

To Know More About Mobile Devices, Check Out

https://brainly.com/question/4673326

#SPJ1

Drag the tiles to the correct boxes to complete the pairs.
Match the different aspects of the marketing information systems to the scenarios that portray them.

Answers

Interactive, pre-marketing, research, and mass communication eras are the ones that best fit the marketing eras to the scenarios that depict them.

What are the different marketing eras?Interactive, pre-marketing, research, and mass communication eras are the ones that best fit the marketing eras to the scenarios that depict them.Interactive era, Individualized mail sent to various clients based on their unique preferences.Pre-marketing era , a town crier enticing shoppers to purchase a novel product, assuring that it is a one-of-a-kind.Research era , data analysis to determine the needs of the consumer and corresponding product marketing.In the era of mass communication, a business might advertise its goods in newspapers, magazines, and on the radio.      

To learn more about Marketing eras refer to:

https://brainly.com/question/9350735

#SPJ1

What is one way sprite properties are the same as variables?

Answers

values that sometimes we want to just read, and sometimes that we want to write to.

State the whether the following statements are true or false.
a. ICT stands for Information and Computing technology.
b. ICT uses electronic equipments especially computers for storing, retrieving and exchanging information.
C. ICT tools are used for exchanging information.
d. Removing computer viruses from a computer is cyber crime.
e. The cyber law regulates the uses of computer.
f. Computer ethics is a program that is used to steal data from a computer.​

Answers

Answer: Statement a is false

Explanation: ICT stands for Information and Communication Technology

An all-in-one printer is also known as a multi-function printer. It includes a printer, scanner, copy machine and / or fax machine.true or false?

Answers

An all-in-one printer is also known as a multi-function printer. It includes a printer, scanner, copy machine and / or fax machine: true.

What is a printer?

In Computer technology, a printer can be defined as an electronic output (peripheral) device that is designed and developed for printing paper documents containing texts or images.

What is an all-in-one printer?

An all-in-one printer is sometimes referred to as multifunction peripheral or multi-function printer and it can be defined as a type of printer that is designed and developed to comprise all or some of the following;

PrinterScannerCopy machineFax machine.

Read more on printer here: brainly.com/question/17100575

#SPJ1

what concurrent processing problem occurs when a transaction rereads data and finds new rows that were inserted by a different transaction since the p

Answers

Dirty read  was  concurrent processing problem occurs when a transaction rereads data and finds new rows that were inserted by a different transaction.

What is Dirty read?Dirty Reads occur when a transaction is permitted to read a row that has been updated by another transaction but has not yet been committed. Multiple uncommitted transactions occurring at once are the main cause of it.Executing the aforementioned query will result in the output "Not committed" since there is a problem—there is no ID=C. Therefore, if we want to start another transaction with that row at that point, Dirty Reads will happen. No partial commitment exists if both UPDATE queries are successful, at which point the output will be "Committed."The only isolation level accessible to databases without transaction recording is dirty read.

To learn more about Dirty read refer to:

https://brainly.com/question/29847126

#SPJ4

which of the following represents the definition of information management? group of answer choices the act of conforming, acquiescing, or yielding information. a method or system of government for information management or control. the category of computer security that addresses the protection of data from unauthorized disclosure and confirmation of data source authenticity. examines the organizational resource of information and regulates its definitions, uses, values, and distribution, ensuring that it has the types of data/information required to function and grow effectively.

Answers

Examines the organizational resource of information and regulates its definitions, uses, values, and distribution, ensuring that it has the types of data/information required to function and grow effectively.

What does information management mean?

Information management (IM) is the process of gathering, organizing, and disseminating information of one or more sources to one or more audiences. This occasionally involves those who are interested in or have a claim to that information.

What purpose serves information management?

Designing, developing, managing, and using information with innovation and insight is the goal of information management. support decision-making and add worth for people, businesses, communities, and societies.

To know more about Information Management visit

brainly.com/question/14688347

#SPJ4

a video file typically contains a single codec that is used for both audio and video images. a. true b. false

Answers

Without requiring Flash, HTML5 capabilities offer native audio and video. It is straightforward to add media to a website thanks to the HTML5 “audio” and “video” tags. Thus, option B is correct.

What video file typically contains a single codec?

Press Ctrl+U to view the source on the page where the video is located. Now you can determine if a video is being played using Flash or HTML5 by looking for a tag like “object,” which is used by the Flash video player, or “video.”

To identify the media source and include a controls component so that the user can play and pause the media, set the src attribute.

Therefore, it is false that, Typically, a video file uses a single codec for both the audio and the video pictures.

Learn more about video file here:

https://brainly.com/question/21180610

#SPJ1

a cloud computing approach in which the service consists mainly of hardware and systems software resources is called:

Answers

A private cloud is a cloud computing infrastructure that is exclusively used by one client. Many of the advantages of cloud computing are combined with the security and management of on-premises IT infrastructure in this method.

What are system software and hardware?

Hardware and software make up the two categories that make up a computer system. The term "hardware" describes the actual, observable parts of the system, such as the display, CPU, keyboard, and mouse. On the other hand, software refers to a set of instructions that allow the hardware to carry out a certain set of activities.

What are some illustrations of software and hardware?

The Processor, Memory Devices, Monitor, Printer, Keyboard, Mouse, and Central Processing Unit are a few examples of hardware in a computer. Computer software consists of a collection of instructions, guidelines, and documentation that a computer system can use to carry out various activities.

To know more about hardware and software visit;

https://brainly.com/question/10937439

#SPJ4

Annette has purchased a new external dvd drive to use with her pc. She inserts a dvd into the drive and, after several seconds, she receives an error message indicating that the drive is not accessible. What is the first thing annette should do to try to resolve the issue?.

Answers

- Wait a few seconds and try accessing the DVD again.

What is troubleshooting?

Troubleshooting is a type of problem resolution that is frequently used to fix broken components or operations on a machine or a system. In order to address an issue and get the product or process back in operation, a logical, methodical search for the problem's source is required. It takes troubleshooting to find the symptoms. Eliminating potential sources of a problem allows you to determine the most likely cause. Verification that the fix returns the product or process to its functioning state is the last step in troubleshooting.

Identifying or diagnosing "trouble" in a system's management flow that is brought on by a failure of some type is the general definition of troubleshooting.

To know more about troubleshooting visit:

https://brainly.com/question/28873964

#SPJ1

Other Questions
Equiano wrote, "i now wihed for lat friend, Death, to relieve me". What did he mean by thi? Deepwell Drilling Service and Eco-Farm, Inc., agree to have their dispute resolved in arbitration. The arbitrator makes an erroneous finding of fact. This is a ground for a court toO refuse to review the case. O review only the questions of law in the cases. O review the sufficiency of the evidence supporting the facts decided by the arbitrator. O set aside the award.O do nothing Look at the picture and the passage. How does the picture demonstrate air pressure?The more air that is in the balloon, the faster the air particles move, causing the balloon to expand.As more air is blown into the balloon, the pressure increases, forcing the sides of the balloon to expand.Air particles blown into the balloon are moving faster than the air outside of the balloon, causing it to expand.Compressed air from the lungs is blown into the balloon. Because this air is heavy, the balloon expands. Australias __ growth is helped by its government by making sure physical and intellectual property rights are protected Annie ispicking apples with her sister.The number of apples in herbasket is described by n =22t + 12, where t is the numberof minutes Annie spends pickingapples. What do the numbers 22and 12 tell you about Annie'sapple picking? What is thedomain of this function? Can ya help me know what goes in the blanks mean of 8,7,11,15,3,4 What is Q(1.5) if ()=cos() f(x)=cos(x) and Q(x) is centered at /2? Round your answer to 4 decimals, for example, 0.1234. Which of the following describes a collection of networks that are connected togetherin order to share data?(1 point)O World Wide WebO ISPO internetO broadband TRUE/FALSE. carbon-14 is constantly being produced in the upper atmosphere, and the amount is in equilibrium. as long as an organism is alive, it keeps its carbon isotopes in balance with the atmosphere, but at soon as it dies, it stops taking up new 14c, and so the geologic clock starts. If, for a given output level, a perfectly competitive firm's price is less than its average variable cost, then the firm:A. Should increase price.B. Is earning a profit.C. Should increase output.D. Should shut down.E. Definition let be an matrix and an matrix so that the product is defined. suppose we know that the rref of both a and b have pivots in every column. explain why it follows that every column of rref(a b) also has a pivot in each column. as the length of a muscle increases from its resting length of 100mm to 150mm which of the following changes in force occur? passive force increases and active force decreases passive force increases and active force increases passive force decreases and active force decreases passive force decreases and active force increases How might Greek mythology be used to explain events and natural occurrences in everyday life? A circle with center C has equation x+y- 2x + 10y-19 = 0It can be shown that center C is (1,-5) and that the radius is 45.Find the equation of the tangent to the circle at the point (7,-2), giving your answer in the form ax + by + c=0, where a, b and c are integers. Write the explicit and recursive rules for a geometric sequence given a table of values. what is a public key encryption technique based on elliptic curve theory that can be used to create faster, smaller, and more efficient cryptographic keys? what is the ratio of ey,final, the maximum value of the y-component of the electric field immediately following the last polarizer, to eo, the amplitude of the electric field oscillations in the incident polarized beam? A characteristic morphologic feature in hemoglobin C disease isA. MacrocytosisB. SpherocytosisC. Rouleaux formationD. Target cells David needs a wood board with an area of 5/12 square yard to complete a project. If the wood board is 2/3 yard wide, how long must the board be?