Answer:
4 times around
Explanation:
The total number of teeth involved will be the same for each gear. If the front gear is connected to the pedal and it goes around twice, then 2·24 = 48 teeth will have passed the reference point.
If the rear gear is attached to the wheel, and 48 teeth pass the reference point, then it will have made ...
(48 teeth)/(12 teeth/turn) = 4 turns
Answer:
44.95 tonnes
Explanation:
According to principle of buoyancy the object will just sink when it's weight is more than the weight of the liquid it displaces
It is given that empty weight of box = 40 tons
Let the mass of the stones to be placed be = M tonnes
Thus the combined mass of box and stones = (40+M) tonnes..........(i)
Since the box will displace water equal to it's volume V we have 

Now the weight of water displaced =
is density of water = 1000kg/
Thus weight of liquid displaced =
..................(ii)
Equating i and ii we get
40 + M = 84.95
thus Mass of stones = 44.95 tonnes
Answer:
A safety margin is the space left between your vehicle and the next to provide room, time and visibility at every instant
Explanation:
A safety margin is defined as an allowance given between your vehicle and the next vehicle in front to provide enough room, visibility and time to move in a safe manner to prevent the occurrence of an accident at anytime the frontal vehicle suddenly stops or slows down
Safety margins help minimize risks in the following way
1) A common knowledge of safety margins, improves predictability among road users, thereby minimizing the risk traffic accidents caused due to late communication
2) The use of safety margins helps minimize the risk due to a change in driving conditions such as when the road becomes more slippery from being covered with fluid that is being wetted
3) Safety margin can help prevent the occurrence of an accident between vehicles due to failure of a car system, such as a punctured tire or failed breaking system
4) Safety margin helps to protect road users from the introduction of obstacles on the main roads such as ongoing road construction, broken down vehicles, road blockage by vehicles involved in an accident etc
5) Safety margin help protect road users from being involved in an accident due to the loss of driving focus of the driver of the frontal vehicle
Seeing what the other side of the world is doing right now
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.