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

MIT Interview Questions
Questions Answers Views Company eMail

What are the Factors Affecting Transpiration ?

5 43956

What is the difference between (with what type of material they are made of)RAM cells and Cache memory cells

2 4311

WHY IS MAGNETIC NEEDLE POINTD?

1 3044

hi!how to write test cases on SRS?tell me any example which type of certification is usefull for less then 1 yr exp. people in testing?

2 9854

Futures of COM

3 7213

What is Royalty Accounting? How it calculate? Give some example.

13 48618

What is the difference between phase current & line current, how both can be measured in star and delta system

9 80725

Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.

12 25902

WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT from an NIIT CENTRE??

21 31617

What do you consider your most important achievements of the past year

3 94737

What are the types of windings present in the ceiling fan? What winding will be effective first when we started the fan?What are the resistance and inductance ratios comparatively at the initial speed and full speed of the fan?

2437

what is the purpose of TCP ?

8 22962

what is difference between internet and Internet?

12 13283

If i have faced a trial in home country but was later acquitted and found not guilty of the offence, so should i mention this matter at time of visa filing or not. If i dont mention it and obtain a Police clearance certificate, can this matter resurface at time of applying for Permanent residency in New Zealand?

1862

What is a friend function & its advantage?

1 3719

Post New MIT Interview Questions




Un-Answered Questions

using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1302


Can I use node js with php?

521


Is learning c# hard?

498


How do you remove lines from a table?

315


What is the use of now constructor in perl?

515






What are the advantages of jQuery?

473


What is ripple effect?

627


What is the difference between Java and C++?

604


How does output caching work in ASP.NET?

493


Explain in brief preliminaries of C/C++?

82


The partition of hive table has been modified to point to a new directory location. Do I have to move the data to the new location or the data will be moved automatically to the new location?

726


What is dojo toolkit?

5


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

1763


How to invoke Oracle Stored Procedure with Database Objects as IN/OUT?

576


What do you understand by xml-rpc?

348