I want to know about the marketing aptitude topic which i have to prepare for federal Bank probationary Exam.I want to know how i prepare it and from where i get the sufficient study material for exam.
5 24064Hi i am rashmi.I cleared Federal bank PO written test.Please help me for interview and what will be ask in interview.
41 49987i m having interview in federal bank for the post of PO, as i hv cleared the written exam. Please tell me how to prepare for that interview?
1 6937hi all I got two exam call letter one from maha ganeco & other from federal bank both at same time & same date which should i choose (note I am eng. grad.)
2077Can any body give me some stuff on FINANCIAL AWARENESS and MARKETING ABILITY for federal bank clerical recruitment exam? I dont know how will be the questions on this
5093Hi...I have got thru Federal Bank Written Exam. Does any one received any communication from Bank side about the interview details. Please let me know if u ppl receive it. I am also waiting 4 IOB final list....dont knw when thy r going to declare it. If any one receive any info plz share it on this thread.
58 59692Hai Every body I also cleared the Federal Bank P O Exam..I know there would be somany people bother about their communication skills.. Even if we are highly skilled then also there is a chance to misunderstand the questions they would hav to ask.. So we can chat thru this community effectively and transfer our ideas ... if we do it in a serious manner we can become confident in our speaking skills. we can chat and help eachother,share the information.. I hav opened a new community in orkut named "interview helper" The community aims to help those who wants to improve their communication skills through textual chatting.. Am very much happy to invite u all ...
2193hi i cleared clerk exam of FB. i have completed bcom & presently doing mcom part 1 i want to know that @ interview do they ask questions relating to acoountig if anyone know about questions then plz mail me on varsha.jam@rediffmail.com
2062Post New Federal Bank Interview Questions
What are the distinct layers of storm’s codebase?
How much is the pay-for-use service if I chose not to use microsoft-sponsored advertising?
what are the challenges you are faced with end users ?
What is ObjectInspector functionality?
What are the differences between sub procedures and function procedures?
What is the specific heat value for liquid ?
What is the function of ltp in share market?
What is meant by a bit?
Give the step by step approach to set up LIS?
How to upgrade the latest patches in weblogic?
Explain how hashmap works?
What is plist?
3.2 Consider the following class: public class Point { protected int x, y; public Point(int xx, int yy) { x = xx; y = yy; } public Point() { this(0, 0); } public int getx() { return x; } public int gety() { return y; } public String toString() { return "("+x+", "+y+")"; } } Say you wanted to define a rectangle class that stored its top left corner and its height and width as fields. 3.2.1 Why would it be wrong to make Rectangle inherit from Point (where in fact it would inherit the x and y coordinates for its top left corner and you could just add the height and width as additional fields)? (1) 8 Now consider the following skeleton of the Rectangle class: public class Rectangle { private Point topLeft; private int height, width; public Rectangle(Point tl, int h, int w) { topLeft = tl; height = h; width = w; } public Rectangle() { this(new Point(), 0, 0); } // methods come here } 3.2.2 Explain the no-argument constructor of the Rectangle class given above. 3.2.3 Write methods for the Rectangle class to do the following: • a toString() method that returns a string of the format "top left = (x, y); height = h; width = w " where x, y, h and w are the appropriate integer values. • an above() method that tests whether one rectangle is completely above another (i.e. all y values of the one rectangle are greater than all y values of the other). For example, with the following declarations Rectangle r1 = new Rectangle(); Rectangle r2 = new Rectangle(new Point(2,2), 1, 4); the expression r2.above(r1) should give true, and r2.above (r2) should give false. (You can assume that the height of a rectangle is never negative.) (2) (5)
What is year dependent fiscal year variant?
State difference between proof-of-work & proof-of-stake?