About Us

Popular Updates Of Last Week

Search This Website

Saturday 30 September 2017

Indian Air Force Recruitment 2017 – Airmen Recruitment Rally @ Vellore

Employment News: Aspirants can get latest Employment news from this page.

Most of the candidates are searching for latest Govt Job Notifications. For the convincement of contenders, we are providing latest info regarding Employment news that is recently announced by State Government and Central Government Sectors.

Through this page, all the competitors can get day to day Employment news. Job fighters can check daily updated government notifications which will be very helpful and useful for the individuals. Those aspirants who are passionately trying to get a job can get Employment news to collect the information.


Indian Air Force Recruitment 2017 – Airmen Recruitment Rally @ Vellore





Indian Air Force Recruitment 2017–Indian Air Force announced Recruitment for Airmen in Group ‘X’ (Technical) Trades through Recruitment Rally. The Rally is scheduled @ Voorhess College in Vellore, Tamilnadu from October 09 to 14, 2017. The Airmen Recruitment Rally is particularly for unmarried male from Tamilnadu and Puducherry. Candidates willing to join Indian Air Force as Airmen should attend the rally at specified date and time. 
For detailed information login to the official website airmenselection.gov.in.

About Indian Air Force

Indian Air Force shortly called IAF is one of the major armed forces in India. It has been serving and saving our nation since 1932. Headquarter is located in New Delhi, capital of India. They conducted major operations such as “Operation Vijay”, ”Operation Meghdoot”, “Operation Cactus” and “Operation Poomalai”. Their Motto is “Touch the Sky with Glory”. Kargil war is the most memorable war in Indian Air Force history.

Details of Indian Air Force Recruitment 2017 Rally @ Vellore

Organization Name: Indian Air Force
Employment Category: Defense Jobs
Name of the Post: Airmen (Group ‘X’ Technical Trades)
Pay Scale: Rs.33,100/- per month
Rally Location: Voorhees College, Vellore, Tamil Nadu



Eligibility criteria for Indian Air Force Recruitment 2017

Educational Qualification
·         Intermediate (10+2)/Diploma in relevant engineering discipline from a recognized institute.
·         However, check official notification for complete eligibility conditions.
Age Limit
·   Candidates should born between 13 January 1998 and 27 June 2001.


Selection Process
·         Written Test
·         Adaptability Test
·         Physical Fitness Test

How to attend Indian Air Force Recruitment Rally

1.      Go to official website and then look for vellore (Tamil Nadu) notification.
2.      Find the advertisement and then read the notification carefully.
3.      Check whether you are eligible as per the conditions given in the official notification.
4.      Carry necessary documents to the rally if required.
5.      Check official notification for necessary documents to be carried to Rally.

6.      Finally, attend the rally as per the Rally schedule at Vellore.

Important Dates

Date

Stream/Activities

Districts
09.10.2017

Written Test and
Adaptability Test – 1
Madurai, Thirunelveli, Virrudhnagar, Tuticorin, Ramanathapuram, Sivagangai, Krishnagiri, Tiruchirappalli, Villupuram, Salem, Nagapattinam, Pudukottai, Cuddalore, Thiruvarur and Karur districts of Tamil Nadu and UT of Puducherry (Puducherry & Karaikkal)

10.10.2017

Physical Fitness Test (PFT)
and Adaptability Test-2
12.10.2017

Written Test and
Adaptability Test – 1

Vellore, Kanayakumari, Theni, Thanjavur, Thiruvannamalai, Chennai, Thiruvallur, Dindigul, Dharmapuri, Coimbatore, Kanchipuram, Thiruppur, Nammakal, Erode, Ariyalur, Nilgiris and Perambalur districts of Tamil Nadu

13.10.2017

Physical Fitness Test (PFT)
and Adaptability Test-2




Read More »

Saturday 16 September 2017

What is POP & OOP?

POP & OOP Short Note
  ØWhat is POP?
                POP full form is Procedure Oriented Programming. Procedural programming is a programming paradigm, derived from structured programming, based upon the concept of the procedure call.
            When program become larger, it is divided into function & each function has clearly defined purpose. Dividing the program into functions & module is one of the cornerstones of structured programming.  E.g.:- c, basic, FORTRAN.




