Write pseudo code for this program:any students whom got CGPA more than 2.0 will pass their study ,and less than 2.0 will fail

Sure! Here's the pseudo code for the program you described:

```
// Declare a variable to store the CGPA of the student
DECLARE cgpa

// Prompt the user to enter the CGPA
PRINT "Enter the student's CGPA"
READ cgpa

// Check if the CGPA is more than 2.0
IF cgpa > 2.0 THEN
PRINT "The student passed"
ELSE
PRINT "The student failed"
ENDIF
```

In this pseudo code, we start by declaring a variable `cgpa` to store the student's CGPA. We then prompt the user to enter the CGPA and read the input into the `cgpa` variable.

Next, we use an if-else statement to check if the CGPA is more than 2.0. If it is, we print "The student passed". If it's not, we print "The student failed".

Note that this is a simplified version of the program and does not include any error handling or input validation.