Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Friday 31 March 2017

SBI job for Customer Relationship Executive across India

SBI Job opening for Customer Relationship executive Pan India -2017

Date of Posting: 24/03/2017

Company Name and Type: SBI

Last date of submission: 10-04-2017.


Hiring Process: Candidates will be selected by
1. Bank Shortlist candidates according to qualification
2. Personal Interview

No. of Vacancy:  Total  65 post/vacancies

Educational Qualification: Graduate in any discipline from government recognized university. Having experience in financial products with complete documentation.

Age Limit:  Minimum 20 Years and maximum 35 Years 

Application Fees: For General & OBC of Rs. 600 /- 
                                For SC/ST/PWD of Rs. 100 /- 

How to Apply: All the interested Candidates can submit their application online before the last date of submission.

Website: www.sbi.co.in


Click  Apply here

Important Dates

Last date for Submission as per notification:  10/04/2017
Last date for Payment as per notification:  10/04/2017
Examination day: May/June 2017 (Tentative Days)

#job #sarkarinaukri #govermentjob #bankjob

Read More »

Thursday 30 March 2017

Simple program

Simple program #7 (Print next prime number)

Enter a number: 11
Next prime number: 13

The program is written in C# programming language and will accept a number as input. The logic of the program is to find the succeeding prime number.
 
Simple Program by imagination hunt
Simple Program

Note: If you are new to C# and Console Application. Try to code First C# Program

Note: Read articles on how to use Loops and Conditions.

Let’s find out a simple and easy way to code the program.

Practical Implementation:

using System;

namespace patternProblem.Simple_program
{
    class Simple7   //Print next prime number
    {
        static void Main(string[] args)
        {
            Console.Write("Enter a number: ");
            int n = Convert.ToInt32(Console.ReadLine());
            int i = 0;
            int j = 2;

            Console.Write("Next prime number: ");
            for (i = n + 1; i < 300000; i++)
            {
                for (j = 2; j < i; j++)
                {
                    if (i % j == 0)
                    {
                        break;
                    }
                }
                if (i == j || i == 1)
                {
                    Console.WriteLine(i);
                    break;
                }
            }

            Console.ReadKey();
        }
    }
}

Output:
The input number here is 11. The program will find the succeeding prime number. The output is shown below:

Enter a number: 11
Next prime number: 13
Press any key to continue . . .


Note: This program is design to find prime number only between 2 to 300000.

For any query, comment us below.

Skip to Main Table Simple program

Previous - Simple program #6

Next – Simple program #8

Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Wednesday 29 March 2017

Simple program

Simple program #6 (Check whether a number is prime or not)

-1
Smallest prime number is 2
39
Not prime number

The program is written in C# programming language and will accept a number as input. The logic of the program is to check whether the number is prime or not.
 
Simple program #6 by www.imaginationhunt.com
Simple program

Note: If you are new to C# and Console Application. Try to code First C# Program

Note: Read articles on how to use Loops and Conditions.

Let’s find out a simple and easy way to code the program.

Practical Implementation:

using System;

namespace patternProblem.Simple_program
{
    class Simple6   //checking number prime or not
    {
        static void Main(string[] args)
        {
            Console.Write("Enter a number: ");
            int n = Convert.ToInt32(Console.ReadLine());
            int i = 0;
           
            if (n < 2)
            {
                Console.WriteLine("Smallest prime number is 2");
            }
            for (i = 2; i < n; i++)
            {
                if (n % i == 0)
                {
                    Console.WriteLine("Not Prime number");
                    break;
                }
            }
            if (n == i)
            {
                Console.WriteLine("Prime number");
            }

            Console.ReadKey();
        }
    }
}

Output:
The input number here is 3. The program will check with the number is prime or not. The output is shown below:

Enter a number: 39
Not Prime number
Press any key to continue . . .


For any query, comment us below.

Skip to Main Table Simple program

Previous - Simple program #5

Next – Simple program #7

Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Tuesday 28 March 2017

Simple program

Simple program #5 (Swap number using two variables)

Before swapping a is : 8
Before swapping b is : 6
After swapping a is : 6
After swapping b is : 8

The program is written in C# programming language and will accept two numbers as input. The logic of the program is to swap input number using two numbers.
 
Simple program #5 by www.imaginationhunt.com
Simple program

Note: If you are new to C# and Console Application. Try to code First C# Program

Note: Read articles on how to use Loops and Conditions.

Let’s find out a simple and easy way to code the program.

Practical Implementation:

using System;

namespace patternProblem.Simple_program
{
    class Simple5   //swap number using two variables
    {
        static void Main(string[] args)
        {
            Console.Write("Enter first number: ");
            int fn = Convert.ToInt32(Console.ReadLine());
            Console.Write("Enter second number: ");
            int sn = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine();

            Console.WriteLine("-----Output-----");

            Console.WriteLine();
            Console.WriteLine("Before swapping a is : {0}", fn);
            Console.WriteLine("Before swapping b is : {0}", sn);
            fn = fn + sn;
            sn = fn - sn;
            fn = fn - sn;
            Console.WriteLine("After swapping a is : {0}", fn);
            Console.WriteLine("After swapping b is : {0}", sn);

            Console.ReadKey();
        }
    }
}

Output:
The first input number here is 5 and second input number is 2. The program will swap numbers. The output is shown below:

Enter first number: 5
Enter second number: 2

Before swapping a is: 5
Before swapping b is: 2
After swapping a is: 2
After swapping b is: 5
Press any key to continue . . .


For any query, comment us below.

Skip to Main Table Simple program

Previous - Simple program #4

Next – Simple program #6

Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Featured post

Think that makes you rich and richer

 Napolean said: “You can think and grow rich, but if you can be brought up like most people with work and you won't starve, this wil...