Ø Characteristics of Procedural Oriented Programming:-
§  It focuses on process rather than data.
§  It takes a problem as a sequence of things to be done such as reading, calculating and printing. Hence, a number of functions are written to solve a problem.
§  A program is divided into a number of functions and each function has clearly defined purpose.
§  Most of the functions share global data.
§  Data moves openly around the system from function to function.


Ø Drawback of  POP (structured programming):-
§  It emphasis on doing things. Data is given a second class status even through data is the reason for the existence of the program.
§  Since every function has complete access to the global variables, the new programmer can corrupt the data accidentally by creating function. Similarly, if new data is to be added, all the function needed to be modified to access the data.
§  It is often difficult to design because the components function and data structure do not model the real world.
§  Modularity is generally desirable, especially in large, complicated programs.


Ø What Is OOP?

      It means Object Oriented Programming. To overcome the drawbacks of POP this
Programming language was introduced. It’s organized around objects rather than actions and data rather than logic. 

OOP is a programming paradigm based on the concept of  objects, which may contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods. The most popular ones are class-based, meaning that objects are instances of classes, which typically also determine their type.



Many of the most widely used programming languages such as C++, Object Pascal, Java, Python etc. are multi-paradigm programming languages that support object-oriented programming.

The core of the pure object-oriented programming is to create an object, in code, that has certain properties and methods. While designing C++ modules, we try to see whole world in the form of objects.

For example a car is an object which has certain properties such as color, number of doors, and the like. It also has certain methods such as accelerate, brake, and so on.


Ø Concepts Of OOP:-



·          Object-
This is the basic unit of object oriented programming. That is both data and function that operate on data are bundled as a unit called as object.

·                Class-

When you define a class, you define a blueprint for an object. This doesn't actually define any data, but it does define what the class name means, that is, what an object of the class will consist of and what operations can be performed on such an object.


·                Abstraction-

Data abstraction refers to, providing only essential information to the outside world and hiding their background details, i.e., to represent the needed information in program without presenting the details.
For example, a database system hides certain details of how data is stored and created and maintained. Similar way, C++ classes provides different methods to the outside world without giving internal detail about those methods and data.

·                Encapsulation-

Encapsulation is placing the data and the functions that work on that data in the same place. While working with procedural languages, it is not always clear which functions work on which variables but object-oriented programming provides you framework to place the data and the relevant functions together in the same object.

·                Inheritance-

One of the most useful aspects of object-oriented programming is code reusability. As the name suggests Inheritance is the process of forming a new class from an existing class that is from the existing class called as base class, new class is formed called as derived class.
This is a very important concept of object-oriented programming since this feature helps to reduce the code size.
There are few types of inheritance, which are as follows:
Single inheritance
Multi-level inheritance
Multiple inheritance\
Hierarchical inheritance
Hybrid inheritance.

·                Polymorphism-

Polymorphism is the ability of an object to take on many forms. The ability to use an operator or function in different ways in other words giving different meaning or functions to the operators or functions is called polymorphism. Poly refers to many. That is a single function or an operator functioning in many ways different upon the usage is called polymorphism.

There are types of  polymorphism which are as follow:

§  Compile-time

§  Run-time


 

Read More »

Wednesday 13 September 2017

Bank Job vacancies September 2017

Bank Job vacancies September 2017

Why Bank Jobs?
As we all know, Banks are the backbone of the Indian economy. Every Year, Banks are recruiting lakhs of candidates. So there is a huge job opportunity in Banking Sector, nowadays.

Being a Banker, you can get good Salary, better Social Status, Job Security, exciting career growth opportunities, Job satisfaction and attractive benefits like medical insurance for you and your Family. Other perks that banks offer include paid time off, free financial services, adoption assistance and access to wellness programs. 

Popular Posts in Bank Jobs

