use if else n check dat it is leap year or not in pseudocode

Your question is not clear.

Look to the upper left in the red area and please identify the School Subject so we might recognize it.

Sra

Certainly! Here's an example of how you can use an if-else statement to check if a year is a leap year or not in pseudocode:

```
1. Read the year from the user and assign it to a variable, let's say "year".
2. Initialize a boolean variable, let's say "isLeapYear", as false.
3. If the year is divisible evenly by 4, go to step 4, otherwise go to step 8.
4. If the year is divisible evenly by 100, go to step 5, otherwise go to step 6.
5. If the year is divisible evenly by 400, go to step 6, otherwise go to step 7.
6. Set "isLeapYear" as true (since the year is divisible evenly by 400).
7. Go to step 9.
8. Set "isLeapYear" as false (since the year is not divisible evenly by 4).
9. If "isLeapYear" is true, then output "The year is a leap year.", otherwise output "The year is not a leap year."
```

That is the basic structure of the pseudocode to check if a year is a leap year using if-else statements. You would need to convert this pseudocode into the syntax of the programming language you are using.