answersLogoWhite

0

Who introduced PWD?

User Avatar

Anonymous

12y ago
Updated: 8/20/2019

j

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

The full of pwd?

what is PWD category?i mean what is the full form of PWD here


What is PWD caste?

There is no such thing as a PWD caste. However, the abbreviations of PWD typically stand for the word d "password".


What is pwd category is all about?

which cast included in pwd category


Who is minister of pwd Tamil Nadu?

pwd minister is mercy


How will you get registration for pwd pune?

Pls go on pwd site gt into Pune PWD building address,personally meet


What is the full form of pwd in reservation catagori in jobs?

Reservation for Persons with Disability (PWD)


How do you get WB PWD Analysis of Rates?

how to get pwd (wb)schedule of rates for bldg works


Where do you get pwd license in mumbai?

are u interested in pwd wireman license. sajid sjd2050@gmail.com


Full form of pwd?

Public Works DepartmentPaper Wastes DepartmentPakode Wali DukanBy Gurjot Singh Sodhi


What are the rates for road work in west Bengal pwd?

i am wnting PWD Schedule rate of works in West Bengal


WHAT IS PWD doing?

The main work of the PWD department is to develop and maintain the roads, bridges, rail and infrastructure of the state.


Why pwd command does not create a process?

Some versions of pwd are internal to the shell, and thus do not need to be executed as a separate process. The command executes so fast you are unlikely to see it on a list of processes, anyway. Here is a very crude test to show that pwd. when a separate binary, does in fact create a new process. It consists of two scripts with an infinite loop, one constantly running pwd, the other running PS -A and grepping for the word pwd. You will need to console displays or two terminals to test this. Slowly but surely, the script checking for pwd will spit out instances of pwd being run or exiting (defunct). #/bin/sh #This script constantly runs pwd. Kill with Ctrl - C COUNTER=1 while [ $COUNTER -lt 2 ]; do /bin/pwd done #/bin/sh #This script constantly runs PS -A|grep pwd. Kill with Ctrl - C COUNTER=1 while [ $COUNTER -lt 2 ]; do PS -A | grep pwd done