Hi,
Can any one update the below mentioned interview questions. plz.
1. We will say that a triple in a string is a char appearing three times in a row.
Return the number of triple in the given string. The triple may overlap. (system task)
CountTriple("abcxxxabc")->1
CountTriple("xxxabyyyycd")->3
CountTriple("a")->0
2. In a page I have 10 asp controls, I want refresh only 5 asp particular controls(the 5 controls it contain tabs). How it is possible using Ajax?
3. In a static class How many constructors is there?
4.
table1
Emp_Id Salary
1 5000
2 6000
3 4000
table2
Emp_Id Dept
1 IT
2 Bpo
3 Testing
I want update the table1 column salary > 5000 and add +500 in table2 IT dept only.
O/p
Emp_Id Salary
1 5500
2 6000
3 4000
Karthik