Answer:
a) Under damped
Explanation:
Given that system is critically damped .And we have to find out the condition when gain is increased.
As we know that damping ratio given as follows

Where C is the damping coefficient and Cc is the critical damping coefficient.

So from above we can say that


From above relationship we can say when gain (K) is increases then system will become under damped system.
Answer:
Bore = 7 cm
stroke = 6.36 cm
compression ratio = 10.007
Explanation:
Given data:
Cubic capacity of the engine, V = 245 cc
Clearance volume, v = 27.2 cc
over square-ratio = 1.1
thus,
D/L = 1.1
where,
D is the bore
L is the stroke
Now,
V = 
or
V = 
on substituting the values, we have
245 = 
or
D = 7.00 cm
Now,
we have
D/L = 1.1
thus,
L = D/1.1
L = 7/1.1
or
L= 6.36 cm
Now,
the compression ratio is given as:

on substituting the values, we get

or
Compression ratio = 10.007
Answer:
hello your question lacks the required question attached below is the missing diagram
Forces in GJ = -4.4444 i.e. 4.4444 tons
Forces in IG = 15.382 tons ( T )
Explanation:
Forces in GJ = -4.4444 i.e. 4.4444 tons
Forces in IG = 15.382 tons ( T )
attached below is the detailed solution
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number