answersLogoWhite

0

It is usually three to four inches shorter than the length of the bow.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How can I properly measure my finger size using a finger string?

To measure your finger size using a finger string, wrap the string around your finger and mark where it overlaps. Then, measure the length of the string in millimeters and use a ring size chart to determine your finger size.


How do you use a longbow?

a longbow is a bow that is long


Is there a way to use regex to determine if a given string is a palindrome?

Yes, you can use regex to determine if a given string is a palindrome by reversing the string and then comparing it to the original string using regex.


Can you provide a detailed explanation on how to split a string into 7 equal parts?

To split a string into 7 equal parts, you can divide the length of the string by 7 to determine the size of each part. Then, you can use a loop to extract each part based on the calculated size. Make sure to handle any remaining characters if the string length is not divisible by 7.


Where did the longbow originate?

The Welsh were the first to use the longbow in Britain, but its use had spread into England by the end of the 13th century.


How can one determine the tension in a string?

To determine the tension in a string, you can use the formula T F L, where T is the tension, F is the force applied to the string, and L is the length of the string. By measuring the force and length, you can calculate the tension in the string.


What size string do you buy?

depends on what you want to use it on.


What are you called if you use a longbow?

A bowmen


How do you use yew use in a sentence?

Robin Hood strung his sturdy bow, carved from a young yew tree, pulled the string back, and let fly the poison-tipped arrow.


How do you straighten a wood longbow?

use force to bend it straight


How do you calculate the tension in a string?

To calculate the tension in a string, you can use the formula T F L, where T is the tension, F is the force applied to the string, and L is the length of the string. This formula helps determine the amount of force acting on the string to keep it taut.


How do you find out not equals string in java?

Remember that strings are objects. You can use the String.equals method to determine equality, and use the ! (not) operator to test for inequality. public static boolean notEquals(String str1, String str2) { return !str1.equals(str2); }