organization write

see attachement.

word count: two page,double space

 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

econ hw 1515429 2

D. 

 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

56 13 34

5/6 1/3 + 3/4 = ?
 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

what you found interesting or uninteresting them what you found important or unimportant the

reading response

you just hv to read the 2 files that I have uploaded and write what you found interesting (or uninteresting) in them, what you

found important (or unimportant) in them, what you understood (or didn’t understand) in

them, any comments or observations you have about them, and, possibly, connections you

see between different sets of readings or how connections between the readings and the “real

world

I need it after 2 hours max otherwise Im not gonna be able to submit it

 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

what desing area or design specialisation does your chosen item belong it lamborghini gallar

what desing area or design specialisation does your chosen item belong to? it is a lamborghini gallardo
 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

exceptionalgeek only 10079065 2

1) Don’t use any website summary sources, use at least 3 acadamic sources, like somthing on google scholar.

2) Write only about one of the problems in standardized testing, now we have too many stuff in the essay we need to focus. for example, only write about how the standardized testing is not making students to improve, and give up all the other points. 

3) The entire essay have to be about this one problem, introduction about it, conclusion about it

4) don’t talk about the pro side of the test, only focus on that one problem.

5) 5 pages double spaced 

 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

ethics 90

 

VERY SHORT SUSPENSE  by tomorrow 6 pm EST

 

 

 

DONT FLOOD WITH REQUESTS UNLESS YOU HAVE READ THE REQUIREMENTS> IF YOU DO I WILL IGNORE YOU. MUST HAVE THE RATING TO BACK UP YOUR CLAIMS. SORRY, TOO MANY TIMES I HAVE BEEN BURNED

 

* THIS MUST BE DONE BY THE DEADLINE. NO EXCEPTIONS, NO DISCUSSION. *

 

PRIORITY WILL GO TO THOSE I KNOW AND TRUST

 

I AM NOT A LIBERAL AND DO NOT WRITE LIKE ONE. IF YOU LIKE SOCIALISM OR DISLIKE THE U.S. PLEASE DONT WASTE MY TIME. THE WRITING MUST BE CENTER / RIGHT. I DO NOT ENJOY REWRITING ENTIRE PAPERS I PAY FOR

 

In this week’s activity, you have explored the Web sites of the DHS Science and Technology Directorate and FEMA’s Building Science Branch. Although you are reading and learning about subordinate functions of these agencies, critical thinkers are compelled to consider what is not found on the written page. This is especially true as we are considering the ethical implications for use of technologies to provide defense and security.

For your assignment then, choose either DHS or FEMA as the agency you will explore; next choose 1 of the subordinate divisions for your selected agency. (Example: DHS; Chemical and Biological Division.) Examine your selected division’s roles, responsibilities, and capabilities for contributing to the security of the nation.

You will assume the role of inspector general, specializing in investigations but not necessarily technology. You have been assigned to provide a thorough and honest assessment of the selected division’s use of technology. You will draft a report in the format of your choice, addressed to the Chief of either DHS’ Science and Technology Directorate or FEMA’s Building Science Branch.

 

Assignment Guidelines

 

  • Address the following in 4–6 pages:
    • What is your selected division’s mission? Explain in detail.
    • Identify, describe, and explain 3–5 of the technologies commonly employed by this entity.
      • What is the stated purpose of the technologies?
      • What are the technologies actually used for?
      • Evaluate the merits and disadvantages of each technology. Explain.
      • Is the division using the technologies well or poorly? Explain in detail.
        • Provide well defended arguments regarding each technology.
    • What current technologies are being developed?
  • Be sure to reference all sources using APA style.

In your examination, you should research beyond the agency’s and/or division’s official Web site and find at least 3 other credible resources such as testimony before Congress, U.S. Government Accountability Office (GAO) Reports, Congressional Research Service documents, academic journal articles, or thought pieces by legitimate persons (not anonymous bloggers, for example) challenging or supporting your selected office’s mission, or operations, etc..

As you look for these sources, you may also consider materials that reference the government, FEMA, or DHS without mentioning your division specifically. Just make the connection for the reader as to which elements from your sources apply to your examination and why. (For example, if a critic argues a certain type of technology is misused by the government, you might include or refute his perspectives after connecting them to the division you are exploring.) In some way—either woven into your entire report or addressed separately at some point—comment on the ethical considerations of the technologies under review. You do not have to take a side or make any type of judgment, rather offer your observations as something the DHS or FEMA and the selected division’s chief should keep in mind, and explain why.

 

 

 

 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

inverted index java coding needed

Basic concept

The inverted index is a tool that maps occurrences of data (in our case, words) back to locations in a structure. This is frequently used to support full text support for information stored in databases. It is typically used to return records or documents that contain the queried word. We are going to use it to return lines of text.

There are a number of ways that we can implement the inverted index — it basically just requires an associative structure. Of course, we will be implementing it with a hash map. The keys in this case will be words. The values will be a list of the lines in which that word occurred. When a user queries the index with a word, she will be able to see all of the lines containing the queried word.

Part one: The hash map [15 pts]

The first thing you will need to implement is a hash map in a class called HashMap. This should fullyimplement the Map interface we have been working with. The storage within the HashMap should be provided by an array, and you should use external chaining to resolve collisions. For a hashing function, use thehashCode() method that is already defined for all Objects.

In addition to the methods required by the Map interface, you should implement the following additional methods on the HashMap:

public HashMap(int size)
This is the constructor. The size variable determines the number of slots in the underlying hash map.
public int getMaxChainLength()
This method should return the length of the longest chain in the 
HashMap.
public double getLoadFactor()
This method should return the load factor of the 
HashMap.

Part two: Building the index [35 pts]

The index should be implemented in a new class called InvertedIndex. The interface of this class should look like this:

public InvertedIndex(File file)
The constructor of the class. This reads in a 
File and builds the index.
public InvertedIndex(File file, int tableSize)
This performs the same function as above, but allows the size of the hash table to be specified (the first constructor should just call this one with a default value).
public Iterator<Integer> getLineNumberIterator(String word)
Returns an 
Iterator that walks through each line number associated with a particular word. The 
Iterator does not need to implement 
remove.
public Iterator<String> getHighlightedLines(String word)
Returns an 
Iterator that returns Strings containing the line number, followed by a colon, followed by a line containing at least one instance of the word. Each instance of the word should be surrounded by # characters. This should also not implement remove.
public int numOccurrences(String word)
Return the number of occurrences of the word in the document.

The constructor will take the file and store it, line by line, in an ArrayList (use the one in java.util). This is just a copy of the document that we can easily access by line number. The HashTable will be used to maintain our inverted index, which will map words (the keys) to occurrences in the document. We want to store both line number and word number within the line. You should create a simple wrapper class for holding these two pieces of information. Most words will occur more than once in a document, so the “value” stored in the hash table will be a List of the small wrapper objects. Use the LinkedList class fromjava.util for this purpose. As an implementation detail, convert all of the words to lowercase before you store them in the hash table, this will allow for case insensitive searching.

Part three: An application [10 pts]

Add a main method to your InvertedIndex class. This should take two arguments on the command line: the first should be a number which should determine the number of slots in the hash table, and the second will be a file name. You will, of course, use the file and size to build an InvertedIndex instance. Print out the two hash table statistics available through the methods specified earlier. You should add some methods to the InvertedIndex to allow acces to these.

Once the statistics are printed out, your application should enter an interactive mode. When the user enters a word, your index should look it up and return the lines that contain it. Each line will be printed out in the following format (the < and > just indicate that they are fields being described, they shouldn’t be included in the actual output):


    <line number>: <text of the line with all instances of the word surrounded by the # character.>
    
    

If there are no matching lines, there should be an appropriate error message. When the user uses theRETURN key without entering any text, the application should quit.

 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

phyllis young only 1341863 2

Personality Theory paper

 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"

locker combination has three nonzero digits and digits cannot be repeated first two digits a

A locker combination has three nonzero digits, and digits cannot be repeated. The first two digits are 1 and 2. What is the probability that the third digit is 3?
 
Looking for a similar assignment? Our writers will offer you original work free from plagiarism. We follow the assignment instructions to the letter and always deliver on time. Be assured of a quality paper that will raise your grade. Order now and Get a 15% Discount! Use Coupon Code "Newclient"