Answer:
For SGID you type this
$ find . -perm /4000
For SUID you type this
$ find . -perm /2000
Explanation:
Auxiliary file permissions, that are commonly referred to as “special permissions” in Linux are needed in order to easily find files which have SUID (Setuid) and SGID (Setgid) set.
After typing
$ find directory -perm /permissions
Then type the commands in the attachment below to obtain a list of these files with SGID and SUID.
Answer:
β = = 0.7071 ≈ 1 ( damping condition )
closed-form expression for the response is attached below
Explanation:
Given : x + 2x + 2x = 0 for Xo = 0 mm and Vo = 1 mm/s
computing a solution :
M = 1,
c = 2,
k = 2,
Wn = =
next we determine the damping condition using the damping formula
β = = 0.7071 ≈ 1
from the condition above it can be said that the damping condition indicates underdamping
attached below is the closed form expression for the response
Answer:
1. Location of enemy ground troops - EARTH OBSERVING.
Using earth observing satellite imagery, the military can observe vast expanses of land and in so doing, find the location of enemy ground troops.
2. Routine reconnaissance of an unfamiliar climate - WEATHER
In other to find out more about the climate of an area, a weather satellite can be used to observe the areas and its changing weather patterns.
3. Analyze waterways in an unfamiliar location - NAVIGATION
Using navigation satellites, navigation conduits such as roads and waterways can be observed.
4. Provide warning of an attack - COMMUNICATION.
Communications satellites enable people to communicate over great distances and so can be used by the military to warn of an impending attack.
Answer:Science is the body of knowledge that explores the physical and natural world. Engineering is the application of knowledge in order to design, build and maintain a product or a process
Explanation:
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}