About Us

Popular Updates Of Last Week

Search This Website

Monday 31 July 2017

HOW TO PREPARE FOR BANK EXAMS

HOW TO PREPARE FOR BANK EXAMS

v Take a mock (Practice) test online:
The test will make you aware of the pattern being followed in different sections, level of difficulty and your current status. To know ‘Where do I stand?’ is extremely crucial before you actually put in your time and efforts preparing for a competitive exam.
v Go slow but go in depth
Once you’re done with the analysis part you should then work on the fundamentals, which are:
A. Quantitative Aptitude
Learn Speed Math tricks (Many of them are available on YouTube), do a lot of mental Math in everyday’s life and make yourself able to calculate really fast.
Get an in-depth understanding of chapters such as Simplification, Average, Percentage, Ratio, Profit and Loss and Data Interpretation. Once you become sure about the concepts and your ability to solve them fast try bringing command over other chapters.
B. Reasoning Aptitude
The topics like Syllogism, Machine Input Output, Puzzle Test, etc carry high weight-age as far as a IBPS PO exam is concerned and with 6 months in hand you can bring an absolute command over these topics provided you know the approach. Do not get worried about the verbal reasoning topics as they take only 1 or 2 months’ preparation to gain command over.
C. English Language
For last few years the level of difficulty in this particular section has been increasing and to clear the cut-off you must be a good reader of English Language. Make a habit of reading different pieces of writings; News Articles, Journals, Magazines, etc. Besides, you’ll to work on your grammar as well.
D. General Awareness
Preparing for this section seems most cumbersome to most of the students as one has to store a lot of events, dates, names in one’s mind with daily happenings at National and International arena. But it would be advisable you not to do thorough study for this section as it will consume a lot of your precious time.
E. Computer Knowledge
You need not be a Computer wizard to clear this section just follow online computer section of different website and once you are done with its contents, practice a lot of sample questions either online or offline.
Hope you would have got some idea of preparing from reading the above.
Click here to know more updates 

Read More »

Sunday 30 July 2017

IMMEDIATE OPENINGS FOR FRESHER's! IN BANKING ,Delhi

Click here to like our Facebook page for more updates
IMMEDIATE OPENINGS FOR FRESHER's! IN BANKING
avb tech - New Delhi, Delhi

G R MEDIA & RECRUITMENT CHANNEL
REQUIRED CANDIDATES IN HDFC BANK
ON ROLL FROM HDB
v PROFILE:  MERCHANT OFFICER, HL BL
v LOCATION:  DELHI ,NCR, WEST UP ( MORADABAD,MERUT) 
v CHARGES:  ONE SALARY AFTER LETTER 100% SELECTION GURANTEE
v CONTACT:  9582623047 (Mr. Atul) 
v JOB - TYPE:  Full-time
v SALARY:  18,000.00 /month













Read More »

Saturday 29 July 2017

C Programs to Print Different Pattern Series

C Programs to Print Different Pattern Series

There are few Pyramid Programs in C. Like Print Star Series and Different Pattern Printing Programs in C Language.

Pattern printing programs contains Star Pattern printing.

All Pyramid and Pattern Printing programs based on problems popularity and frequently asked in Interview, these programs has explanation.




Following Are Few Examples of the pyramid pattern:-

Program - 1

v C program to print following Pyramid:   

    *   

    **   

    ***   

    **** 

    *****

ü  #include<stdio.h>
  #include<conio.h>  
  #define MAX 5
   void main()  
   {
       int i,j;     
       for(i=0; i<MAX;i++) 
       {                
           for(j=0;j<=i;j++)
           {
            printf("*");
        }
        printf("\n");
    }
   }                     

Program - 2

v C program to print following Pyramid:    

     *****    

     ****    

     ***    

     **    

     * 

ü       #include<stdio.h>  
   #include<conio.h>  
   #define MAX 5

void main()
{
    int i,j;

    for(i=MAX; i>=0; i--)
    {
        for(j=0;j<=i;j++)
        {
            printf("*");
        }
        printf("\n");
    }
    
}


Program - 3

v     program to print following Pyramid:

                                                *
                * *
               * * *
              * * * *
             * * * * *            

ü    #include<stdio.h>
    #include<conio.h>    
   #define MAX 5

  void main()
  {
    int i,j;
    int space=4;
    /*run loop (parent loop) till number of rows*/
    for(i=0;i< MAX;i++)
    {
        /*loop for initially space, before star printing*/
        for(j=0;j< space;j++)
        {
            printf(" ");
        }
        for(j=0;j<=i;j++)
        {
            printf("* ");
        }
   
        printf("\n");
        space--;    /* decrement one space after one row*/
    }
  }

Program – 4

v C program to print following Pyramid:

                 *
       * *
      * * *
     * * * *
    * * * * *
    * * * * *
     * * * *
      * * *
       * *
        *

ü #include<stdio.h>  
  #include<conio.h>  
  #define MAX 5   
void main()
  {
    int i,j;
    int space=4;

    /*parent loop till number of rows*/

    for(i=0;i< MAX;i++)
    {
    /*loop for initially space, before star printing*/
        for(j=0;j< space;j++)
        {
            printf(" ");
        }
        for(j=0;j<=i;j++)
        {
            printf("* ");
        }
         
        printf("\n");
        space--;
    }

    /*repeat it again*/
    space=0;
    /*parent loop till number of rows*/
    for(i=MAX;i>0;i--)
    {
    /*loop for initially space, before star printing*/
        for(j=0;j< space;j++)
        {
            printf(" ");
        }
        for(j=0;j< i;j++)
        {
            printf("* ");
        }
         
        printf("\n");
        space++;
    }
   }

 Program – 5

v C program to print following Pyramid:

        **********
        ****  ****
        ***    ***
        **      **
        *        *

                    ü    #include<stdio.h>
         #include<conio.h>
   #define MAX 5

int main()
{
    int i,j;
    int space=0;
    /*run loop (parent loop) till number of rows*/
    for(i=MAX;i>0;i--)
    {
        /*print first set of stars*/
        for(j=0;j< i;j++)
        {
            printf("*");
        }
        for(j=0;j< space;j++)
        {
            printf(" ");
        }
        /*print second set of stars*/
        for(j=0;j< i;j++)
        {
            printf("*");
        }
         
        printf("\n");
        space+=2;
    }
}
  
Read More »