answersLogoWhite

0


Best Answer

American Water Works (AWK)had its IPO in 2008.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

As of July 2014, the market cap for American Water Works (AWK) is $8,732,532,625.02.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In what year did American Water Works - AWK - have its IPO?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the symbol for American Water Works in the NYSE?

The symbol for American Water Works in the NYSE is: AWK.


What is a limitation on freedom of speech that you may be sued in court for?

cash money trillionares we rich we never going to stop we got money nigars awk awk awk


Where can you find information about the awk-web programming language?

Awk isn't really a web programming language. However, that's not to say you can't use it for that. The following link will take you to a good extensive reference for Awk programming: http://www.dc.turkuamk.fi/docs/gnu/awk/gawk_toc.html.


What is the difference between sed grep and awk?

The major difference between SED GREP and AWK is that SED allows you to find a pattern address. AWK only allows you to find a numeric address.


How do you write a awk script program in unix?

That is a difficult question to answer - the question is rather vague on what you intend to do. An awk script is a file containing awk commands that operate on 1 or more data files, based on selectors and actions resulting from that selector. It all depends on what you want to do with the data. The program itself is just a text file that can be created by any editor and then interpreted with the awk command.


Why awk -f command is used?

The awk programming/scripting language is used to pattern match text and then do something with the result. Using the -f option indicates that the awk program/script has been stored in an external file instead of being specified inline with the command.


What are Nawk scripts?

Nawk is an Awk replacement on *nix operating systems. It is very good at sorting data in columns and search functions. A classic awk command would be: "$awk '/Home/ {print $3}' file > home.txt" this consists of calling the awk interpretor to open the file "file", telling it to search for the word "Home" and when it finds that, print the 3rd column from that line out to a file named home.txt. Awk automatically uses tab (\t) as the field separator ($FS) and you can change this if the input file uses something else besides the tab, e.g. : or ; or & and so on. there are a lot of awk tutorials on the web and most are pretty good.


Does James harden have a moh awk?

i think so


What is a 3 letter bird?

caw awk coo


By using awk programming how to count number of lines in a given file without wc command?

Use the following:awk 'END { print NR }'Awk will count the lines and print it out.


Why use awk -v command?

This is used when you want to give a variable in an awk script a value before the script starts executing, even before the BEGIN block. You would do this on the command line if the variable needs different values for different executions rather than hardcoding it in the awk script itself.


What is the difference between grep and sed?

The major difference between SED GREP and AWK is that SED allows you to find a pattern address. AWK only allows you to find a numeric address.