A form of payment that is guaranteed to be as good as cash is a

Answers

Answer 1

Answer:

bank check

A bank check, more commonly known as cashier's check, is a payment order which is issued against the bank's fund rather than any individual account holder's deposit with the bank.

plsssssss mark me brianliest


Related Questions

What happens when in Word 2016 when the home ribbon tab is clicked on?

Answers

Answer: The home tab is opened up.

Explanation:

When using Word 2016 and the home ribbon tab is clicked on, the home tab is opened up. This tab houses the very basic functions of the word document, a lot of which have to be used if even a simple document needs to be typed.

This tab allows you to change the font as well as the font size and color. The page alignment is also set here as well as the text direction. Even headings can be customized here.

There are a lot more functions but the high level point is that the home tab is where the most basic of functions are, as shown in the attachment.

high quality permanent output can be produced using a​

Answers

Answer:

Using a printer of high efficiency cartilage.

Type the correct answer in the box. Spell all words correctly.
In a content file, Rick wants to add information that gives directions about how the content will be used. He also wants it to be easily differentiable from the content. Which language should Rick use for this?
Rick can use the _____
language to give directions about the content.

Answers

Answer: markup

Explanation:

Markup is used to give directions about the arrangement of an image/text.

Answer:

Rick can use the markup language to give directions about the content.

Explanation:

I got it right on the test for Edmentum.

Write a function called PayLevel that returns a level given an Ssn as input. The level are: "Above Average" if the employee makes more than the average for their department "Average" if the employee makes the average for their department "Below Average" if the employee makes less than the average for their department

Answers

Answer:

Explanation:

Since no further information was provided I created the PayLevel function as requested. It takes the Ssn as input and checks it with a premade dictionary of Ssn numbers with their according salaries. Then it checks that salary against the average of all the salaries and prints out whether it is Above, Below, or Average. The output can be seen in the attached picture below.

employeeDict = {162564298: 40000, 131485785: 120000, 161524444: 65000, 333221845: 48000}

average = 68250

def PayLevel(Ssn):

   pay = employeeDict[Ssn]

   print("Employee " + str(Ssn) + " is:", end=" "),

   if pay > average:

       print("Above Average")

   elif pay < average:

       print("Below Average")

   else:

       print("Average")

PayLevel(161524444)

PayLevel(131485785)

pleaseeeeeeee tellllllllllllllllllllll​

Answers

Answer:

digital communications will be the correct answer

Answer:

non verbal communication is the answer

i need the solution to this task please anyone

Answers

Answer:

.

Explanation:

Given positive integer n, write a for loop that outputs the even numbers from n down to 0. If n is odd, start with the next lower even number.

Answers

Answer:

if(n % 2 == 0){

   for(int i = n; i >= 0; i-=2){

        System.out.println(i);

    }

}

else{

     for(int i = n - 1; i >= 0; i-=2){

        System.out.println(i);

     }

}

Sample output

Output when n = 12

12

10

8

6

4

2

0

Output when n = 21

20

18

16

14

12

10

8

6

4

2

0

Explanation:

The above code is written in Java.

The if block checks if n is even by finding the modulus/remainder of n with 2.  If the remainder is 0, then n is even. If n is even, then the for loop starts at i = n. At each cycle of the loop, the value of i is reduced by 2 and the value is outputted to the console.

If n is odd, then the else block is executed. In this case, the for loop starts at i = n - 1 which is the next lower even number. At each cycle of the loop, the value of i is reduced by 2 and the value is outputted to the console.

Sample outputs for given values of n have been provided above.

When you use the Query Editor to run a query that returns an xml type, theManagement Studio displays the XML data in blue with underlining to indicate that it is what?
a. link
b. misspelled
c. XML blue
d. XML Data
give brainliest to correct answer. no links and need asap please, thanks

Answers

Answer is c hope this helps

To convert microseconds to nanoseconds: a. Take the reciprocal of the number of microseconds. b. Multiply the number of microseconds by 0.001. c. Multiply the number of microseconds by 0.000001. d. Multiply the number of microseconds by 1,000. e. Multiply the number of microseconds by 1,000,000.

Answers

Answer: D. Multiply the number of microseconds by 1,000.

Explanation:

In order to convert microseconds to nanoseconds, it should be noted that one should multiply the number of microseconds by 1,000.

For example, if we want to convert 12 microseconds to nanoseconds. This will be:

= 12 × 1000

