Answer:
denary is the answer thank you
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
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
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.
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.
Process of sending signals, interpreting received signals, and adjusting through signals is called
Answer:
TCP The Transmission Control Protocol
Explanation: