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
Marysya12 [62]
3 years ago
5

Conversations on twitter move fast and it's easy to miss the opportunity to engage with an important influencer or prospect. ___

__________ are a great way to group together similar people and topics in twitter so you can focus on activity within a group without distractions.
Business
1 answer:
Fiesta28 [93]3 years ago
7 0
<span>Conversations on twitter move fast and it's easy to miss the opportunity to engage with an important influencer or prospect. Twitter lists are a great way to group together similar people and topics in twitter so you can focus on activity within a group without distractions.

Twitter lists is a list you can create on twitter to organize your topics. This helps speeds up the time and allows you to read/view the information that you want without the distractions of other information clogging your feed. People can communicate so fast past on twitter that it is often hard to keep up, so by doing this, it makes everything more streamline. </span>
You might be interested in
The City of Southern Pines maintains its books so as to prepare fund accounting statements and records worksheet adjustments in
Andrei [34K]

Answer: The answer has been attached

Explanation:

The journal is a book in accounting that is used to record the transactions that affect a business. It should be noted that the double entry method of bookkeeping is utilised while recording in a journal.

The journal has been attached in the following way:

1. The journal was used to record the balance sheet particulars.

2. To record the transaction in the internal service fund that is external to the government.

3. To record the internal service fund in the government-wide statements as a part of governmental activities.

It should also be noted that the net income of $84,000 was to be shared as one-third to general government, one-third to public safety, and one-third to public works. This means they'll all receive ($84,000/3) = $28,000 each.

Further explanation can be found in the attached file.

3 0
3 years ago
The ______ requires that if a new employee had group health insurance at a previous employer and the new employer has healthcare
IRINA_888 [86]

Answer:

The correct answer is C. Consolidated Omnibus Budget Reconciliation Act.

Explanation:

COBRA stands for the Consolidated Omnibus Budget Reconciliation Act. This law guarantees employees the right to make payments for group medical insurance in order to maintain the insurance they would otherwise lose after:

- The reduction of your work hours.

- Leave the job.

- Job loss

Most people can keep insurance for up to 18 months. Some people may be able to keep it for a few months longer than that.

4 0
3 years ago
A group of workers normally consists of 60 men, 30 women and 20 boys. They are paid at standard hourly rates as under:
dexar [7]
  1. Labour cost variance =  R.s 33,000 (F)
  2. Labour rate variance = R.s 33000 (F)
  3. Labour efficiency variance = 0

Given:

Standard Number of men = 60

Standard Number of women = 30

Standard Number of boys = 20

Standard hour rate for men = R.s 280

Standard hour rate for women = R.s 160

Standard hour rate for boys = R.s 140

Weekly working hour = 40 hours

Expected unit = 5,000 units

Number of men in march week = 70

Number of women in march week = 25

Number of boy in march week = 25

Actual wage for men = R.s 270

Actual wage for women = R.s 165

Actual wage for boys = R.s 130

Actual units = 4,500 units

Find:

  1. Labour cost variance
  2. Labour rate variance
  3. Labour efficiency variance

Computation:

Labour cost variance = [SC for AO] - AC

Labour cost variance =  [( 70 × 280) + (25 × 160) + (25 × 140)] - [(70 × 270) + (25 × 165) + (25 × 130)] × 40  

Labour cost variance = (27,100 - 26,275 ) × 40

Labour cost variance =  R.s 33,000 (F)  

Labour rate variance = (SR - AR) × AH worked

Labour rate variance = [(280 - 270)70 + (160 - 165)25 + (140 - 130)25]40

Labour rate variance = [700 - 125 + 250]40

Labour rate variance = [825]40

Labour rate variance = R.s 33000 (F)

Labour efficiency variance = (SH allowed - AH worked)SR

Labour efficiency variance = (0 - 0)SR

Labour efficiency variance = 0

Learn more;

brainly.com/question/22856853?referrer=searchResults

5 0
3 years ago
In the month of June, a department had 20,000 units in beginning work in process that were 70% complete. During June, 90,000 uni
fgiga [73]

Answer:

100,000 units

Explanation:

The computation of the transferred out units of the process is shown below:

= Transferred units × percentage of completion + ending work in process inventory units × percentage of completion

= 90,000 units × 100% + 10,000 units × 100%

= 90,000 units + 10,000 units

= 100,000 units