= 12000 nanoseconds.

Therefore, with regards to the information given above, the correct option is D.

How wireless communication might affect the development and implementations of internet of things?​

Answers

If people send a link don’t try them report them!

A sense of scale tells us what about the objects in a picture?
O Their size
O Their color
Their placement
O Their sharpness

Answers

Answer:

A. the size

Explanation:

I need help with this question!!

Answers

Answer:

True

Explanation:

it just to make sense

the laser printer operates on the same principle as a photocopier is it true or false.?​

Answers

true they both use laser technology

Write a recursive method named power that accepts two integers representing a base and an exponent and returns the base raised to that exponent. For example, the call of power(3, 4) should return 34 or 81 . If the exponent passed is negative, throw an IllegalArgumentException. Do not use loops or auxiliary data structures; solve the problem recursively. Also do not use the provided Java pow method in your solution.

Answers

Answer:

The method in java is as follows:

   public static int power(int num, int exp){

       if(exp == 0){            return 1;        }

       if(exp < 0){

           throw new IllegalArgumentException("Positive exponents only");        }

       else{            return (num*power(num, exp-1));        }

   }

Where

[tex]num\to[/tex] base

[tex]exp \to[/tex] exponent

Explanation:

This defines the method

   public static int power(int num, int exp){

This represents the base case, where the exponent is 0

       if(exp == 0){

If yes, the function returns 1

           return 1;        }

If exponent is negative, this throws illegal argument exception

       if(exp < 0){

           throw new IllegalArgumentException("Positive exponents only");        }

If exponents is positive, this calls the function recursively

       else{            return (num*power(num, exp-1));        }

   }

Which of the following are recommended ways to address run-time errors? Choose all that apply.

Delete the suspect lines of code and issue the program without that function.

Add error routines that allow the program to execute fully even when unanticipated data is entered.

Create error messages to alert the user to an error in data entry.

Create controls in the program that ensure the input of proper data.

Answers

Answer:

2. Add error routines that allow the program to execute fully even when unanticipated data is entered.

3. Create error messages to alert the user to an error in data entry.

4. Create controls in the program that ensure the input of proper data.

Explanation:

Mark me brainliest plz

Answer:

2 3 4 i got it right

Explanation:

hiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii

Answers

Answer:

hhhhhhhhhhhhhhhhhiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii

Explanation:

A sorted list of numbers contains 500 elements. Which of the following is closest to the maximum number of list elements that will be examined when performing a binary search for a value in the list?
A.) 10

B.) 50

C.) 250

D.) 500

Answers

The answer is B.

hope its correct

Following are the calculation to the maximum number of list elements:

The binary search algorithm starts in the center of the sorted list and continuously removes half of the elements until the target data is known or all of the items are removed. A list of 500 elements would be chopped in half up to 9 times (with a total of 10 elements examined).The particular prerequisites with 500 items and are decreased to 250 elements, then 125 aspects, then 62 elements, 31 aspects, 15 aspects, 7 aspects, 3 aspects, and ultimately 1 element.

Therefore, the final answer is "Option A"

Learn more about the binary search:

brainly.com/question/20712586

How do Computer Scientists use Binary Code?

Answers

Answer:

The digits 1 and 0 used in binary reflect the on and off states of a transistor. ... Each instruction is translated into machine code - simple binary codes that activate the CPU . Programmers write computer code and this is converted by a translator into binary instructions that the processor can execute .

If you are writing an article on your favorite cuisine, which form of illustration would best fit the article?
Bill needs to make a presentation in which he has to represent data in the form of a pyramid. Which feature or menu option of a word processing program should Bill use?

Answers

Answer:

images

Explanation:

Adding images to the text gives it more life and makes the topic interesting

PLZ ANSWER WORTH 30 POINTS!!
If you want to alphabetize your rows, you should use the_______command.

A. Filter
B. View
C. Merge and Center
D. Sort

Answers

Answer:

D. Sort

Explanation:

The sort command will sort the rows into alphabetical order.

state 4 basic operation performed by a computer​

Answers

Answer:

The processes are input, output, storing,processing, and controlling.

input, processing, output, and storage.

WILL GIVE BRAINLIEST + 50 points!!
Quincy would like to view the contents of a specific message in his Inbox. A portion of his computer screen is shown.


What should Quincy do in order to complete this task?

