Answer:
Social Assistance
Explanation:
Provision and disbursement of intervention in other to palliate the suffering and want of an individual, group or community can be described as rendering social assistance. Assistance which also means helping people fulfill their needs could be offered by the government, non-governmental organizations or individuals personnels. Rendering social assistance could be in the form of cash or gift offerings, provision of food for the hungry, shelter for the homeless, medical interventions for the sick and catering for other touch points of the needy.
A unit of information equal to one billion {109} or, strictly 230 bytes
Answer:
See explaination for program code
Explanation:
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main() {
string name;
int age;
cout << "Enter name of user: ";
getline(cin, name);
cout << "Enter age of user: ";
cin >> age;
ofstream outdata("outdata");
outdata << name << " " << age << endl;
outdata.close();
return 0;
}
D I would think……… good luck
<u>Answer</u> : Float
<u>Explanation</u> :
Complete the code.
import csv
inFile = open ("one.txt","r")
outFile = open("another.txt", "w")
myReader = csv.reader(inFile)
for item in myReader:
aWord = item[0]
aNumber = float(item[1]) + 0.4
line = aWord + "," + str(aNumber) + 'Float'
outFile.write(line)