Answer:
32000 bits/seconds
Explanation:
Given that :
there are 16 signal combinations (states) = 2⁴
bits n = 4
and a baud rate (number of signals/second) = 8000/second
Therefore; the number of bits per seconds can be calculated as follows:
Number of bits per seconds = bits n × number of signal per seconds
Number of bits per seconds = 4 × 8000/second
Number of bits per seconds = 32000 bits/seconds
Answer:
no of unit is 17941
Explanation:
given data
fixed cost = $338,000
variable cost = $143 per unit
fixed cost = $1,244,000
variable cost = $92.50 per unit
solution
we consider here no of unit is = n
so here total cost of labor will be sum of fix and variable cost i.e
total cost of labor = $33800 + $143 n ..........1
and
total cost of capital intensive = $1,244,000 + $92.5 n ..........2
so here in both we prefer cost of capital if cost of capital intensive less than cost of labor
$1,244,000 + $92.5 n < $33800 + $143 n
solve we get
n > 
n > 17941
and
cost of producing less than selling cost so here
$1,244,000 + $92.5 n < 197 n
solve it we get
n >
n > 11904
so in both we get greatest no is 17941
so no of unit is 17941
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);
}
}