Answer:
1000
Explanation I SEARCHED IT Up
Answer:
chunking and short-term is the correct answer of this question.
Explanation:
chunking is a strategy to enhance a short-term memory.
Chunking is an method used to separate larger numbers that can not be psychologically separated.Chunking is the grouping of words in one sentence into short, important phrases. A chunk is the material segment that is used in many graphical formats, such as PNG etc.
Short-term memory is the knowledge a person is considering or is conscious of. This is also called healthy or main memory.
The effectiveness of using thicker bags are:
- It has the lowest environmental impact in terms of any other disposable bag.
- It can be used three to six more times.
- It is environmentally sustainable.
<h3>What is the effect of thicker plastic bags have on the environment?</h3>
The use of plastic bags is known to have some form of detrimental effects on the such as animal choking, pollution, and others.
Conclusively, Note that thicker bags needs a lot of plastic to be able to produce it and it goes to waste even if a person do not use it again.
Learn more about environment from
brainly.com/question/17413226
I believe it's change the way text is wrapped around an object.
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// recursive function to find sum from 1 to n
int recur_Sum(int n)
{ // base condition
if (n <= 1)
return n;
// recursive call
return n + recur_Sum(n - 1);
}
// main function
int main()
{
// variables
int n;
cout<<"Enter a number:";
// read the number
cin>>n;
// print the sum
cout<<"Sum of first "<<n<<" integer from 1 to "<<n<<" is:"<<recur_Sum(n);
return 0;
}
Explanation:
Read a number from user and assign it to variable "n".Call function recur_Sum() with parameter "n".This function will recursively call itself and find the Sum of first n numbers from 1 to n.Then function will return the sum.
Output:
Enter a number:10
Sum of first 10 integer from 1 to 10 is:55