Answer:
Tack coat is a sprayed application of an asphalt binder upon an existing asphalt or Portland cement concrete pavement prior to an overlay, or between layers of new asphalt concrete.
Explanation:
This is a very very difficult one for me, let me get back to you with the proper answer.
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer: Electric current originates from positively charged protons negatively charged electrons of an atom.
Explanation:
The movement of ions (positive or negative) from one point to another is called electric current.
An atom has three sub-atomic particles. These are protons, neutrons and electrons.
Protons are positively charged, neutrons have no charge and electrons are negatively charged. Protons and neutrons reside inside the nucleus of an atom whereas electrons revolve around the nucleus.
So, protons and electrons are responsible for originating electric current form an atom as these are the charged particles.
Thus, we can conclude that electric current originates from positively charged protons negatively charged electrons of an atom.
1.Only suitable for dc
2.more expensive than moving iron type
3. Easily damaged