1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Tom [10]
2 years ago
7

Which of the following is NOT a useful strategy when making an informed purchase ?

Computers and Technology
1 answer:
Jlenok [28]2 years ago
7 0

Answer:

3 Reasons to Use Cash and 3 Reasons to Choose Credit

Credit and debit cards have become so ubiquitous, you'd be forgiven for thinking physical cash is just a couple years away from being declared obsolete and worthless by the government.

Well, as it turns out, the death of dead presidents is greatly exaggerated, as over $1.25 trillion still circulates around the United States alone.

Way too many people use cash for it to ever go away completely, regardless of how much plastic gets wiped every day.

Easier to Watch and Control Your Spending

Actually seeing the cash you owe, as opposed to simply staring at a generic card with no monetary value of its own, can remind you to spend less overall, since all of a sudden the money is real, and real valuable at that.

Financial guru Ramit Sethi, for example, lost his credit card, and spent nothing but cash until a replacement came. He reported spending 18% less when forced to watch his green wad dwindle in real-time.

Some Places Still Don't Take Plastic (or Require a Minimum Purchase Amount)

Amazingly, over half of all small businesses won't take cards, likely because they can't afford the fees.

It's always good to keep at least some cash on you in case you need to make a purchase from one of these places.

Explanation:

3 Reasons To Use Cash (and 3 Reasons To Choose Credit)

Credit and debit cards have become so ubiquitous, you'd be forgiven for thinking physical cash is just a couple years away from being declared obsolete and worthless by the government.

Well, as it turns out, the death of dead presidents is greatly exaggerated, as over $1.25 trillion still circulates around the United States alone.

Way too many people use cash for it to ever go away completely, regardless of how much plastic gets wiped every day.

So why in the world would anydiv still pay with Georges and Bens? Here are a few good reasons why:

Less Chance of Identity Theft

Few things are scarier than hearing that the store you regularly swipe your card at just had a security breach, and that some anonymous criminal may have your identity at their disposal.

Paying cash eliminates that issue -- chunks of metal and pieces of paper stacked in a register tells fraudsters absolutely nothing, while the information sent to vulnerable computers via your bank card can reveal everything.

Easier to Watch and Control Your Spending

Actually seeing the cash you owe, as opposed to simply staring at a generic card with no monetary value of its own, can remind you to spend less overall, since all of a sudden the money is real, and real valuable at that.

Financial guru Ramit Sethi, for example, lost his credit card, and spent nothing but cash until a replacement came. He reported spending 18% less when forced to watch his green wad dwindle in real-time.

Some Places Still Don't Take Plastic (or Require a Minimum Purchase Amount)

Amazingly, over half of all small businesses won't take cards, likely because they can't afford the fees.

It's always good to keep at least some cash on you in case you need to make a purchase from one of these places.

Even if they accept cards, some of these businesses might only do so if you spend X amount, in order to override the fee.

If you entered the store to spend more than the minimum amount, then swipe away. But if you only want a loaf of bread, and they want you to spend $10 before they'll accept your card, just pay for your bread with bread.

That all being said though, there are several cases where plastic owns cash. Here are a few of those:

Online Purchases

Increasing amounts of items can now only be purchased online and with a credit card, or at the very least are extremely difficult to cover with cash.

Plane tickets, while still technically available at a travel agent's physical office, are usually much, much cheaper online, where you can't obviously use cash. The same thing goes for e-books, MP3s, subscriptions to streaming sites, and the like.

The more you shop online, the more reliant you will become on cards in your everyday life.

You might be interested in
Compare userNumber with compareNumber and display 'Numbers are not equal' if the numbers are different. Then, display 'Variables
masya89 [10]

Answer:

Following are attached images that will help you understand the complete code. The code is tested with different variables and different outputs are obtained. All the necessary description is given in the form o comments inside the code.

Explanation:

3 0
3 years ago
what is the best paper choice for printing a book with 1000 pages A. Cover B. Text C. Index D. Newsprint​
Eva8 [605]

Answer:

B

