Tuesday, November 2, 2010

How will you convince me to buy this pen? or sell this pen to me.

hello!good morning sir!we are coming from so & so
company.sir this pen is the new one's which is entered 5
days ago inthe market.ir,this writes very well than other
pen.this pen writes vey smooth handwriting and can be
easily understand.this pen has no problem of leakage of
ink.this will not cost much.so,do you like it?
----------------------------------------------------------------

Hello Sir, our company is launching a new pen in the market
for specially those pepole who are tired by using all other
pens available in the market.looks of this pen is very
stylish and also grip of this pen is very comfortable.you
will not feel tired by using this pen for many hours and it
is also very cheaper in price.it is also smooth in writing
and also the stylish cap of this pen will give you a smarty
look and as i told you before that we are launching it so
we are also going to give you 20% discount on that, so make
it hurry

What is the reason to quit your present job? OR Why you want to change your current job?

Presently i am working with very good organisation I learnt
lots of things and enhanced my skills. but it is very small
process so there is very rare chance to grow.that's why i
am looking for a platform where i can contribute my skills
to the growth of company so that i also can grow with the
company.
------------------------------------------------------------

as i spent 32 months in this company i learned lot's of
things from this company but as if now it's not enough for
my growth i want to face new challenges and want to learn
about new responsibility's and i want to take more
initiative regarding my profile as i discussed this thing
with my company's HR team to give me a chance to proof my
self but they said according to the company's policy we cant
change your profile

WHAT IS UR DAILY ROUTINE?

as usual, it was a rotiune day for me. I woke up at 6'oclock
,refreshed my self and went to Zym . I took exercise in Zym
at least half an hour then from Zym came back to home.I had
me breakfast at 10'o clock.then all of a sudden,one of my
friends called me downstairs.I went downstairs and met all
of my friends . it was a good gathering and we enjoyed
alot.I also met few people who have been in bpo for quite
long time. I had disscusion with them for few hours.at 2'o
clock i had my lunch and went for a short sleep.
my evening started with tea and snacks. I did some domestic
activities with my parents at home. I did work on my pc
also and had chit-chats with my friends on net.at 7'oclock,
I went to park and walked there for half an hour and from
park ,I went to temple and worshipped there.aorund at 8.30
in evening,I started watching some programmes on colours
and kept watching till 10.30. at 11'o clock , i had my
dinner and went to bed.

WHAT DO YOU MEAN HONESTY?

Honesty is telling the truth.Honesty is straightforward
conduct.Honesty is being sincere, truthful, trustworthy,
honorable, fair, genuine, and loyal with integrity.
-----------------------------------------------------------

honesty means a quality of a person with the help of this
quality a man do definately success in his life

what is advantages and disadvantages of call centre

advantages of call center firstly the future will be bright
and we can build our careers in different fields like
marketing,finance,banking,etc.disadvantage is that we have
to sacrifice our health by working in shifts but if we want
to achieve something we have to sarifice somethig.

What should be the starting salary for a fresher?

Starting salary for freshers should be based on their
Qulaification and performance in interview,

But now a days salary fixation became unreasonable.

I think all will accept this.

Tell me about a time when you helped resolve a dispute between others.

Comedy works very well, and resolves conflict by relieving
stress and anger.

Will you sign a bond of 2 years with us?

SURELY.IT WOULD MY PLEASURE WORKING WITH YOUR COMPANY.......
BEING A PART OF YOUR REPUTED CO. IS JUST DREAM COMING TRUE
AND REGARDING BOND ...ITS THE THING YOU DECIDE....WEATHER I
AM ELIGIBLE TO FULLFILL YOUR REQUIREMENTS AND COMPLETE YOUR
JOB IN CORECT AND THE WAY IT SHOULD BE DONE............I AM
HERE TO LEARN SOMETHING........... I KNOW BEING YOUR TEAM
WILL SURELY INCREASE MY KNOWLEDGE

suggestions about Non voice job?

non voice process means we have to communicate with customers through email. And for this one must have a very good command over English means you must have excellent verbal communication skills. There is no space for any kind of grammatical mistake at all.....No matter if you don't speak English fluently but your written English must be excellent.

