Skip to main content

Posts

Showing posts from June, 2022

Linked list_insertion_deletion easiest c++ code with explanation

  #include <iostream> using namespace std ; class node {     public:     int value ;     node * next ; }; void insertAtEnd ( node ** head , int   val ){     node * four = NULL ;     node * last = * head ;     four = new node () ;     four -> value = val ;     four -> next = NULL ;     if (* head == NULL ){         * head = four ;         return ;     }     while ( last -> next != NULL ){         last = last -> next ;     }     last -> next = four ;     return ; } void insertAfter ( node * prev_node , int data ){     if ( prev_node == NULL )     {         cout << "The given previous node cannot be NULL" ;         return ;     }     nod...

How to get Domicile Certificate for WBJEE admissions.

 Hello everyone! As the WBJEE result is soon going to release we should keep our required documents ready. And if you are a resident of West Bengal, then the most needed one is the Domicile. Criteria to get the Domicile -  Which Domicile certificate is for you? There are three domicile certificates to be considered as a citizen of West Bengal depending on criteria 'a' and 'b'. Proforma a1, a2 & b. Also if you have an SC/ST/OBC certificate from the West Bengal government then that will also work as a domicile certificate. But if you have the time it's better to make one of the proforma. From where can you get the certificates? The soft copy of the proforma is available on the WBJEE's official website. Link for the soft copy of Proforma  -  CLICK HERE After filling out this form you have to get it signed by competent authorities.           For Proforma 'a2' : Additional Tips:   Try to get proforma a2 signed by your institution's hea...