Jamie's financial responsibility for the unauthorized use is dependent on how fast she report the theft of her debit/ATM card.
Since Jamie Lee is dealing with an unauthorized use of her ATM or debit card, she ought to act quickly so as to avoid full liability for unauthorized charges since her card was stolen.
According to Federal laws and bank policies, Under the Federal Electronic Fund Transfer Act, the following liability applies:
- $0 if she reports the theft of the card immediately before any unauthorized charges are made.
- She would be charged up to $50 if she notifies the bank within two business days after she realized the theft.
-
She would be charged up to $500 if she fails to notify the bank within two business days after the theft but does notify the bank within 60 days after her bank statement is mailed to her with a list of the unauthorized withdrawals.
-
She wold be charged unlimited charges if she fails to notify the bank within 60 days after her bank statement is mailed to her listing the unauthorized withdrawals.
From the polices applicable, It is necessary that Jamie Lees notifies the bank or card issuer of the theft as soon as possible so as not to incur much financial responsibilites for the unauthorised use.
Read on to learn about unauthorized use debit/ATM card: brainly.com/question/21485510
D3+(A3-B3) If you think of the future income and expenses then you can infer the expenses will lower the income amount so we use parenthesis and since there is money already in the account you would simply add that to the future total. <span />
Answer:
// here is code in the C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main() {
// variable to store the input
int birth_month,birth_year;
cout<<"enter birth month:";
// read the birth month
cin>>birth_month;
cout<<"enter birth year:";
// read the birth year
cin>>birth_year;
// print the output
cout<<birth_month<<"/"<<birth_year<<endl;
return 0;
}
Explanation:
Declare two variables to store the birth month and birth year.Read the inputs from the user and assign it the variables.Print the birth month and year separated by a slash "/".
Output:
enter birth month:1
enter birth year:2000
1/2000
Answer:
expr.at(g) returns a string, not a char. They are not the same thing and that is what the compiler is complaining about.
Answer:
Table for Area codes are not missing;
See Attachment for area codes and major city I used
This program will be implemented using c++ programming language.
// Comments are used for explanatory purposes
// Program starts here
#include <iostream>
using namespace std;
int main( )
{
// Declare Variable area_code
int area_code;
// Prompt response from user
cout<<Enter your area code: ";
cin<<"area_code;
// Start switch statement
switch (area_code) {
// Major city Albany has 1 area code: 229...
case 229:
cout<<"Albany\n";
break;
// Major city Atlanta has 4 area codes: 404, 470 678 and 770
case 404:
case 470:
case 678:
case 770:
cout<<"Atlanta\n";
break;
//Major city Columbus has 2 area code:706 and 762...
case 706:
case 762:
cout<<"Columbus\n";
break;
//Major city Macon has 1 area code: 478...
case 478:
cout<<"Macon\n";
break;
//Major city Savannah has 1 area code: 912..
case 912:
cout<<"Savannah\n";
break;
default:
cout<<"Area code not recognized\n";
}
return 0;
}
// End of Program
The syntax used for the above program is; om