School day's pocket money should be given to kids or not ?

no its not needed since they may waste it or try to use it
in a wrong way. so its not needed until they r grown up.
------------------------------------------------------------
School day's pocket money could be given but in a limited way.

how do you describe yourself as a person?

I am very optimistic, bold, honest and enthustic smart
working person. As a Human being I am a supertious person
and do belive in god. I love challenges in life and
also appriciate others of same mind. well this is what I am,
and I am always open to everyone with confident that i will
definetly find few friends of my
kind with whome i can talk, enjoy and share my feelings.
---------------------------------------------------------------------
well,I am swathi,I am confident about my self and I am a
good team player.quickly i react to the persons,who are
lazy and force them to be intime.I want to help the one
who is really physically or mentally challenged.I have good
leadership qualities and also I am a good leasoner.

What is mortgage?

right on immovable assests..... land and bulidings,plant
and machinery etc....

Wednesday, September 1, 2010

What is Pure Virtual Function? Why and when it is used ?

A virtual function that is initialized to zero (0) is
referred to as pure virtual function.It has no body and
hence also known as do-nothing or the dummy function.
Example: virtual void show()=0;

A class containing one or more pure virtual functions is
called an Abstract class, which means an instance of such
class can't be created (but pointer to that class can be
created).We should use pure virtual function if we do not
want to instantiate a class but make it act as a base class
for all the classes that derive from it.An important thing
to note about pure virtual functions is that these
functions must be overridden in all the derived classes
otherwise the compile would flag out an error.

Sample program:

class alpha
{
public:virtual void show()=0; //pure virtual function
};
class beta:public alpha
{
public:void show() //overriding
{
cout<<"OOP in C++"; } }; void main() { alpha *p; beta b; p=&b; p->show();
}

Output: OOP in C++

What will happen if when say delete this ?

There are two scenarios:

1. Using "delete this;" in destructor

Here the call will be a recursive call to the destructor
infinitely. So the program hangs here.

2. Using "delete this;" in other members of a class
including constructor.

In this case, the call is a sucide call since the object
tries to delete itself which is nothing but sitting in a
space and destroy that space itself. That is definitely a
memory crash.



