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...




Scripts Interview Questions
Questions Answers Views Company eMail

?onStart' and 'onEnd' are events of what object(s)? A. Application only. B. Session only. C. Server only. D. Application and Session only. E. Application, Session, and Server.

1 4391

What must be installed on an IIS4 machine to use the CDONTS e-mail server object? A. FTP service B. SMTP service C. IIS administrator D. Exchange Server E. IPX/SPX protocol

1 4533

Which line of code would instantiate the Browser Capabilities component? A. objBrowser = Server.CreateObject("MSWC.BrowserType") B. Set objBrowser = Server.CreateObject("MSWC.BrowserType") C. var objBrowser = Server.CreateObject("MSWC.BrowserType") D. var objBrowser = CreateObject("MSWC.BrowserType") E. var objBrowser = Server.CreateObject("BrowserType")

1 5233

What is the Default ScriptTimeOut for Server Object? A. 20 Sec B. 30 Sec C. 60 Sec D. 90 Sec

1 4666

How many Max Cookies can we create in Server? A. 10 B. 20 C. 30 D. 40

TCS,

4 8655

What is ASP (Active Server Pages)?

2 4725

What are the advantages of using ASP?

1 4368

What is the difference between ASP and HTML?

9 33013

What is a Web Server?

2 4621

What is IIS?

2 4637

Which is the default Scripting Language of ASP (server- side)?

2 10699

Which is the default Scripting Language on the client side in ASP?

2 6627

What is Global.asa file?

1 4031

Where will you code OPTION EXPLICIT in an ASP application? WHY?

1 3864

What are Constants? How will you declare a constant?

1 3695


Un-Answered Questions { Scripts }

What are global variables? How are these variable declared and what are the problems associated with using them?

958


What are the decodeURI() and encodeURI()?

1043


In what way are proxyless calls different than the proxied calls in ajax?

928


What is servlet in javascript?

943


What are the lifecycle steps of React?

440


How ajax work ?

888


Explain Ajax polling?

1007


Define a dictionary object?

1103


What is the use of spread operator?

965


Explain about filter expression?

991


What is pipetransform interface?

824


What is change detection strategy in angular?

761


Suppose an array contains @arraycontent=(‘ab’, ‘cd’, ‘ef’, ‘gh’). How to print all the contents of the given array?

960


What is React.PropTypes?

452


What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }

3332