In A Few Short Paragraphs Explain Which Cloud Services You Use Googl ✓ Solved
In a few short paragraphs, explain which cloud services you use (Google, Amazon, iCloud, Verizon, Microsoft One, Dropbox, etc) and what type of information you store (docs, photos, music, other files?). How much space do you have and what does this cost per month? write an essay in 300 words 3 references #include <stdlib.h> #include <iostream> #include <iomanip> using namespace std; #include "afxwin.h" #include <afxdb.h> #include "Net.h" //void printdata(CStringList& lastnamelist, double number[6][6]); //void printtotals(double totalarrays[]); void printheading(); void printreport(Net* person[]); void printhighest(Net* person[]); void getsearch(Net* person[]); void getsort(Net* person[]); void processgroup(Net* person[]); void compute(Net* person[]); #pragma unmanaged int main() { system("cls"); system("Color 70"); CString Connection; CDatabase database; CString username; CString password; username = "DESKTOP-LG37VVR\SQLEXPRESS\jcswa"; Connection = _T("Driver={SQL Server Native Client 11.0};Server=DESKTOP-LG37VVR\SQLEXPRESS;Database=MonthEndBalanceSQL;Trusted_Connection=Yes;Uid=") + username + _T(";Pwd=") + password + _T(";"); database.OpenEx(Connection, CDatabase::useCursorLib); const int size = 10; Net* person[size]; int i = 0; CString query = "SELECT LastName, PreviousBalance, Payments, Charges FROM MonthendTable"; CRecordset recordset(&database); CString temp, record; recordset.Open(CRecordset::forwardOnly, query, CRecordset::readOnly); CString lastname; CStringList lastnamelist; CString spreviousBalance, spayments, scharges, snewbalance, sfinancecharge, smonthendbalance; double previousBalance, payments, charges, newbalance, financecharge, monthendbalance; //double number[6][6]; int col = 0, row = 0; while (!recordset.IsEOF()) { record = _T(""); register int len = recordset.GetODBCFieldCount(); recordset.GetFieldValue("LastName", lastname); recordset.GetFieldValue("PreviousBalance", spreviousBalance); recordset.GetFieldValue("Payments", spayments); recordset.GetFieldValue("Charges", scharges); //lastnamelist.AddHead(lastname); col = 0; previousBalance = atof(spreviousBalance); payments = atof(spayments); charges = atof(scharges); person[i++] = new Net(lastname, previousBalance, payments, charges); row = row + 1; recordset.MoveNext(); } processgroup(person); compute(person); printheading(); printreport(person); printhighest(person); getsort(person); getsearch(person); cout << endl << endl; cout << "Program end" << endl; cin.get(); while (cin.get() != '\n'); return 0; } void processgroup(Net* person[]) { int num = Net::getcount(); Net* temp = person[0]; for (int x = 0; x < num; x++) { temp->copydatatogroup(person[x]); } } void printheading() { cout << endl << endl; cout << setw(12) << "Last Name" << setw(18) << "Previous Balance" << setw(18) << "Payments" << setw(18) << "Charges" << setw(18) << "New Balance" << setw(18) << "Finance Charge" << setw(18) << "Month End Balance" << endl; cout << endl; } void compute(Net* person[]) { int col = 0; int num = Net::getcount(); Net* object = person[0]; for (int row = 0; row < num; row++) { object->compute(person[row], row, col); } person[0]->addcolumns(); } void printreport(Net* person[]) { Net* object = person[0]; person[0]->printdata(); } void printhighest(Net* person[]) { int num; num = Net::getcount(); Net* top = person[0]; for (int st = 1; st < num; st++) { if (*top > person[st]) top = top; else top = person[st]; } cout << "\nPerson with the highest month end balance: " << endl; cout << top; } void getsearch(Net* person[]) { int num, index = 0; char name[20]; CString namsearch; cout << "\nEnter the name to search "; cin >> name; namsearch = (CString)name; bool found = false; num = Net::getcount(); int x = 0; while ((found != true) && (x < num)) { if (*person[x] == namsearch) { cout << person[x]; found = true; } x++; } if (found == false) cout << "Object not found " << endl; } void getsort(Net* person[]) { Net* object = person[0]; object->sortdata(); } what are Information Security Standards and why are they important.
Write 4 page(1200 words) paper in APA format. 5 references Do you feel the benefits of cloud computing are worth the threats and vulnerabilities? Have we arrived at a point where we can trust external agencies to secure our most precious data? Please explain your answer. essay in 300 words. 3 references.
Paper for above instructions
Cloud Services Utilization and Personal Data Management
In the realm of cloud computing, various platforms are available to manage and store data. Personal use propels me to utilize Google Drive, Amazon Web Services (AWS), and iCloud extensively for various needs ranging from document management to photo storage. Each of these services caters to different aspects of my data management needs.
Google Drive serves as the primary platform for my document storage and collaboration. This service allows me to upload files, create Google Docs, Sheets, and Slides which I can easily share with family or colleagues. I rely on it for project files and report submissions, primarily because of its seamless integration with other Google services. Google Drive offers 15GB of free storage; however, I have subscribed to the Google One service at approximately .99 per month for 100GB. This capacity is sufficient for storing important documents, presentations, and necessary backups (Google, 2023).
On the other hand, Amazon Web Services (AWS) provides a cloud computing solution that I leverage occasionally, especially when I require additional computational power and storage for larger projects, such as software development and data analysis. It also has the advantage of scalability, which is useful in projects that expand beyond the initial data input stage. AWS offers a pay-as-you-go model, meaning that I only pay for the services I use, although it can become costly if not managed well (Amazon, 2023).
iCloud, a service by Apple, is primarily used for storing photos, backups, and other essential files. The 5GB of free tier storage is often insufficient for my needs, thus I have opted for the 50GB plan at
In A Few Short Paragraphs Explain Which Cloud Services You Use Googl
In a few short paragraphs, explain which cloud services you use (Google, Amazon, iCloud, Verizon, Microsoft One, Dropbox, etc) and what type of information you store (docs, photos, music, other files?). How much space do you have and what does this cost per month? write an essay in 300 words 3 references #include <stdlib.h> #include <iostream> #include <iomanip> using namespace std; #include "afxwin.h" #include <afxdb.h> #include "Net.h" //void printdata(CStringList& lastnamelist, double number[6][6]); //void printtotals(double totalarrays[]); void printheading(); void printreport(Net* person[]); void printhighest(Net* person[]); void getsearch(Net* person[]); void getsort(Net* person[]); void processgroup(Net* person[]); void compute(Net* person[]); #pragma unmanaged int main() { system("cls"); system("Color 70"); CString Connection; CDatabase database; CString username; CString password; username = "DESKTOP-LG37VVR\\SQLEXPRESS\\jcswa"; Connection = _T("Driver={SQL Server Native Client 11.0};Server=DESKTOP-LG37VVR\\SQLEXPRESS;Database=MonthEndBalanceSQL;Trusted_Connection=Yes;Uid=") + username + _T(";Pwd=") + password + _T(";"); database.OpenEx(Connection, CDatabase::useCursorLib); const int size = 10; Net* person[size]; int i = 0; CString query = "SELECT LastName, PreviousBalance, Payments, Charges FROM MonthendTable"; CRecordset recordset(&database); CString temp, record; recordset.Open(CRecordset::forwardOnly, query, CRecordset::readOnly); CString lastname; CStringList lastnamelist; CString spreviousBalance, spayments, scharges, snewbalance, sfinancecharge, smonthendbalance; double previousBalance, payments, charges, newbalance, financecharge, monthendbalance; //double number[6][6]; int col = 0, row = 0; while (!recordset.IsEOF()) { record = _T(""); register int len = recordset.GetODBCFieldCount(); recordset.GetFieldValue("LastName", lastname); recordset.GetFieldValue("PreviousBalance", spreviousBalance); recordset.GetFieldValue("Payments", spayments); recordset.GetFieldValue("Charges", scharges); //lastnamelist.AddHead(lastname); col = 0; previousBalance = atof(spreviousBalance); payments = atof(spayments); charges = atof(scharges); person[i++] = new Net(lastname, previousBalance, payments, charges); row = row + 1; recordset.MoveNext(); } processgroup(person); compute(person); printheading(); printreport(person); printhighest(person); getsort(person); getsearch(person); cout << endl << endl; cout << "Program end" << endl; cin.get(); while (cin.get() != '\n'); return 0; } void processgroup(Net* person[]) { int num = Net::getcount(); Net* temp = person[0]; for (int x = 0; x < num; x++) { temp->copydatatogroup(person[x]); } } void printheading() { cout << endl << endl; cout << setw(12) << "Last Name" << setw(18) << "Previous Balance" << setw(18) << "Payments" << setw(18) << "Charges" << setw(18) << "New Balance" << setw(18) << "Finance Charge" << setw(18) << "Month End Balance" << endl; cout << endl; } void compute(Net* person[]) { int col = 0; int num = Net::getcount(); Net* object = person[0]; for (int row = 0; row < num; row++) { object->compute(person[row], row, col); } person[0]->addcolumns(); } void printreport(Net* person[]) { Net* object = person[0]; person[0]->printdata(); } void printhighest(Net* person[]) { int num; num = Net::getcount(); Net* top = person[0]; for (int st = 1; st < num; st++) { if (*top > person[st]) top = top; else top = person[st]; } cout << "\nPerson with the highest month end balance: " << endl; cout << top; } void getsearch(Net* person[]) { int num, index = 0; char name[20]; CString namsearch; cout << "\nEnter the name to search "; cin >> name; namsearch = (CString)name; bool found = false; num = Net::getcount(); int x = 0; while ((found != true) && (x < num)) { if (*person[x] == namsearch) { cout << person[x]; found = true; } x++; } if (found == false) cout << "Object not found " << endl; } void getsort(Net* person[]) { Net* object = person[0]; object->sortdata(); } what are Information Security Standards and why are they important.
Write 4 page(1200 words) paper in APA format. 5 references Do you feel the benefits of cloud computing are worth the threats and vulnerabilities? Have we arrived at a point where we can trust external agencies to secure our most precious data? Please explain your answer. essay in 300 words. 3 references.