Wednesday, May 5, 2010

Hcl Dot net written test part 3

Hcl DotNet Written test ,Hyderabad

1) Remove spaces in a string

string str = " This is a subhash ";
       

2) steps for delegates creation and using

3)What is Private Constructor and Uses of Private Constructor

4) Diff b/w DLL and Exe

5) what is web.config,machine.config and app.config

6)sql query

Emp-->Empid,Ename,...   City--->Empid,CityName

Display the employees, where employee Living in more than one city



Please send   Your Interview Questions  to mail id :  nsubhash007@gmail.com

HCL Written Test Questions Part 1: Click Here

HCL Written Test Questions Part 2: Click Here 

1 comment :

  1. 1) Remove spaces in a string

    string str = " This is a subhash ";

    str = str.replace(" ","");

    ReplyDelete