What is CSS Cascading style sheet (CSS) is a way to control the look and feel of your HTML document in an organized and efficient manner. Cascading style sheet is a standard Defined by the world wide web consortium that offers designers more flexibility and accuracy when defining the appearance of text and formats than standard HTML. Cascading style seat(CSS) is a way to control the look and feel of your HTML document in an organized and efficient manner. Essentially, CSS allows designers to manipulate the appearance of the web page without affecting its HTML structure. Cascading style sheets, is a simple design to language to simplify the process of making web page presentable. CSS handle the look and feel part of a web page. Using CSS you can control the color of the text , the style of font, the spacing between paragraph, how column are sized and lied out, what background image or color are used , as well as variety of other effects. CSS ...
Deadlock in operating system-computer world Deadlock : In a multi-programming environment, many process may complete for a minute number of resources. A process make a request for a resource and if the resource is not available at that time, the process enter In a waiting state. A waiting state process is never again-able to change state because the resource it has requested is held by other waiting process. This situation is called deadlock. So we can say that a process is said to be deadlock when it is waiting for an event or resources which will never occurs. so we can say that in this situation none of the process gets executed since the resource it needs, is held by some other process which is also waits for some other resource to be released. Let's assume that there are three process P1, P2, p3 and three different resources R1, R2 and R3. R1 is assigned to p1, R2 is assigned to P2 and R3 is assigned to P3. After somet...