Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

FirstSource Interview Questions
Questions Answers Views Company eMail

Tell me about yourself?

229 561942

Least no. when divide by 7 gives remainder 6, 6 gives 5, 5 gives 4 and so on ?

7 32926

BPO means?

21 110088

what r ur hobbies?

23 52364

tell me something abt urself?

23 48305

In call centers in general what topics they ask?

6 31467

What is the importance of computer.

56 226683

speak for 2 minutes on some topic

47 816915

tell me about what is mean call centre

10 27721

What do you mean by quality analyst in call centres ?

30 131800

If HR person asked tell me about yourself then what is the sequence points to tell him the answer

33 97438

What is BPO? Please explain in brief.

5 24928

I have only four months exp in banking field.. but i am searching for a better job.. in interview they are asking, what is the reason for changing the job so soon. the reason is to get high pay.. but if i tell like that.. they will not select me..so i want the best answer for this.. i am keep on searching for a better job.. so please me.. right now i am getting 6000rupees in HDFC BANK.. but i am expecting above 9000rupees.. so please help me to get a good job with a good pay..

1 5108

How many rounds of interview are taken in international call center?What are they?

3 26644

how i should sell one mobile phone when interviewer will ask sell this phone to me

18 159971

Post New FirstSource Interview Questions




Un-Answered Questions

Describe a situation in which you were successful.

1389


Which are the design patterns that are used in hibernate framework?

399


Explain the dataadapter class in ado.net?

1264


What is the Use of scheduler?

465


How to set an array in linux?

1311


What is arraylist load factor?

1130


Explain the different between gate valve and globe valve?

1175


How do I use prefixes to refer to element type and attribute names in an xml namespace?

897


How can create a backup and copy files in jenkins?

1


Maine 12th ke bad 2 years ka web designing ka course kiya hai. Php me achcha hu. Ek fresher ko is field me kitna mil sakta hai ?

5223


What is the difference between oop and sop?

1450


Sorting algorithms and time complexity of various algorithms.

1057


Can you define sqoop in hadoop?

3


What is vdl (view definition language) explain?

1097


Hi, I am new in oracle(SQL), could anyone help me in writing a correct SQL. Below is the table structure. Table: Subsc Fields: 1. Sub_no (this field will hold values of subscriber nos, for e.g. S111111, S222222, S333333, S444444, etc.) 2. s_status (this field will hold values for different status of subscriber, for e.g. 'A', 'S', 'C', etc.) 3. cus_id (this field will hold values of bill nos for e.g. 11111111, 22222222, 33333333, 44444444, etc.) Table: Bill Fields: 1. Bill_no this field will hold values of bill nos for e.g. 11111111, 22222222, 33333333, 44444444, etc.) 2. b_status = (this field will hold values for different status of bill for e.g. 'O', 'C', 'S', etc.) Note: 1. The Sub_no is a Primary key of Subsc table. 2. The cus_id is a foreign in Subsc table (referred from Bill_no field of Bill table) 3. The Bill_no field is the Primary key of Bill table. Query A --> I wrote a query to select cus_id/Bill_no which is in status open (b_status = 'O') and having more than two active subscriber (i.e. S_status = 'A') in it ( i.e. more the two subscribers in same bill). select s.cus_id from subsc s where exists (select 1 from bill where bill_no = s.cus_id and b_status = 'O') and s_status = 'A' group by s.cus_id having count(sub_no) = 2 Problem : The above query will give the cus_id (or rather bill_no) which are in open status (b_status ='O) and which are having TWO ACTIVE Subscribers (s_status ='A') in it. However, this query will also lists the cus_id/bill_no which are having more than TWO subscribers in it (but only two subscriber will be in Active status (s_status = 'A') and the others will be in s_status = 'C' or s_status = 'S'. Help needed: I want to write a query which will fetch ONLY the cus_id/bill_no which are in open status (b_status ='O') and which are having ONLY TWO ACTIVE subscribers (s_status ='A') in it. B--> If I include the sub_no in the above query then NO row are returned. select s.cus_id, s.sub_no from subsc s where exists (select 1 from bill where bill_no = s.cus_id and b_status = 'O') and s_status = 'A' group by s.cus_id, s.sub_no having count(sub_no) = 2 Help needed: I want to modify the above query which will fetch ONLY the cus_id/bill_no which are in open status (b_status ='O') and which are having ONLY TWO ACTIVE subscribers (s_status ='A') in it ALONG with the sub_no. Thanks a lot in advance. Regards, Nitin

2404