Click on the Inbox in the Navigation Pane, and click on the specific message in the Folder Pane to display its contents.
Click on the Inbox in the Outlook Today window, and click on the specific message in the Folder Pane to display its contents.
Double-click the message’s header in the Outlook Today window, and right-click on the specific message to display its contents.
Double-click the Mail option in the Navigation Pane, and right-click on the specific message to display its contents.

Answers

Answer:

i put a

Explanation:

Answer:

A

Explanation:

please mark brainliest i only need 1 more :/

pleasee telllllllllllllllllll​

Answers

Explanation:

It allows you to know your flawsIt helps you to improve yourself

The ranks are: 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen, King, Ace. The suits are: Clubs, Diamonds, Hearts, Spades.
For this question, we represent each rank by a string of length one:
’2’ to ’9’ for 2 to 9 respectively, ’T’ for 10,
’J’ for Jack, ’Q’ for Queen, ’K’ for King, ’A’ for Ace.
We also represent each suit by a string of length one:
’C’ for Clubs, ’D’ for Diamonds, ’H’ for Hearts, ’S’ for Spades.
Fall 2014
Finally, we represent a card by a string of length 2, the first character being the rank and the second being the suit. For example, Queen of Hearts is represented by ’QH’, and 3 of Clubs is represented by ’3C’.
In the game of bridge, a hand consists of 13 cards, which we represent by a list of cards. When given a hand, here is the common way to count points.
High rank points:
• For each Ace, we count 4 points.
• For each King, we count 3 points. • For each Queen, we count 2 points. • For each Jack, we count 1 point.
Short suit points:
• For each suit, we count 1 point if the hand contains exactly two cards of that suit. • For each suit, we count 2 points if the hand contains exactly one card of that suit. • For each suit, we count 3 points if the hand contains no cards of that suit.
On the next page, write a function which takes a hand as input and returns the number of points in that hand.

Answers

Answer:

its b

Explanation:

Choose the item which best describes the free frame list. 1. a per process data structure of available physical memory 2. a global data structure of available logical memory 3. a global data structure of available physical memory 4. a global data structure of available secondary disk space

Answers

Answer:

A global data structure of available logical memory ( Option 2 )

Explanation:

A Free list is a data structure connecting unallotted regions in a memory together in a linked list (scheme for dynamic/logical memory allocation) , hence a free frame list is a global data structure of available Logical memory .

Complete the sentences about interactive media.
With (cipher text, hypertext, teletext,) text is the main element of the content. (hypermedia, hypervideo, dynamic media) on the other hand, includes text as well as audio, video, and animation.

Answers

Answer:

teletext

dynamic media

Explanation:

Answer:

1, teletext
2, dynamic media

Explanation:

Consider the following code segment, where num is an integer variable.

int [][] arr = {{11, 13, 14 ,15},
{12, 18, 17, 26},
{13, 21, 26, 29},
{14, 17, 22, 28}};
for (int j = 0; j < arr.length; j++)
{
for (int k = 0; k < arr[0].length; k++)
{ if (arr[j][k] == num){System.out.print(j + k + arr[j][k] + " ");
}
}
}

What is printed when num has the value 14?

Answers

Answer:

Following are the complete code to the given question:

public class Main//main class

{

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

{

    int [][] arr = {{11, 13, 14 ,15},{12, 18, 17, 26},{13, 21, 26, 29},{14, 17, 22, 28}};//defining a 2D array

    int num=14;//defining an integer variable that holds a value 14

       for (int j = 0; j < arr.length; j++)//defining for loop to hold row value

       {

       for (int k = 0; k < arr[0].length; k++)//defining for loop to hold column value

       {

           if (arr[j][k] == num)//defining if block that checks num value

           {

               System.out.print(j + k + arr[j][k] + " ");//print value

           }

       }

       }

}

}

Output:

16 17

Explanation:

In the question, we use the "length" function that is used to finds the number of rows in the array. In this, the array has the 4 rows when j=0 and k=2 it found the value and add with its index value that is 0+2+14= 16.similarly when j=3 and k=0 then it found and adds the value which is equal to 3+0+14=17.So, the output is "16,17".  

Conduct Internet research on CTSOs in your state or city. For your chosen career cluster, choose at least three organizations. Discuss each organization’s purpose and mission statement, as well as what type(s) of careers it helps prepare students for.

Answers

Answer:

CTSOs give CTE students additional opportunities outside of the classroom to grow and develop skills they will need within their chosen career paths. These opportunities range from after-school activities and programs to competitive events where students demonstrate their skills

