Answer:
modulator
Explanation:
A modulator is a device that performs modulation.
(Single conversation)
<span>The Union victory in the Civil War may have given some 4 million slaves their freedom, but African Americans faced a new onslaught of obstacles and injustices during the Reconstruction era (1865-1877). By late 1865, when the 13th Amendment officially outlawed the institution of slavery, the question of freed blacks’ status in the postwar South was still very much unresolved. Under the lenient Reconstruction policies of President Andrew Johnson, white southerners reestablished civil authority in the former Confederate states in 1865 and 1866. They enacted a series of restrictive laws known as “black codes,” which were designed to restrict freed blacks’ activity and ensure their availability as a labor force now that slavery had been abolished. For instance, many states required blacks to sign yearly labor contracts; if they refused, they risked being arrested as vagrants and fined or forced into unpaid labor. Northern outrage over the black codes helped undermine support for Johnson’s policies, and by late 1866 control over Reconstruction had shifted to the more radical wing of the Republican Party in Congress.</span>
Answer:a)Local Database
Explanation: Local database is the type of the application database storage that is responsible for storing of the data locally in accordance with the application. It uses the SDF files for the processing and these files don't require much effort such as installing of any particular server for the database.They are considered as not highly secure databases.Therefore,the correct option is option(a).
Its 100% A bark and i am writing extra cause My answer has to be more than 20 letters
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
// recursive function to print digit of number in revers order
void rev_dig(int num)
{
if(num==0)
return;
else
{
cout<<num%10<<" ";
// recursive call
rev_dig(num/10);
}
}
// driver function
int main()
{
int num;
cout<<"enter a number:";
// read the number from user
cin>>num;
cout<<"digits in revers order: ";
// call the function with number parameter
rev_dig(num);
return 0;
}
Explanation:
Read the input from user and assign it to variable "num". Call the function "rev_dig" with "num" parameter.In this function it will find the last digit as num%10 and print it. Then call the function itself with "num/10". This will print the second last digit. Similarly it will print all the digits in revers order.
Output:
enter a number:1234
digits in revers order: 4 3 2 1
Diagram :