Answer:
A. Forces that act perpendicular to the surface and pull an object apart exert a tensile stress on the object.
Explanation:
Tensile stress is referred as a deforming force, in which force acts perpendicular to the surface and pull an object apart, attempting to elongate it.
The tensile stress is a type of normal stress, in which a perpendicular force creates the stress to an object’s surface.
Hence, the correct option is "A."
Answer:
The sentence excerpted from the e-mail uses passive voice.
Given the purpose of your message, this voice is appropriate.
Explanation:
Because the objective is to remedy the situation a passive voice is great because it emphasizes the action and the object instead of the subject.
We want to emphasize the document and the incorrect information, not our colleague.
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;
}
Answer:
a) the object floats
b) the object floats
c) the object sinks
Explanation:
when an object is less dense than in the fluid in which it is immersed, it will float due to its weight and volume characteristics, so to solve this problem we must find the mass and volume of each object in order to calculate the density and compare it with that of water
a)
volumen for a cube
V=L^3
L=1.53in=0.0388m
V=0.0388 ^3=5.8691x10^-5m^3=58.69ml
density=m/v
density=13.5g/58.69ml=0.23 g/ml
The wooden block floats because it is less dense than water
b)
m=111mg=0.111g
density=m/v
density=0.111g/0.296ml=0.375g/ml
the metal paperclip floats because it is less dense than water
c)
V=0.93cups=220.0271ml
m=0.88lb=399.1613g
Density=m/v
density=399.1613/220.027ml=1.8141g/ml
the apple sinks because it is denser than water