hii

hope it helps have a niceee daaayyyyyy

Answer:

I want to pursue a career in banking. Jobs that require analytical and problem-solving skills fascinate me. After conducting online research, I found that banking falls in the career cluster of Finance.

I identified three CTSOs in my state that could help hone my skills in finance, bring out the leader in me, and make me a productive citizen. The three CTOs are:

Business Professionals of America

Distributive Education Clubs of America (DECA)

Future Business Leaders of America–Phi Beta Lambda (FBLA–PBL)

Business Professionals of America started in 1963. Its mission is to educate students to deal with situations in office settings. It doesn’t limit itself to office settings; rather, its scope is more dynamic because it prepares its members to deal with a variety of business situations.

FBLA-PBL is the largest and the oldest business student organization. Its mission is to bring business and education together in the same platform. Members can take part in various competitions at the local, state, and national level. The organization has partnerships with other organizations where members can apply the skills they learned in the classroom to real-life situations.

DECA is another organization that prepares its members for a dynamic career in finance, marketing, entrepreneurship, and hospitality. DECA seems to be the best fit for me for these reasons:

In addition to offering local, state, and national chapters, it also has an international chapter.

Membership is open throughout the year.

After I become a member of DECA, I’ll have access to all college and career preparation opportunities that DECA provides.

DECA gives scholarships worth $300,000 or more.

DECA organizes various conferences and competitive events where I can earn recognition if I perform well.

DECA’s membership dues are inexpensive, at $8 per person.

Explanation: SAMPLE ANSWER


Landing pages in a foreign language should never be rated fully meets?

Answers

Answer:

if the landing page provides all kind information of information as to that site people usually like it or will most likely enjoy it

BRAINLIEST?????

Explanation:

primary purpose of ms Excel​

Answers

MS Excel is a spreadsheet programme developed by Microsoft in 1985, with the sole purpose of helping businesses compile all their financial data, yearly credit, and yearly debit sheets. Fast forward to the future after 31 years, it is now the most commonly used program for creating graphs and pivot tables.
Other Questions
QUESTION 1What is the best example of a place's factor endowment?O A. MountainsO B. Educated workforceO C. WeatherO D. None of the above Blake works in a grocery store as a stocker. His job involves counting the number of cans on the shelves before he adds newinventory. He counts the cans in groups of ten to make it easier for him to keep track. He has counted 57 groups of ten cans sofar. How many cans has he counted? True or False. Weather patterns in the US moves from the West to East across thecountry. you will get 20 points if you make me the brainliest Which of the following is an example of a biotic factor interacting with an abiotic factor Rewrite in vertex form y=x2+2x+6 EASY MATH PLEASE HELP!I WILL GIVE BRAINLIEST!QUESTION: Find the area. Both the Florida legislature and the United States Congress have the power toO A establish courts.B. maintain public schools.O C. enact marriage laws.O D. establish local governments. please helpp me with this assignment Forget it because I almost have it How does the graph of g(x)=1/x+4-6 compare to the graph of the patent function f(x)=1/x? O g(x) is shifted 4 units right and 6 units up from f(x). O g(x) is shifted 4 units right and 6 units down from f(x). O g(x) is shifted 4 units left and 6 units up from f(x).O g(x) is shifted 4 units left and 6 units down from f(x). On three different days at her job, Sue earned $27, $33, and $49. She needs $100 to buy a desk for her computer. If she buys the desk, how much money will she have left over? How did Rene Descartes prove that he was real? 1 Polymyxin is an antibiotic that interrupts membranes. Which cells will be most sensitive to this antibiotic? Gram-negative bacteria Gram-positive bacteria Mycolic acid containing cells Endospores Arnie designed a new game, described here. How much should he charge to make this a fair game?4 no prize (value $0)4 small prize (value $2)2 large prize (value $7) A. $2.00 B. $2.20 C. $3.00 D. $3.50 Can someone please explain how to do this? thank you! We might think of a porous material as being a composite wherein one of the phases is a pore phase. Estimate upper and lower limits for the room-temperature thermal conductivity of a magnesium oxide material having a volume fraction of 0.10 of pores that are filled with still air. What does this quote means.?Worry is like arocking chair:it gives you somethingto do but never getsyou anywhere Place the following items in the correct order to show how a voice can be recorded and saved using an analog device. Need help with this ASAP