Hey, the answer to this is flash.
flash is used for animating for websites because it works well with HTML
Hope this helps
-scav
In everyday life, we use numbers based on a combination of digits between 0 and 9.
This counting system is known as decimal, or ?
•Denary
•Binary
•Hexidecimal
PLEASE ANSWER I WILL GIVE U BRAINLY!!
Answer:
denary is the answer thank you
area of trapezium is 54cmsq if parallel sides are 10cm and 8cm long find the distance between the parallel sides
Explanation:
the distance between the parallel sides is the height(h)
formula to find area of trapezium :
Area = 1/2(a+b) h
54 = 1/2 (8+10) h
54=1/2(18) h
54 =9h
54/9=h
h= 6 (ans)
What is one difference between the Simple Gear Train with Same Size Gears and Simple Gear Train with Different Size Gears?
Answer:
One difference between a Simple Gear train with Same Size Gears and Simple Gear Train with Different Size Gears is the that the number of rotations of both shafts in the Simple Gear Train with Same Size Gears is the same the number of rotations of both shafts in the simple Gear Train with Different Size Gears are different
Explanation:
A simple gear train is one in which each shaft has only one shaft, and the motion of one shaft in transmitted to the other when the gears are in contact
Process of sending signals, interpreting received signals, and adjusting through signals is called
Answer:
TCP The Transmission Control Protocol
Explanation:
If the radius is 1/2 of the diameter, what is the circumference of each wheel if "Circumference = 2 x 3.14 x radius"
need the help asap please!
Answer:
pi times the diameter
Explanation:
d = 2r
circumference is 2πr
Discuss the use of spreadsheet software compared to database software to store and manipulate student data.
Explanation:
Because databases store information more efficiently, databases can handle volumes of information that would be unmanageable in a spreadsheet. Spreadsheets have record limitations whereas databases do not. Compared to databases, spreadsheets can require a large amount of hard-drive space for data storage.
1. Create a naive Bayes model for this data set.
2. What prediction will the naive Bayes model return for the query q=(1,0,0)?
Answer:
import the GaussianNB class from the scikit-learn naive bayes module using the import statement;
from sklearn.naivebayes import GaussianNB
create the classifier,
clf = GaussianNB()
Then train or fit a section of the dataset (the training set) with the classifier, then predict the label of the test section of the dataset with the provided query "q".
trained = clf.fit( train_features, train_label)
predict = clf.predict(q)
Explanation:
The scikit-learn is a machine learning package in python used to create machine models from datasets. It has several classifiers and regressions algorithms.
The naive baye algorithm is a machine learning class in python used in supervised machine learning to create models used to predict a label given a set of features using a classifier.