All other information which is given is not considered. Hence, ignored it

3 0
4 years ago
Write the AddressList method newBusiness. This method searches addresses for an existing business with an identical address (i.e
max2010maxim [7]

Answer:

See explaination

Explanation:

// Address.java

public class Address {

/**

* The name of the business

*/

private String name;

/**

* The name of the street the business is on

*/

private String street;

/**

* The street number of the business

*/

private int number;

/**

* Constructs an Address that represents a business with name nm,

* at number no on the street st

*/

public Address(String nm, String st, int no)

{

name = nm;

street = st;

number = no;

}

/**

* Returns the name of the business

*/

public String getName()

{

return name;

}

/**

* Returns the name of the street on which the business is located

*/

public String getStreet()

{

return street;

}

/**

* Returns the street number of the business

*/

public int getNumber()

{

return number;

}

}

//end of Address.java

//AddressBook.java

import java.util.ArrayList;

import java.util.List;

public class AddressBook {

/**

* The list of business addresses. No two businesses in the list

* can have the same address (both the same street and street number)

*/

private List<Address> addresses;

/**

* Constructs an empty AddressBook

*/

public AddressBook()

{

addresses = new ArrayList<Address>();

}

/**

* atparam st the name of a street

* atreturn a list with the names of each business with an address on that street

*/

public List<String> onStreet(String st)

{

// create an empty output list of names of business

List<String> businessName = new ArrayList<String>();

// loop over the list of addresses

for(int i=0;i<addresses.size();i++)

{

// if ith street of address = nm, add the name of the business to the output list

if(addresses.get(i).getStreet().equalsIgnoreCase(st))

businessName.add(addresses.get(i).getName());

}

return businessName; // return the list

}

/**

* Searches for an existing business with an identical address (street and number

* both match). Updates the record to an address with name nm, street st and number no.

* If no entry already exists adds a new address to the end of the list with these parameters.

*

* atparam nm the name of the business

* atparam st the street the business is on

* atparam no the street number of the business

* atreturn the index of where the business address is on the list

*/

public int newBusiness(String nm, String st, int no)

{

// loop over the list of addresses

for(int i=0;i<addresses.size();i++)

{

// if ith index addresses match the street and number of the input st and no

if((addresses.get(i).getStreet().equalsIgnoreCase(st)) && (addresses.get(i).getNumber() == no))

{

addresses.remove(i); // remove the ith address from list

addresses.add(i, new Address(nm,st,no)); // add a new address with the input name, street and number at ith index

return i; // return the index i

}

}

// if no address match, add the business at the end of the list

addresses.add(new Address(nm,st,no));

return addresses.size()-1; // return the last index

}

}

//end of AddressBook.java

5 0
3 years ago
Other questions:
  • You are planning a bank. You plan for six tellers. Tellers take 15 minutes per customer with a standard deviation of 7 minutes.
    8·1 answer
  • Why is hazard city at more risk for lahars than hutton or wrightstown, even though they are closer to lava mountain than hazard
    13·1 answer
  • The future value of a lump sum of $500 invested today at a constant annual interest rate of 2.5% would be worth how much in 8 ye
    12·2 answers
  • G refer to the given data. if your taxable income increases from $4,000 to $5,000, you will encounter a marginal tax rate of:
    13·1 answer
  • Imagine that your boss has given you the task of giving a speech at the next staff meeting about new office procedures. What que
    6·1 answer
  • Applying the concept of opportunity cost to the pollution of a lake, an economist probably would conclude that: a. no pollution
    11·1 answer
  • The Missing Link Chain-Link Fence Company is trying to determine how many chain-link fabricating machines to buy for its factory
    6·1 answer
  • Addams Corporation paid cash dividends totaling $75,000 during its most recent fiscal year. How should this information be repor
    8·1 answer
  • Please Help!
    13·1 answer
  • ░░░░▄▄▄▄▀▀▀▀▀▀▀▀▄▄▄▄▄▄ ░░░█░░░░▒▒▒▒▒▒▒▒▒▒▒▒░░▀▀▄ ░░█░░░▒▒▒▒▒▒░░░░░░░░▒▒▒░░█ ░█░░░░░░▄██▀▄▄░░░░░▄▄▄░░░█ █░▄▄▄▒░█▀▀▀▀▄▄█░░░██▄▄█░░
    14·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!