Answer: B. Using spreadsheets to plan budgets
Explanation: yes
The answer is eligibility depends on income.
Means-tested program is an aid to poor and lower-income person. Example of the aid given is food stamp, medicaid, public housing and temporary assistance.
Answer:
$100,000= cost of goods manufactured
Explanation:
Giving the following information:
Kushman Industries has $40,000 of ending finished goods inventory.
Beginning finished goods inventory was $20,000
Cost of goods sold was $80,000
To calculate the cost of goods manufactured, we need to use the following formula:
COGS= beginning finished inventory + cost of goods manufactured - ending finished inventory
80,000 = 20,000 + cost of goods manufactured - 40,000
$100,000= cost of goods manufactured
Leslee is a loan processor who is not required to perform her duties at the direction of or subject to the supervision. Leslee is an independent contractor.
An independent contractor is a self-employed person who is contracted in order to perform work for or provide services to another entity as a non-employee. Thus, independent contractors are not employees, nor are they eligible for employee benefits.
Here, as Leslee is a loan processor, so she is not required to perform her duties at the direction of or subject to the supervision and instruction of an individual who is licensed. As she is an independent contractor.
Hence, companies may also hire an independent contractor to do a job.
To learn more about independent contractor here:
brainly.com/question/20165285
#SPJ4
Answer:
#include<iostream>
#include<string>
#define N 10
#define M 4
using namespace std;
class Painting
{
protected:
string title;
string author;
int value;
public:
Painting(string Title="", stringAuthor="",int Value=400) {title=Title;author=Author;value=Value;}
void setTitle(string newTitle){title=newTitle;}
void setAuthor(string newAuthor){author=newAuthor;}
void display() {cout<<"Title:"<<title<<endl; cout<<"Author:
"<<author<<endl<<"Value:
"<<value<<endl;}
};
class FamousPainting:public Painting
{
public:
FamousPainting(string Title, stringAuthor, int Value=25000): Painting(Title,Author,Value){}
};
int main()
{
Painting *paintings=new Painting[N];
stringfamous[M]={"Degas","Monet",
"Picasso","Rembrandt"};
string title, author;
int i,k,j;
for(i=0;i<N;i++)
{
cout<<"Input title: ";
getline (cin, title);
cout<<"Input author: ";
getline (cin, author);
k=-1;
for(j=0;j<M;j++)
if(famous[j]==author)
{
k=j;
break;
}
if(k>=0)
paintings[i]=FamousPainting(title,author);
else
paintings[i]=Painting(title,author);
}
for(i=0;i<N;i++)
{
cout<<"Painting#"<<i<<":"<<endl;
paintings[i].display();
}
return 0;
}
Explanation: