A canceled US Treasury check for the purchase of Alaska is an example of which of the following?

A.
personal narrative
B.
photographic image
C.
primary source document
D.
secondary source document

Answers

Answer 1

An illustration of a primary source document is a cancelled US Treasury cheque for the acquisition of Alaska. Any document, artefact, or diary would qualify as a primary source in the study of history.

Is the Fed the same as the U.S. Treasury?

The Federal Reserve and the U.S. Treasury are independent organisations. The Treasury oversees the management of all monies received by and disbursed by the government. The Federal Reserve's main duty is to maintain economic stability by controlling the amount of money in circulation.

What is the difference between a Treasury and a Bond?

Unlike Treasury bonds, which have a maturity of more than 10 years, Treasury bills expire in a year or less. Treasury bill instruments have a low return on investment because of their short maturity time.

To know more about document  visit:-

https://brainly.com/question/20696445

#SPJ1


Related Questions

Gui screen usually contain elements that are called?

Answers

Answer: Widgets

Components

Controls

Explanation:

The cell tower’s base transmission station is connected to a mobile ____ station.

Answers

The cell tower’s base transmission station is connected to a mobile switching station.

What is a switching station?

A switching station is known to be a kind of a substation that is known to be without transformers and it is one that often operate  only based or at a single voltage level.

Note that Switching stations are known to be often used as collector and they also acts as a distribution stations.

Hence,  The cell tower’s base transmission station is connected to a mobile switching station.

Learn more about transmission station from

https://brainly.com/question/1312500

#SPJ1

During the merge sort operation for the list {90 7 9 43 62 12 21 36}, at what left and right partition position is 21 added to the temporary list

Answers

The point at left and right partition position to add 21 is Left position is 1 and right position is 7.

How do you solve merge sort?

The Algorithm for Merge Sort operations are:

First one need to find the middle index of the array. Then one has to Divide the array from the middle. Then do Call merge sort for the second half of the array. Then one can finally merge two sorted halves into one sorted array.

Hence, The point at left and right partition position to add 21 is Left position is 1 and right position is 7.

See Group of answer choices

Left position is 2 and right position is 6

Left position is 1 and right position is 7

Left position is 4 and right position is 7

Left position is 2 and right position is 5

Learn more about sort operation from

https://brainly.com/question/15090822

#SPJ1

Assembler Language
CSCI 360-1 Assignment 4 Name_____________________
Spring 2019 ABENDs and Dump Reading
25 points
This programming assignment does not require any further coding or documentation than what is provided. The program will ABEND and your task is to learn how to investigate what happened so that you can debug your own Assembler programs in the future. To begin, run the following program on the Marist mainframe using the ASSIST JCL used previously. Be sure you type it or copy it EXACTLY as shown below:
DUMP1 CSECT
USING DUMP1,15 ESTABLISH REG 15 AS BASE REG
*
SR 2,2 CLEAR REG 2
*
LA 3,NUM1 LOAD ADDRESS OF NUM1 INTO REG 3
LA 4,NUM2 LOAD ADDRESS OF NUM2 INTO REG 4
*
A 2,0(,3) ADD NUM1 TO REG 2
A 2,0(,4) ADD NUM2 TO REG 2
*
LA 5,SUM LOAD ADDRESS OF SUM INTO REG 5
ST 2,0(,5) STORE THE SUM OF NUM1 & NUM2 AT SUM
*
XDUMP , SET REG 2 TO 35
*
LTORG
*
SUM DC F'0' FULLWORD OF ZERO TO LATER HOLD SUM
*
NUM1 DC F'1206000000' VARIOUS FULLWORD INTEGER VALUES
NUM2 DC F'972460'
NUM3 DC F'1344335922'
*
END DUMP1
Use the resulting ABEND dump output to answer the questions below. Each is worth 2 points except question 11 which is worth 5 points.
Did this error occur (a) while the program was being assembled or (b) when it was being run?
________________________________________________________________________________
What is the address of the next instruction which would have been executed?________________________________________________________________________________
What is the value of the condition code at the time of the ABEND?
________________________________________________________________________________
What is the length of the instruction that caused the ABEND (number of bytes)?
_______________________________________________________________________________
What is the address of the instruction that caused the abend?
_________________________________________________________________________________
What type of error occurred (number and name)?
_________________________________________________________________________________
What usually causes this error?
_________________________________________________________________________________
What does the value in register 2 represent at the time of the ABEND dump?
__________________________________________________________________________________
What instruction needs to be added to fix this ABEND?
_________________________________________________________________________________
What does the value stored at location counter value 00002C represent?
_________________________________________________________________________________
What exactly happened here to cause the ABEND? Be detailed but succinct in your description.
_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Answers

hello thnks

Explanation:

Create a program that will calculate and print to the screen a sales receipt

Answers

Answer:

The Code:

print('Invoice Bill')

table = Table(['Item Name', 'Item Price'])

total = 0

while(1):

   name = input('Enter Item name:')

# "x" to exit and print the table

   if(name != 'x'):

       price = int(input('Enter the Price:'))

       # store all the prices in "total"

       total += price

       table.add_row([name, price])

       continue

   elif(name == 'x'):

       break    

table.add_row(['TOTAL', total])

print(table)

print('Your total bill amount is ', total, '/-')

Explanation:

This program is written in the PYTHON language.

The user needs to enter the item name and price as much as they want; this will print the item name, item price and total in tabular form.

#SPJ2

Write a written report about the possible input devices of the future?

Answers

Answer:

Its inevitable, people will make errors while using your input device. It is crucial that you measure how many of each of these types of errors are made, so you are able to use techniques to effectively counter them: 1. Mistakes —User uses the wrong method to achieve the tasks 2. Slips — The method used carried out incorrectly.

Explanation:

What is the correct syntax for defining an __init__() method that takes no parameters?

Answers

The correct syntax for defining an __init__() method that takes no parameters is: def __init__(self): pass

What is a syntax?

The set of guidelines known as syntax establishes the meaning of the different symbol combinations.

This instructs the machine on how to decipher the code.

When writing code, the idea of syntax deals with a very precise collection of words and a very strict sequence for those words when we offer instructions to the machine.

Learn more about syntax:
https://brainly.com/question/831003
#SPJ1

We initialize the parameters to all zero values and run the linear perceptron algorithm through these points in a particular order until convergence. The number of mistakes made on each point are shown in the table below. (These points correspond to the data point in the plot above)

Answers

The main aim of running the parameters in the linear perceptron algorithm is to be able to develop a machine learning algorithm for binary classification tasks.

What is a linear perceptron algorithm?

This refers to the linear classification algorithm that is used in machine learning.

This is done in order to learn a decision boundary that divides different classes using a hyperplane.

Hence, we can see that your question is incomplete because the parameters are not included, hence a general overview was given to give you a better understanding of the concept.

Read more about machine learning here:

https://brainly.com/question/25523571

#SPJ1

Computer professionals known as software engineers, or Blank______, use the software development life cycle to create software required for information systems.

Answers

Answer:

Computer professionals known as software engineers, or programmers use the software development life cycle to create software required for information systems.

Explanation:

Computer professionals are called software engineers and programmers because they develop and program software. Some additional titles for computer professionals are hardware engineers and iOS/Android developers.

If you connect to a network through your phone or cable company, then you probably connect through a________.

Answers

If you connect to a network through your phone or cable company, then you probably connect through an Ethernet crossover cable.

What is meant by the ethernet cable?

This is the type of cable that is known to be used for the wired types of connections. These types of cables are unlike the other types of connections such as the broadband which may be an internet type of connection that people use.

The ethernet cables are cables to connect using those devices that are in the the  local area networks. The popular example is the router. Hence we can say that If you connect to a network through your phone or cable company, then you probably connect through an Ethernet crossover cable.

Read more on ethernet here: https://brainly.com/question/1637942

#SPJ1

Define a function Output Value() that takes two integer parameters and outputs the sum of all negative integers starting with the first and ending with the second parameter. If no negative integers exist, sum is 0. End with a newline. The function does not return any value. Ex: If the input is -7 1, then the output is: -28 Note: Negative numbers are less than 0.

Answers

The function is written in C++ programming language and is be displayed below:

long OutputVal(int start, int end) {

 long result = 1;

 for (int num = start; num <= end; num++) {

   result *= num;

 }

 return result;

}

The program defines a function Output Value(), takes two integer parameters, and outputs the sum of all negative integers starting with the first and ending with the second parameter.

Read more about C++ here:

https://brainly.com/question/20339175

#SPJ1

You have a user remotely connecting to the corporate network from a client location. They can connect to the corporate network file server. But they cannot access files and folders they need on the client LAN in order to work on their project. What would you enable in order to allow the user to access resources on both networks while the VPN is connected

Answers

I don't really get this question but I will go with hotspot

Define a function SwapRank() that takes two char parameters passed by reference and swap the values in the two parameters. The function does not return any value. Ex: If the input is A C, then the output is: C A

Answers

The program that takes two char parameters passed by reference and swap the values in the two parameters is illustrated below.

What is a program?

A computer program is a sequence of instructions in a programming language for a computer to execute.

The program is illustrated below:

void SwapGrade(char &g1, char &g2)

{

char t = g1;

g1= g2;

g2 = t;

}

Output

B

C

C B

Learn more about program on:

https://brainly.com/question/26642771

#SPJ1

scheduling is approximated by predicting the next CPU burst with an exponential average of the measured lengths of previous CPU bursts.

Answers

SJF scheduling is approximated by predicting the next CPU burst with an exponential average of the measured lengths of previous CPU bursts.

What is SJF in operating system?

SJF is a term that connote Shortest Job First. It is said to be a type of CPU scheduling whose algorithm is linked with each as it is said to process the length of the next CPU burst.

Note that for one to be able to know the time for the next CPU burst to take place, one need to take the SJF into consideration as that is its function.

Hence, SJF scheduling is approximated by predicting the next CPU burst with an exponential average of the measured lengths of previous CPU bursts.

See options below

A) Multilevel queue

B) RR

C) FCFS

D) SJF

Learn more about scheduling from

https://brainly.com/question/19309520

#SPJ1

The developers have used the results from the model to choose a computer controlled flood defense system. It will have a barrier which can open or close. describe the role of the microprocessor in such a system​
key word sensor , ADC , microprocessor, Preset , higher and lower barrier

Answers

The role of the microprocessor in a computer controlled flood defense system are:

The flood signal makes the microprocessor to start a flood control work or function that tends to interrupts the constant operating cycle that is known to be executed.

Note that  if any, and it start and keeps the operation of a drain cycle until the water is known to have returns to the constant level for a a given period of time.

What is the role of the microprocessor?

The Functions of Microprocessor are:

It helps to control or monitors all the parts of the machine and it often sends timing signals.It helps to move data between memory and I/O devices.It helps to bring back data and instructions from a given memory.

The microprocessor is known to be one that acts as the central unit of a computer system that carries out duties such as the arithmetic and logic operations.

Hence, The role of the microprocessor in a computer controlled flood defense system are:

The flood signal makes the microprocessor to start a flood control work or function that tends to interrupts the constant operating cycle that is known to be executed.

Note that  if any, and it start and keeps the operation of a drain cycle until the water is known to have returns to the constant level for a a given period of time.

Learn more  about microprocessor from

https://brainly.com/question/614196

#SPJ1

Write a loop that will take in 5 numbers from the user and output the average. Round your answer to two decimal places.
Sample Run:

Enter a number: 2
Enter a number: 7
Enter a number: 11
Enter a number: 4
Enter a number: 5
The average is 5.8

Hurry please!! will mark brainliest!!

Answers

I’m gonna do it in the form of a pseudocode.

Pseudocode 1: Number_Average
Declare sum, num, num_count, average
START
sum = 0
num_count = 0
average = 0
Display “Enter a number”
Read num
Display “Enter a number”
Read num
Display “Enter a number”
Read num
Display “Enter a number”
Read num
Display “Enter a number”
Read num
While(count = 5)
DO
num_count = 0+1
sum = 0+1
average = sum/5
ENDWHILE
STOP

which computer can be used where is no electricity ?​

Answers

Answer:

mechanical computers

Explanation:

A mechanical computer is built from mechanical components such as levers and gears rather than electronic components. The most common examples are adding machines and mechanical counters, which use the turning of gears to increment output displays.

Answer:

Non-electric computers.

A mechanical computer is a computer built from mechanical components such as levers and gears rather than electronic components

What are the three advantages of using blockchain technology? multiple choice all of the answer choices are correct. digital trust internet of things integration immutability

Answers

The  three advantages of using blockchain technology are:

digital trust internet of thingsimmutability

What is blockchain technology?

A Blockchain is known to be a kind of a chain of blocks that is made up of information.

Note that the data that are said to be stored inside a block is one that is based on the type of blockchain. Blockchain  is seen as a kind of a shared, form of immutable ledger that quickens the process of putting down or recording transactions and helps in the tracking of assets in a business network.

Hence, The  three advantages of using blockchain technology are:

digital trust internet of thingsimmutability

Learn more about blockchain technology from

https://brainly.com/question/25700270

#SPJ1

True or false? you should avoid using your power point slides as handouts, according to the text.

Answers

true, you should avoid using power point notes always

When posting to a professional networking account, you should share stories and comments that _____.

Answers

When posting to a professional networking account, you should share stories and comments that  Offer valuable information to your target audience

What is meant by a professional networking account?

This is used to refer to an account that has a large number of audiences or of people who follow the account based on what the owner of the network offers. The reason for this may be due to the fact that account is a blog that talks about health or about lifestyle.

It is advised that the person who is behind the account keep the people that are his audiences in mind whenever he is sharing posts to the account. The information that would be most useful to the people has to be considered.

Hence we can say that When posting to a professional networking account, you should share stories and comments that  Offer valuable information to your target audience

Read more on networking here:https://brainly.com/question/1027666

#SPJ1

When using spanning tree protocol. What is the first step in selecting paths through a network?

Answers

The first step in selecting paths through a network is STP must first select the root bridge, or master bridge.

Which one is the first step in STP operation?

The STP network convergence consists in three steps: elect a root bridge, elect root ports and elect designated and non-designated ports. When you enable STP, the first step in its convergence process is to elect a switch to act as a root bridge using the Spanning Tree Algorithm.

See more about STP at brainly.com/question/20039073

#SPJ1

