Answer:
Looks like mold that got frosted over
Explanation:
Answer:
hey if u repost this i can answer it u and u dont have to waste this much points but its super blury and not even able to read a single word
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);
}
}
Complete Question
The complete question is shown on the first uploaded image
Answer:
a) The required additional minterms for f so that f has eight primary implicants with two literals and no other prime implicant are
and 
b) The essential prime implicant are
and 
c) The minimum sum-of-product expression for f are
Explanation:
The explanation is shown on the second third and fourth image
Answer:
a)Δs = 834 mm
b)V=1122 mm/s

Explanation:
Given that

a)
When t= 2 s


s= 114 mm
At t= 4 s


s= 948 mm
So the displacement between 2 s to 4 s
Δs = 948 - 114 mm
Δs = 834 mm
b)
We know that velocity V


At t= 5 s


V=1122 mm/s
We know that acceleration a


a= 90 t
a = 90 x 5
