Answer:
Air mass sensors is the right answer i think
Explanation:
Answer:
for 1st question the answer is 5th option.
for 2nd question the answer is 2nd option
hope it helps you mate
please mark me as brainliast
Answer:
hello below is missing piece of the complete question
minimum size = 0.3 cm
answer : 0.247 N/mm2
Explanation:
Given data :
section span : 10.9 and 13.4 cm
minimum load applied evenly to the top of span : 13 N
maximum load for each member ; 4.5 N
lets take each member to be 4.2 cm
Determine the max value of P before truss fails
Taking average value of section span ≈ 12 cm
Given minimum load distributed evenly on top of section span = 13 N
we will calculate the value of by applying this formula
=
= 1.56 * 10^-5
next we will consider section ; 4.2 cm * 0.3 cm
hence Z (section modulus ) = BD^2 / 6
= ( 0.042 * 0.003^2 ) / 6 = 6.3*10^-8
Finally the max value of P( stress ) before the truss fails
= M/Z = ( 1.56 * 10^-5 ) / ( 6.3*10^-8 )
= 0.247 N/mm2
Answer:
hello your question lacks the required image attached to this answer is the image required
answer : NOR1(q_) wave is complementary to NOR2(q)
Explanation:
Note ; NOR 2 will be addressed as q in the course of this solution while NOR 1 will be addressed as q_
Initial state is unknown i.e q = 0 and q_= 1
from the diagram the waveform reset and set
= from 0ns to 20ns reset=1 and set=0.from the truth table considering this given condition q=0 and q_bar=1 while
from 30ns to 50ns reset=0 and set=1.from the truth table considering this condition q=1 and q_bar=1.so from 35ns also note there is a delay of 5 ns for the NOR gate hence the NOR 2 will be higher ( 1 )
From 50ns to 65ns both set and reset is 0.so NOR2(q)=0.
From 65 to 75 set=1 and reset=0,so our NOR 2(q)=1 checking from the truth table
also from 75 to 90 set=1 and reset=1 , NOR2(q) is undefined "?" and is mentioned up to 95ns.
since q_ is a complement of q, then NOR1(q_) wave is complementary to NOR2(q)
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}