Figure shows a multiplexer in a synchronous TD slot is only 10 bits long (3 bits taken from each input plus is the output stream? The bits arrive at the multiplexer arrows.

Answers

The solution to the bits arrive at the multiplexer arrows is shown in the image attached.

What is a multiplexer used for in computing?

A multiplexer is known to be a kind of a device that is same to be one that is able to take a lot of analog signals and also helps to forwards the input that were taken into a single line.

Note that they are seen as devices that are often used to to boast the amount of data that are known to be passed over a network.

A good example of  a given non-electronic circuit of a multiplexer is known to be the single pole multi-position switch.

Therefore, The solution to the bits arrive at the multiplexer arrows is shown in the image attached. because it accurately tells the the arrangement of the 10 bits  in the arrow.

Learn more about multiplexer from

https://brainly.com/question/15052768

#SPJ1

Output values below an amount Write a program that first gets a list of integers from input. The input begins with an integer indicating the number of integers that follow. Then, get the last value from the input, which indicates a threshold. Output all integers less than or equal to that last threshold value. Assume that the list will always contain fewer than 20 integers. java

Answers

The program that first gets a list of integers from input, gets the last value from the input, which indicates a threshold, and outputs all integers less than or equal to that last threshold value is:

import java.util.Scanner;

public class LabProgram {

 /* Define your methods here */

public static void main(String[] args) {

Scanner scnr = new Scanner(System.in);

int[] userValues = new int[20];

int upperThreshold;

int numVals;

numVals = scnr.nextInt();

GetUserValues(userValues, numVals, scnr);

upperThreshold = scnr.nextInt();

OutputIntsLessThanOrEqualToThreshold(userValues, numVals, upperThreshold);

}

}

Read more about java programming here:

https://brainly.com/question/26952414

#SPJ1

What is a "Top-Level Domain Name"?

Answers

A top-level domain is known to be an aspect of a domain that quickly follows the last dot symbol that is seen in a domain name.

What is a "Top-Level Domain Name"?

This is known to be the biggest level in terms of the hierarchical Domain Name System of the Internet.

Note that TLD (top-level domain) is said to be the most generic domain that is seen on the Internet's hierarchical DNS (domain name system) as A top-level domain is known to be an aspect of a domain that quickly follows the last dot symbol that is seen in a domain name.

Learn more about Domain Name from

https://brainly.com/question/13437432

#SPJ1

When making routine transponder code changes, pilots should avoid inadvertent selection of which code?

Answers

When making routine transponder code changes, pilots should avoid inadvertent selection of  code. 7700.

What are the  transponder code that pilot  should  avoid?

Under normal as well as non-emergency operations, it is very essential  for pilot to make sure he  avoid using the transponder codes of 7500,  as well as 7600, and 7700.

Especially  while switching  codes,  It is easy in switching by  pilot to  go to of these 3 codes on accident.

In this case, When making routine transponder code changes, pilots should avoid inadvertent selection of  code. 7700.

Learn more about general emergency on:

https://brainly.com/question/14331925

#SPJ1

Write a definition in your own words for Raster Graphic. Do not copy and paste please.

Answers

Answer:

Raster Graphic is a bitmap. They are basically a grid of small pixels that make an image.

PLEASE HELP ME! Sam was researching rocks and minerals. He thought the Web site looked unprofessional, so he looked for the author's information or credentials. He couldn't find any. Is this site reliable? A. Probably B. Probably not.

Answers

Answer:

B

Explanation:

If a site looks unprofessional and doesn't have any credentials, those are two signs that it's probably not very reliable.

Create a file name that to ensure the that the file is easy to find

Answers

Answer:

I always name mine something like HI

or YEET i dont know

why but it works

Explanation:

The File name would be : ABC!

The system log daemon, rsyslogd, creates a socket for other system processes to write to. what is the path to this socket?

Answers

If the system log daemon, rsyslogd, creates a socket, the path to this socket is known to be /dev/log.

What is the system log daemon?

The syslog daemon is known to be a kind of a server process that is known to often gives or provides a form of message logging tools that is made for application and system processes.

Note that the syslog daemon is said to be one that begins by the Internet Daemon and it is also one that tend to receives messages on well-known port such as  514.

Note that The syslog daemon must be on before any application program and as such, If the system log daemon, rsyslogd, creates a socket, the path to this socket is known to be /dev/log.

Learn more about system log from

https://brainly.com/question/25594630

#SPJ1

See full question below

The System Log Daemon, rsyslogd, creates a socket for other system processes to write to. What is the path to this socket?

Select one:

a. /etc/rsyslog.socket

b. /var/log.sock

c. /tmp/log

d. /dev/log

A touch screen _____.

Answers

A touch screen is known to be a kind of a display device that gives room for its users to be able to interact with a computer through the use of their finger or stylus.

What is a Touch Screen?

Touch screen are regarded as output device as a person can be able to touch and  use screen that displays the content in their mobile.

Hence, A touch screen is known to be a kind of a display device that gives room for its users to be able to interact with a computer through the use of their finger or stylus.

Learn more about touch screen from

https://brainly.com/question/17654061

#SPJ1

Other Questions
At an equilibrium position of a pendulum, the is at a maximum. Will mark brainliest for explanation of all parts!!!!!!A study showed that vitamin E oil reduces pain levels in patients with lupus. During each session, the oil was injected into the pain site indicated by the patient. Pain reduction was measured through self-reporting after each session. Another study is being designed to examine whether vitamin E oil also reduces pain in patients suffering from bulging disks in the thoracic region of the back. Two hundred patients aged 2040 years are subjects in the new study. Part A: What is an appropriate design for the new study? Include treatments used, method of treatment assignment, and variables that should be measured. (5 points) Part B: If the study consisted of 100 young patients and 100 old patients instead of 200 patients aged 2040, would you change the study design? If so, how would you modify your design? If not, why not? (5 points) Part C: Suppose the data in the following table was collected at the end of the study you described in part A. Vitamin E Oil Placebo Reported Pain Reduction 52 35 Total Treated 100 100 Construct 90% confidence intervals for the proportion of pain reduction for each treatment group. Show all work. (5 points) Part D: What can you conclude about the use of vitamin E oil for patients with bulging disks in the thoracic region of the back? (5 points) Question 4 of 5Which experience is most likely to shape an author's perspective on the costof child care?OA. Having young childrenOB. Having older siblingsC. Graduating from high schoolOD. Getting a job If f(x)=3x, g(x)=x+4 , and h(x)=x21 , find g[h(3)] what is the esr in the capacitor Olivia's class collected 3,591 bottle caps in 57 days. The same number of battle caps were collected each day. How many bottle caps did the class collect per day? Daily Language ReviewWEEK3 WednesdayNameCorrect these sentences.1. my friend mr. murphy visited churchs in canada china and japanMy friend Mr. Murphy Visited Church inWEEK3 ThursdayCircle the cause and underline the effect.3. The campers had to be rescued after they wandered off the trail and became lost.Singular or plural?4. phenomenaWrite the past tense of the verb teach.5.Name:y language Review EMC 576Canada, China, and JapanWrite the contraction that is made from these two words.1. will notWhat print reference source would you use to find several synonyms for we2.Correct these sentences.3. why due I have to due my home work now asked toriWhy do I have to do my homework now? askedRewrite this word, adding a prefix.5. appoint Select all the correct answers. which two natural resources will be most affected as people try to meet the growing demand for food?a. land b. solar energy c. rock d. fresh water What are the 3 principle of personal finance? Using the rule of 72, approximately how many years will it take a $1000.00investment to double its value at an interest rate of 3.60%, compoundedannually? 4. Match the proper definition to its correct term:TE1. Ability to understand another person's emotions and see from his or her point ofview.5.6.7.A person associated in close personal relations or a significant other.A person who is equal to another in abilities, qualifications, age, background, andsocial status.person attached to another by feelings of affection or personal regard.People you have met but do not know well.The way you view yourself.Someone who shows strong support for you.8. Doing what you say you will do.9. Someone who shares similar interests and enjoys many of the same activities.a. Loyaltyb. Friendc. Self-Esteemd. Acquaintancee. Peerf. Intimateg. Empathyh. Closei. Reliablej. Casual HELP ME I DONT UNDERSTAND What is the difference between fed funds rate and interest rate? please choose the correct answer and explain why its correct. i will mark you brainliest! Read these of a passage from Kalka's The Metamorphosis Mother, MotherGregor murmured, looking up at her. For an instant, the office manager had entirely slipped his mindon the other hand, Gregor could not help snapping his a few times at the sight of the flowing coffee. This prompted the mother to scream again, flee from the table and collapse into the father's arms as he came dashing up to her -Joachim Neugroschel transThe Metamorphosis Mother mothersaid Gregor gently, looking up at her He had completely forgotten the chief clerk the moment but could not help himself snapping in the air with his jaws at the sight of the flow of coffee That set his mother screaming anew, she fled from the table and into the arms of his father as he rushed towards her -David WyllietransThe Metamorphosis How does translation of The Metamorphosis make Gregor seem more connected to his family than Neugroschel's does? A. Wyllie says that Gregor's mother flees into the arms of Gregor's father. B. Wyllie has Gregor gently call his mother's name, trying to calm her. C. Wyllie refers to Gregor's parents as his mother and "his father instead of the the mother and the father. D. Willie makes Gregor use his jaws to snap at his mother after she coffee. Which equations represent circles that have a diameter of 12 units and a center that lies on the y-axis? Select two options. x2 + (y 3)2 = 36 x2 + (y 5)2 = 6 (x 4) + y = 36 (x + 6) + y = 144 x2 + (y + 8)2 = 36 2 variables x and y vary inversly and x=12 when y=4 what is the value of y when x=3 Four score and seven years ago, our forefathers brought forth upon this continent a new nation conceived in liberty and dedicated to the proposition that all men are created equal.Identify the part of speech for the following words from the passage. Use the following abbreviations in identifying the words. Be sure to capitalize the first letter of each abbreviation. 8. How does the author's repetition of "the red-haired, unshaven, untidy man" contribute to thestory's central ideas?A. It characterizes Lizzie's family as hostile andimmoral, and helps explain how she inheritedthese same traits which eventually result in thestory's climax.OB. It matches the structure of the rest of the text,emphasizing the repetitive nature of life inAmerica's cities.OC. It emphasizes the struggle that Lizzie's father hadto endure in life, suggesting that his own fatherwas just as neglectful to him as he is to Lizzie.OD. It highlights the significance of Lizzie's father'slack of positive influence on her life, whichultimately leads to her crime and early death. what is the equation of the line that has a slope of 1/2 and goes though the point (4,-1)