Answer:
The glass transition occur when the given temperature gets drop below the temperature of the glass transition for the polymers. During the creases of the long range of the given motion, the polymer start changing from the state of hard into the form of brittle.
The range of the glass transition temperature are between the 0 to -150°C. The basic use of the polymer is basically depend upon the main properties of the polymer.
Answer:
b. equal to the specific entropy of the gas at the inlet.
Explanation:
Isentropic process is the process in which the entropy of the system remains unchanged. The word isentropic is formed from the combination of the prefix "iso" which means "equal" and the word entropy.
If a process is completely reversible, without the need to provide energy in the form of heat, then the process is isentropic.
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.) a component item is coded at the lowest level at which it appears in the BOM structure is the correct answer.
Explanation:
- Low-level coding is a kind of programming language used in BOM structures and it carries basic commands that are identified by a computer.
- The two types of low-level coding are
- Assembly language.
- machine language.
- The advantages of using low-level coding are programs develop by using low-level code are very memory effective and quick and there no need to use interpreters for the conversion of the source to machine code.