Using delete this in destructor will lead to recursive loop
which will lead to Stack overflow...so avoid it over
here...however there are few times where your code with
delete this will just work fine..like in the usage of
garbage colletors in C++.Chk the below code...which works
with no issues:
class temp
{
public:
temp(){std::cout<<"Constructor"<destroy();
return 0;
}

How much is size of struct having 1 char & 1 integer?

The size of the stucture depends on the following factors.

1.Depends on the size of the datatype, allocated by compiler
2.Depends on the allignment of the variables in the
structure.

If variables of different datatypes are misalligned, then
badding bytes will be added by the compiler to falitate to
speed up the memory access by the processor.So that the size
of the structure will increase

why v use c++ even we have microprocessor?

c++ is completely object orientedlanguage. Its major
concepts like data hiding, encapsukation and polymorphism
are very effective... hence v use c++....

What is the difference between reference type and pointers.

Difference 1>
Reference must point to valid objects at the time of
declaration where pointer need not point to valid objects
at the time of declaration means
int nvalue=5;
int &rnvalue; //This is invalid.
int &rnvalue=nvalue; //This is valid.

But
int *rnvalue; //This is valid.
rnvalue=&nvalue;
Difference 2>
Pointer is a variable which holds the address of another
variable.
But Reference is another name of the same variable.





In addition to the previous answer given in Answer #1,
namely References must point to valid objects at the time
of declaration, references also has the following
limitation.

Once a reference is assigned, there's no way you can modify
the reference. However for a pointer type, variable
assignment is legal.

e.g.,

int i, j;

int *pi, *pj;

pi = &i; // pointer to i
pj = &j; // pointer to j

int &k = i; // reference to i

pi = pj; // pi no longer points to i, instead
// it is now pointing to j
k = j; // The reference k is still with i, it is only
// the value of i that is now modified. i is
// assigned the value of j

When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?

Yes this is a right question, but its answer depends on
individual, there is no direct associated answer.

Actually Interviewee want to judge candidate 's coding skills,
If He didn't write any code since past few months, or may be
since past few years.

based on the above interviewee can get the idea about the
coding confidence of candidate.

Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator

#include
#include


using namespace std;

class ownStrcmp
{
public:
ownStrcmp(){}
ownStrcmp(ownStrcmp& rhs);
ownStrcmp(char* instring){ _string = instring;}
void setString(char* instring){ _string = instring;}
char* getString(){return _string ;}
~ownStrcmp(){}
int operator == ( ownStrcmp &rhs);

private:
char* _string;
bool _ret;

};

ownStrcmp::ownStrcmp(ownStrcmp& rhs)
{
_string = rhs._string;
}
int ownStrcmp::operator == ( ownStrcmp &rhs)
{
_ret = true;
if(this == &rhs)
{
return _ret;
}
int i = 0;
while( _string[i] != NULL){ ++i;}
int stringLength = i;
for (int j=0;j {
if(_string[j]!=rhs._string[j]) _ret=false;
}
return _ret;
}


int main()
{
ownStrcmp string1("hello world");
ownStrcmp string2("hello world");
if (string1 == string2)
cout<<"result is true"< else
cout<<"result is false"< return 0;
}

What are the advantages of C++ programming compared to C programming?

c++ provides security to the data,c doesn't provide any
security to the data this is main advantage of c++ over than
c and c++ supports all concepts of c and it introduces
object oriented concepts like
objects,inheritance,polymorphism..etc.c++ programs are
useful for real-time purpose but c doesn't support.c++
introduces class concept.by using classes we can do
real-time projects.
c++ follows bottom-up approach but c follows top-down approach.

What is the difference between a copy constructor and an overloaded assignment operator?

A copy constructor constructs a new object by using the
content of the argument object. An overloaded assignment
operator assigns the contents of an existing object to
another existing object of the same class.

Second main difference:
A copy constructor has no return type, whereas an
overloaded assignment operator has one.

Third difference (trivial):
Name of the copy constructor is the same as that of the
class in which it is defined

why all c++ program must have default constructor?

a defaulft constructor is created that takes no parameters
and does nothing.that takes no arguments but sets up your
object as required.

A defaulft constructor ,but by no convention so is any
constructor that takes parameters ,this is can be a bit confusing ,but is usually clear from context which one is meant.


A default constructor is not made by the compiler.so if u want a constructor that takes no parameters ,and u,ve created any others constructors ,u must make the default constructor urself.

"that if u make any constructor at all."

a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant.

#include
#include
int f(int x)
{ int i,c,a=0;
for(i=1;ix)
printf("\nthis number is abundant");
if(f(x) printf("\nthis number is deficient");
getch();
}

Write a program that takes a 5 digit number and calculates 2 power that number and prints it?

answer:

that question ask the exponential.
In the compute clause we use the ** for exponential
so write a program using this.

example:

IDENTIFICATION DIVISION.
PROGRAM-ID. SIVARAJAN.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A PIC 9(10) VALUE 2.
01 B PIC 9(10) VALUE 12345.
01 EXP PIC 9(25).
PROCEDURE DIVISION.
START-PARA.
COMPUTE EXP=A**B.
DISPLAY EXP.
STOP RUN.

What is OOPS and How it is different from Procedural Programming ?

OOPS means Object Oriented Programming Languages and
Systems and is different from the Structural programming in
the fact that in OOPS programming you take advantage of
Polymorphism, Multiple inheritance and Abstraction and
Encapsulation of the data by using Private and this helps
in Security of Data while giving you the levarage to
program your software system with the maximum flexibility.

In Procedural Programming language the execution of
application can be step by step. That means the data can be
executed ina sequential manner but in Object oriented
languages the application executed according to the order
we wrote in the program.
that means there is no need to follow the order of
execution on OOP.
it depends on the object.

What is the expansion of OOPS?

Object Orientated Programming Structure.



programing interview question part1

JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?

answer:Yes, the JAVA is the fully object oriented, bcoz in java we
can create object for main function also, bcoz main function
written in class

Beauty of Love: this place is make for lovers

Beauty of Love: this place is make for lovers

Saturday, July 17, 2010

What is your strengths? Explain one by one?

I hav confidence coz what ever i do i always being positive
towards itself. I m a hard worker and i never look back
before completing the days work.

tell about jam round? and how to tell?

jam round is just to check out ur communication skills. its
just to check how spontaneous you are. and they even look
for the key points... new words, so try using new words.

What is u r favourite Colour? Why do u like that colour? Favourite Advt in TV, Favourite Song that inspired u the most etc.

my favourite color is black i like black coz it is so
attractive nd out standing color.favourite Adv in tv is
Huch's Wherever u go our net work follows u. favourite song
that ispired me is 'jindagi ke safar mein' from
movie 'kassmein vadein',favourite teacher of mine is
social teacher name Monica in school,holiday spot is
Banglore,lights of festival diwali, if i would given the
post of principal i would like to change pattern of books.
like less books more knowlege.


my favourite colour is red,becoz it represents energy.fav
advt is one of alpenlibe candy(in which small boy ask a
sikh man for 1 rupee telling himself his son (having colour
spread over his face)sikh man gives him one but later he
remembers that he is not even married)it is really a funny
one.song that inspired me the most is title song of
movie'jo jeta vahe sikander'.fav teacher mat sci teacher
Mr.S.Das,fav holiday spot shimla.fav festival diwali.i
would have reduced school hrs(but not much).

Do you think you don’t have the career growth in your company?

Not like that, when compare to the developed companies,
there is slow in growth in my present organization.




ablolutely yes.my present organization has lack of
management.

why u want to join voice process

in voice based process we will have great oppertunity to
communicate with with varities of people that definitely
helps us to improve our communication skills,speaking to
others always helps to learn the language more
efficiently.instead of that in voice process all that we
need to do is answering the call.we can improve soft skills
and we can know people management.

Why do you want to leave your organization or company?

It may be for better salary and better position...or may be
lack of growth and motivation in previous organisation...it
again depends on individual situation .

what is your career aspect???

I would like to built up a long term carrer in the company
and definitely in the future i would like to get into
higher positions and that would depend upon my
performance.so definitely i would work very hard to perform
well enough to get into the higher levels in the same
organisation.

TELL ME SOMETHING ABOUT UR SCHOOL DAYS?

hi, myself mr.bhagirathi rao,iam very happy to say about my
schooling days,i had complete my school studies from
st.stephens high school.which is not well known school
which has located at old city in hyd.In those days i have
enjoyed much with my friends i used to go movies once in
weekly with friends,and used to go long drive and i had
took participated in school programmes with the compliments
of my friends such as farewell,re-public , independence day
as well as took competetion in sports and got meddles
several times specially my teachers were very closed with
us and they also enjoyed with us. Finally i want to say
about my schooling days in one sentence that would be said
by all school days are golden days.

Describe red color to a blind person

Blind person can imagine the description what we want to
tell him/her about the colors description. Basically red
color indicates love, emotions, distress,danger etc. Red
color is also used at the time of wars. It also indicates
the anger of the person.

How do you convince to a strange person.(if u need to take his 10 mint how will u spend that time)

First of all i will start as follows :-

Excuse me i am new to the city(Bangalore), my name is chiru and i came here to attend my friend's marriage and just now i reached the city from Hyderabad so i want to get fresh up before attending the marriage, could you please guide me any decent hotel nearby this locality.

After stranger giving details to me i will thank him and i'll ask him :-
may i know about you, i am very glad to find a person like you in the city which is not known to me as i am visiting here for the first time.
and try to spend time for asking the address of the venue.

interview questions in bpo and IT

hi guys this is sameer vashist. i am working in a reputed bpo company as a tech. support executive from 5 years .
i take many intercviews in the comapny . many guys have good knowldage but they loss their confidence between the interview . thats why i tell you what type of questions asked in bpo and IT companys like convergys, ibm, hcl, wipro, and many more .