Explanation:

Text is the best paper choice.

Have a great day

3 0
2 years ago
This is an example of what type of formula?
Sidana [21]

The type of formula that is represented by the given example =(D1+D17) in excel is known as; The SUM Formula function

What are functions in excel?

There are different types of formula functions in excel such as;

SUM

COUNT

COUNTA

IF

TRIM

MAX & MIN

Now, in this question, the formula we are given is =(D1+D17) and the example it represents is the SUM formula function.

5 0
1 year ago
Create a structure representing a student. The member variables should include student name, student ID, and four test grades fo
Neporo4naja [7]

Answer:

Output:

Name: Brainly

ID:0001

Write the 4 tests grades of the student separated by space :10 9 8 10

Brainly

0001

10 9 8 10

Average :9.66667

'1' to continue '0' to exit :

Explanation:

#include<iostream>

#include<string>

using namespace std;

//variables declaration

struct Student {

  string id; //string declaration ID

  string name; // string declaration name

  int grades[4]; //array of 4 because it is 4 grades

};

//definition of the function get information

void inputData(Student &s){

 

   

   cout << "Name:" ;

   getline(cin,s.name);

   cout << "ID:";

   cin >> s.id;

   cout << "Write the 4 tests grades of the student separated by space :";

   for (int i = 0; i<4; i++)

       cin >> s.grades[i];

}

//definition of the function of average

double inputAvg(Student s){

   double summation;

   int temporary;

   double average;

   for (int i = 0; i<4; i++){  

      for (int j = i; j<4; j++){

         if (s.grades[j] > s.grades[i]){

             temporary = s.grades[i];

             s.grades[i] = s.grades[j];

             s.grades[j] = temporary;

         }

      }

    }

    summation = 0;

    for (int i = 0; i<3; i++){

        summation = summation + s.grades[i];  

    }

    average = summation/3;

    return average;

}

void disp(Student *s){

   cout << s->name << endl;

   cout << s->id << endl;

   for (int i = 0; i<4; i++)

       cout << s->grades[i] << " ";

   cout << endl;

   cout << "Average :" << inputAvg(*s) << endl;

   

}

int main(){

  Student st;

  int ch;

  while(true){

      inputData(st);

      disp(&st);

      cout << " '1' to continue '0' to exit :";

      cin >> ch;

      if (ch == 0)

         break;      

  }

  return 0;

}

6 0
2 years ago
Which method call converts the value in variable stringVariable to an integer?
zlopas [31]

Answer:

The correct answer for the given question is Integer.parseInt( string variable );

Explanation:

Integer.parseInt( string variable ); is the method in a java programming language that convert the string into the integer value. It takes a string variable and converted into the integer.

Following are the program in java which convert the string value into an integer value.

class Main  

{

 public static void main(String []args) // main function

{

   String str1 = "10009";

// variable declaration

   int k = Integer.parseInt(str1);

// convert the string into integer.

   System.out.println("Converted into Int:" + k);

}

}

Output:

Converted into Int:10009

Convert.toInt( stringVariable );

Convert.parseInt( stringVariable,Integer.toInt( stringVariable ); are not any method to convert the string into integer .

Therefore the correct answer is :Integer.parseInt( stringVariable );

3 0
3 years ago
Other questions:
  • 3. What type of error is in the following sentence? "George W. Bush is the President of the United States of
    5·1 answer
  • Which of the following best explains the concept of a prototype
    10·1 answer
  • Three variables, x, y and z, supposedly hold strings of digits, suitable for converting to integers. Write code that converts th
    7·1 answer
  • What does the following loop do?
    5·1 answer
  • Which of the following are characteristics of a cell
    12·1 answer
  • Edible vaccines, a more controversial approach to vaccine development, have been investigated by scientists. Plants can be genet
    6·1 answer
  • Where do players resurrect if they have been destroyed in a game?
    13·1 answer
  • Choose all that apply.
    5·2 answers
  • Help help help help help!!!
    7·1 answer
  • Please help!!! Question 8
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!