answersLogoWhite

0

The word thread has several other names. It is also known as fiber, strand, filament, fibril, gossamer, and even lisle.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is another name for a minstrel?

Another name for a minstrel is an "Uncertain Thread Picker."


What is another name for thread that starts with the letter y?

yarn


Another name of single strand wire?

Another name that can be used for a single-strand wire is thread or strand.


Another name for a thread guide is?

Yarn guide / Wire guide


What is the name of a spun thread used for knitting and weaving?

yenall thread


Name the three fates?

Clotho, who spins the thread of life Lachesis who measures out the thread with her rodAtropos who cuts the thread


What is a genetic name?

thread


What is the Greek name for Ariadne's thread?

The Greek word for Ariadne's thread is clew.


How do you make a forum on roblox?

You click 'New Thread' Type the name what you want then press creat thread


How do you make a Roblox forum?

You click 'New Thread' Type the name what you want then press creat thread


What is the name of Ariadne's ball of thread?

clew


How can you write a thread programming in net?

This should get you started: using System; using System.Threading; namespace Flurp { public class ThreadTest { private static readonly Random _Random = new Random(); private static void RunThread() { for ( int i = 0; i < 20; i++ ) { string name = Thread.CurrentThread.Name; Console.WriteLine( "{0}: {1}", name, i ); Thread.Sleep(_Random.Next(1000)); } } public static void Main() { Thread thread1 = new Thread( RunThread ); Thread thread2 = new Thread( RunThread ); thread1.Name = "Thread 1"; thread2.Name = "Thread 2"; thread1.Start(); thread2.Start(); } } }