Answer:
hello your question is incomplete attached below is the complete question
answer : attached below
Explanation:
let ; x(t) be a real value signal for x ( jw ) = 0 , |w| > 200
g(t) = x ( t ) sin ( 2000 

next we apply Fourier transform
attached below is the remaining part of the solution
Answer:

Explanation:
Density is defined as mass ler unit volume, expressed as

Where m is mass,
is density and v is the volume. For a sphere, volume is given as

Replacing this into the formula of density then

Given diameter of 2.24 in then the radius is 1.12 in. Substituting 0.82 lb for m then

Answer:
Explanation:
ADT for an 2-D array:
struct array{
int arr[10];
}arrmain[10];
An application that stores an array with 1000 rows and 1000 columns, where less than 10,000 of the array values are non-zero. The two different implementations for such arrays that would be more space efficient than a standard two-dimensional array implementation requiring one million positions are :
1) struct array{
int *p;
}arr[1000];
2) struct array{
int *p;
}arr[1000];