GeekInterview.com
Series: Subject: Topic:

Microsoft Basics Interview Questions

Showing Questions 1 - 20 of 43 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

The three types of DAO dynaset,snapshot,table

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Sandhya.Kishan on: Apr 9th, 2012

The DAO types are
1.dynaset-type recordset,which results through a query.
2.table-type recordsets, it represents a table in a .MDB database.
3.Snapshot-type recordset,comprises of a static copy of a set of records.

What are the three ADO objects?? --connection,command, recordset

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Sandhya.Kishan on: Apr 9th, 2012

The objects of ADO are 1.connection object-It is used for ADOs connection to a data store via OLE DB. 2.command object-It helps in sending SQL queries to the provider through the CommandText property,...

Define query interface,adref,release

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Sandhya.Kishan on: Apr 9th, 2012

QueryInterface is used for determining if a known component supports a specific interface.It is a mechanism in COM (microsofts Component Object Model).It uses the current interface pointer ( IUnknown)...

In dHTML what is the difference between fontsize and font size ?? A: fontsize is a property, font size is a style

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Sandhya.Kishan on: Apr 9th, 2012

Font Size is the attribute of font tag in dhtml where as Fontsize is the property of font styles.

The three file types in NT ? Ntfs,macintosh(hpfs), fat

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Sandhya.Kishan on: Apr 9th, 2012

The file types in NT are
1.FAT 16
2.FAT32 and
3.NTFS

Two methods of retrieving SQL

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: G Sravan Kumar on: Aug 24th, 2011

There are two methods to retrieving Sql
1) Select statement.
2) Cursor.

Answered by: VRod on: Aug 27th, 2006

Is the question "Two Methods of retrieving using SQL"??

Answer -> SELECT statement, cursors

How do you declare an object in vbscript? Dim object

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: Crystal Sluka on: Jun 28th, 2011

when you have made your object, you have to make a variable for that objectyou have made an object and called it  newformnow you created a variable for your object calledvarformnow you have to wr...

Answered by: balaji on: Oct 7th, 2006

Hai,

Dim obj as new class-name()

What is marshalling

Asked By: Interview Candidate | Asked On: May 12th, 2005

Answered by nitin sharma on 2005-05-12 02:52:10: marshalling is the process of gathering data from one or more applications or non-contiguous sources in computer storage, putting the data pieces into a message buffer, and organizing or converting the data into a format that is prescribed for a particular...

Answered by: Modhumita on: Mar 21st, 2007

Marshalling is the process of packing/encapsulating the data when sending across the network so that the data gets transmitted without being lost. Marshalling is necessary bcoz the format in which data exists in a particular process may not be the same as existant in the network.

Answered by: balaji on: Oct 7th, 2006

Hai,

Marshalling is nothing but gathering or packaging the information into message for transferring across the network requird in distributed environment .

Sam file

Asked By: ausnsk | Asked On: Dec 26th, 2008

What is the use of sam file?What will you do if sam file is corrupted?

Answered by: bijesh780 on: Dec 4th, 2010

there are two ways to resolve this issue,1- rebbot the system ,use F8 and start with command prompt option ,go to c:windowsrepair  folder copy the sam file from there ,then go to C:WindowsSystem3...

Answered by: rpradipm on: Jan 13th, 2009

It stores administrator password

If its get corrupted attach the hard disk to another computer and replace.

What will happen when a new asssembly is put on an old one.

Asked By: punam mistree | Asked On: Sep 28th, 2007

Answered by: jsubha2009 on: Dec 4th, 2009

When new assembly is put on an old one the versioning of the assemblies take place.It happens in this order <Major Revision>,<Minor Revision>,<Revision>,<Build version>.For exa...

I have asked two times in there interviews that ,what is the top code in .Net, plz send me the answer.

Asked By: Prabahar | Asked On: Jun 10th, 2006

Answered by: rajkra on: Feb 9th, 2009

C# code is the top code .cs

Answered by: srinu on: Nov 29th, 2006

C# is the top code

How do you create virtual root in iis

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: digross1 on: Nov 3rd, 2008

To mark an existing virtual directory in InetpubWwwroot as a Web application using IISOpen IIS Manager and browse to the Default Web Site as shown in the previous procedures. Expand the Default Web Si...

Answered by: kalpit bhatt on: May 25th, 2006

To create a virtual directory by using IIS Manager1.In IIS Manager, expand the local computer, expand the Web Sites or FTP Sites folder, right-click the site or folder within which you want to create ...

What are the two tags for framesets

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: zeezee on: Jun 2nd, 2008

Answer #1<FRAMESET cols="33%,33%,33%">  <FRAMESET rows="*,200">      <FRAME src="contents_of_frame1.html">  &nbs...

Active server pages

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: zeezee on: Jun 2nd, 2008

(Active Server Page) A Web server technology from Microsoft that allows for the creation of dynamic, interactive sessions with the user. -An ASP is a Web page that contains HTML and embedded programmi...

Hi,, I have two user controls in my web form. When page loads I should view one of those controls. One button is also there in that page when I click that button then I should view other one. ...

Asked By: Ravi Majji | Asked On: Jun 5th, 2006

Answered by: whirlpool on: Dec 20th, 2007

Try using Page.loadControl(virtualpath)virtualpath=path of the2 nd user control.then add the user control to the placeholder control that u have declared on the formsomething like;protected void btn1_...

Answered by: rahul on: Aug 26th, 2006

If not mistaken i guss u should put 2 countrols in the page load and one in the form load.If my answer is wrong forgive me.

Rahul

What is iunknown and what are its three parts?

Asked By: Interview Candidate | Asked On: May 12th, 2005

Answered by: whirlpool on: Dec 20th, 2007

IUnknown is common interfacec supported by all COM objects.The 3 member functions are

1.QueryIntrface

2.Addref

3.Release.

Answered by: Nitin Sharma on: May 12th, 2005

The COM interface class from which all other interface classes are derived. This interface allows all COM objects to manage their own lifetime, ie, to release themselves from memory when they are no longer connected to any clients. 

What cursor type do you use to retrieve multiple recordsets?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: rajulanand on: Dec 11th, 2007

Explicit cursor can be used to retrieve and return the multiple records. Ref cursor also do the same job.

What is the tag code base and why do we use it?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Answered by: mcp111 on: Jul 23rd, 2007

CODEBASE indicates the path to the directory of the applet class. CODEBASE is used for telling how to find the class file when it is not in the same directory as the web page. Do not use CODE to indicate the path, use CODEBASE.

What is the difference between webservice and webapplication?

Asked By: veera kumar | Asked On: Feb 18th, 2006

Answered by: vipinkumar on: Jul 4th, 2007

Webservices can be implimented at any client or server place to make data secure because even programmer can not find that data while web services are used on server side. webservices use soap protocol while web application http protocol, 80% coding of banking is done by using webservices.

Answered by: ajay roy on: May 30th, 2006

web services are mechanism to acess remote programmeble logical unit by using http and xml combinly called SOAP(simple object access protocol)Soap has some methods to access programmeble application l...

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.