Answer:
//Convert any decimal number to binary number
//Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program starts here
#include <iostream>
using namespace std;
// Main Method declared here
int main()
{
int x;
cout<<"Enter any integer number: ";
cin>>x;
DecBin(x);
return 0;
}
// Here a function named DecBin is declared along with an integer variable, x
void DecBin(int x)
{
// Declare an array to store the resulting binary digits
int bindigit[32];
// counter for binary array
int kount = 0;
while (x > 0) {
// Store the remainder of each division in the declared array
bindigit[kount] = x % 2;
x = x / 2;
kount++;
}
// Loop to print the binary digits in reverse order
for (int j = i - 1; j >= 0; j--)
{
cout << bindigit[j];
}
}
// End of Program
Answer:
Technician A
Explanation:
The Battery Council International (BCI) battery group numbers is an industry standard for batteries that indicate two important this;
- Physical size of a car battery which are; height , width and length.
- Polarity on the battery which is the location of the positive and negative battery posts
For example : a group 24 battery or a type 27 marine battery are battery group numbers that define the physical dimensions of a battery case. These numbers are important because car owners and manufacturers use the numbers <em>to match vehicle power requirements with the alternators </em>.A mismatch of the battery and the alternator can cause the vehicle's alternator to overheat leading to a short life span.
<u>Technician A statement is correct.</u>
Answer:
Work input =283.47 KJ
Explanation:
Given that


T=12°C=285 K
m= 2.5 kg
Given that this is the constant temperature process.
e know that work for isothermal process


So now putting the values


W=-283.47 KJ
Negative sign indicates that work is done on the system.
So work input =283.47 KJ
Answer:
Tech A is correct
Explanation:
Tech A is right as its V- angle is identified by splitting the No by 720 °. Of the piston at the edge of the piston.
Tech B is incorrect, as the V-Angle will be 720/10 = 72 for the V-10 motor, and he says 60 °.
Answer:
Part a: The probability of each letter is given in the table below.
Part b: The average information in this message is 1.91.
Explanation:
Part a:
The message is given as
FORMULA FOR SUCCESS
Total number is given as n=17
Letter x Probability p(x)
F 2 2/17
O 2 2/17
R 2 2/17
M 1 1/17
U 2 2/17
L 1 1/17
A 1 1/17
S 3 3/17
C 2 2/17
E 1 1/17
Part b
The information is given as 
Letter x Probability p(x) xp(x)
F 2 2/17 4/17
O 2 2/17 4/17
R 2 2/17 4/17
M 1 1/17 1/17
U 2 2/17 4/17
L 1 1/17 1/17
A 1 1/17 1/17
S 3 3/17 9/17
C 2 2/17 4/17
E 1 1/17 1/17
______________________________________
Total 1.91
So the average information in this message is 1.91.