spec sheet is a document that summarizes the performance and other technical characteristics of a product, machine or component.
Answer:
A stores code for later re-use
Explanation:
To find - What is the purpose of saving code snippets?
Solution -
Code Snippet" is used to describe a small portion of re-usable source code, machine code, or text.
They allow a programmer to avoid typing repetitive code during the course of routine programming.
So,
The correct option is - A stores code for later re-use
Answer:
40
Explanation:
Given that:
A neural network with 11 input variables possess;
one hidden layer with three hidden units; &
one output variable
For every input, a variable must go to every node.
Thus, we can calculate the weights of weight with respect to connections to input and hidden layer by using the formula:
= ( inputs + bias) × numbers of nodes
= (11 + 1 ) × 3
= 12 × 3
= 36 weights
Also, For one hidden layer (with 3 nodes) and one output
The entry result for every hidden node will go directly to the output
These results will have weights associated with them before computed in the output node.
Thus; using the formula
= (numbers of nodes + bais) output, we get;
= ( 3+ 1 ) × 1
= 4 weights
weights with respect to input and hidden layer total = 36
weights with respect to hidden and output layer total = 4
Finally, the sum of both weights is = 36 + 4
= 40
Answer:
Software, instructions that tell a computer what to do The term was coined to differentiate these instructions from hardware the physical components of a computer system.
Explanation: