Skip to main content

Posts

Showing posts with the label if else

WHAT IS CSS?ADVANTAGES, SYNTAX.

 CSS PROGRAMMING LANGAUGE                                                                     disadvantages CSS full form is cascade style sheets , which we call it says about how you should display the HTML elements on the screen. CSS tells us the style of the webpage let us take a simple example, if we build a home first we lay out the design that is known as the HTML language. Where the CSS means layout which means giving instructions on how the furniture should be nothing but the CSS. For example if we take PayPal we can see that the background color blue says the CSS background-color property. Netflix is also the best way of saying  CSS property, but if we remove it will be a normal webpage but with the red color and the black plus symbols it looks like the best webpage. Versions of CSS There are differen...

FLOW CONTROL STATEMENTS IN C?IF ELSE,IF ELSE LADDER ....

  FLOW CONTROL STATEMENTS :-                                                         statements                                  A statement that controls the order of execution of other statements of the program is known as a flow control statement. Classified into two types, the  first one is the selection statement which is also known as the branching statement, other one is the iteration statement is called the loop statement.   SELECTION STATEMENTS(BRANCHING STATEMENTS) :- S imple if statement:-An if statement without an else statement is known as a simple if statement.                     Syntax :- if(condition)                       ...