Banks recruits huge number of candidates for the following posts, every year.
  • Clerk cum Cashier / Office Assistants
  • Probationary Officer (PO)
  • Specialist Officer (SO) - IT Officer, Law Officer, Agriculture Officer
  • Managers & above
  • Loan officer and more


Click Here To like our Facebook Page to get more updates 


Apply online to 8,175 Latest Bank Jobs September 2017 Vacancies across India. Upload your resume and subscribe to jobs in Bank to know immediately about the latest recruitment notification for both fresher's and experienced candidates.

This page for job seekers who are all looking for latest Bank jobs vacancies in India 2017. You can check the updated Bank jobs recruitment notifications for both fresher and experienced candidates under various departments and then you can apply for the post which is suitable to your qualification. Here you can search for latest Bank employment news, Bank jobs in India, Bank government jobs 2017 etc.

Upcoming Bank Jobs 2017 updated on 13th September

COMPANY
NAME
JOB TITLE
ELIGIBILITY
LAST DATE
Central Bank of India
Counselor FLCC - 2 Vacancies
Any Graduate, B.A, BCA, B.B.A, B.Tech/B.E, Any Post Graduate, M.A, M.Com, M.Sc, M.E/M.Tech - Muzaffarpur
15/09/2017

TATA AIA LIFE

Relationship Manager - 200 Vacancies
FRESH GRADUATES & ENGINEERS - Across India
17/09/2017
Central Bank of India
Director, Faculty, Office Assistant - 3 Vacancies
Any Graduate, Any Post Graduate, B.A, B.Sc, B.Ed, M.A, MSW, B.Com, BSW - Chhindwara
15/09/2017
Bank of Maharashtra
Credit Risk Officer, Operational Risk Officer, Market Risk Officer - 7 Vacancies
MBA/PGDM, CA, ICWA, - Pune
15/09/2017

Tech Specialist / Associate
FRESH ENGINEERS - Across India
17/09/2017
Bank of Maharashtra
Security Officer - 13 Vacancies
Any Graduate - Pune
15/09/2017
Bank of Maharashtra
Chief Financial Officer, Chief Technology Officer, Principal - 3 Vacancies
CA, B.Tech/B.E, MCA, Any Post Graduate, MBA/PGDM, M.Phil/Ph.D - Pune
15/09/2017
PathFront Client
Executive – Sales / Sales Officer Role
FRESH GRADUATES - South India
17/09/2017
IBPS
Clerk - 7883 Vacancies
Any Graduate - Across India
03/10/2017
Central Bank of India
Director - 1 Vacancy
Any Graduate, Any Post Graduate - Gwalior
18/09/2017
HDFC LIFE
GRADUATE TRAINEE - 200 Vacancies
FRESH GRADUATES & ENGINEERS - Across India
16/09/2017
Central Bank of India
Incharge FLCC - 1 Vacancy
Any Graduate, Any Post Graduate - Gwalior
18/09/2017
Indbank Merchant Banking Services Limited
Secretarial Officer - 2 Vacancies
Any Graduate - Chennai
16/09/2017
Equity Research Analyst , Merchant Banker and Corporate Advisory - 4 Vacancies
MBA/PGDM - Gandhinagar
16/09/2017




State Bank Of India
Deputy Manager, Deputy General Manager - 41 Vacancies
LLB - Mumbai
06/10/2017
Bank of Maharashtra
Chartered Accountant, Civil Engineer, More Vacancies - 110 Vacancies
Any Graduate, CA, B.Tech/B.E - Pune
07/10/2017
Kadapa DCCB
Staff Assistant/Clerk - 39 Vacancies
Any Graduate - Nellore
03/10/2017
HARCO Bank
Chief Executive Officer - 1 Vacancy
Any Graduate, CA - Chandigarh
03/10/2017
Assam Cooperative Apex Bank
Probationary Officer, Assistant cum Assistant Cashier - 55 Vacancies
Any Post Graduate, MBA/PGDM, CA, M.E/M.Tech, MCA, M.Sc, Any Graduate - Guwahati
28/09/2017
HPSCB
Junior Clerk - 10 Vacancies
10TH, 12TH, Any Graduate - Shimla
05/10/2017
Read More »