<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Date

What is Maximum Pool Size in ADO.NET Connection String
What is Maximum Pool Size in ADO.NET Connection String?
2007-10-24, 5308👍, 0💬

What are resource files and how do we generate resource files
What are resource files and how do we generate resource files? Resource files are files which contain program resources. Many programmers think resource files for only storing strings. But you can also store bitmaps, icons, fonts, wav files in to resource files. In order to generate resource file yo...
2007-11-01, 5304👍, 0💬

Can you explain the star schema for OLAP
What are fact tables and dimension tables in OLAP ? The dimensions and measures are physically represented by a star schema. Dimension tables revolve around fact table. A fact table contains a column for each measure as well as a column for each dimension. Each dimension column has a foreign-key rel...
2007-10-25, 5301👍, 0💬

What is Modeling and why UML ?
What are advantages of using UML? As the name suggest UNIFIED MODELING LANGUAGE. Modelling has been around for years, not only in software field but also in other trades like civil, mechanical etc. Example in civil engineering drawing the main architecture built of diagram is a model by itself. Mode...
2007-10-26, 5298👍, 0💬

How to use a checkbox in a datagrid
How can I track event in checkbox which is one of the columns of a datagrid ? Note: - This is normally asked when the interviewer want to see that have you really worked practically on a project. Following are the steps to be done :- 1. In ASPX page you have to add Itemtemplate tag in datagrid. &...
2007-10-24, 5296👍, 0💬

Do you know Use Case points
Do you know Use Case points? In CD we have a complete free PDF tutorial of how to prepare software quotation. It has all the estimation technology that today’s software industry uses.
2007-10-30, 5295👍, 0💬

What are Daemon threads and how can a thread be created as
What are Daemon threads and how can a thread be created as Daemon? Daemon thread's run in background and stop automatically when nothing is running program. Example of a Daemon thread is "Garbage collector". Garbage collector runs until some .NET code is running or else its idle. You can make a thre...
2007-10-22, 5291👍, 0💬

What is denormalization
What is denormalization ? Denormalization is the process of putting one fact in numerous places (its vice-versa of normalization).Only one valid reason exists for denormalizing a relational design - to enhance performance.The sacrifice to performance is that you increase redundancy in database.
2007-10-25, 5287👍, 0💬

What is XML
What is XML? XML (Extensible markup language) is all about describing data. Below is a XML which describes invoice data. &lt;?xml version="1.0" encoding="ISO-8859-1"?> &lt;invoice> &lt;productname>Shoes &lt;qty>12 &lt;totalcost>100 &lt;discount>10 &lt;/invoice> An XML tag...
2007-10-31, 5283👍, 0💬

Can you give a practical implementation of FAÇADE patterns
Can you give a practical implementation of FAÇADE patterns? Façade pattern sits on the top of lot of subsystems and makes access easy to interfaces of these subsystems. Basic purpose of Façade is to make interfacing between many modules and classes manageable. Above is a simple live application of ...
2007-10-24, 5282👍, 0💬

Can you compare ASP.NET sessions with classic ASP
Can you compare ASP.NET sessions with classic ASP? ASP.NET session caches per user session state. It basically uses gHttpSessionStateh class. Following are the limitations in classic ASP sessions :- ã ASP session state is dependent on IIS process very heavily. So if IIS restarts ASP session vari...
2007-10-23, 5276👍, 0💬

What is one way operation
What is one way operation? IsOneWay equal to true ensures that the client does not have to wait for the response. So methods marked by IsOneWay to true should always return void. In this the caller does not get anything in return so it is called as one-way communication. In order to understand one w...
2007-11-04, 5275👍, 0💬

What is SIX sigma
What is SIX sigma? Sigma means deviation in Greek language. Deviation means how much variations exist in a set of data. For instance let’s say in a software maintenance project out of 100 defects 68 defects are rectified to the mark and remaining bounce back that means your bug fixing process is on ...
2007-10-30, 5275👍, 0💬

What are the steps to create a webservice and consume it
What are the steps to create a webservice and consume it ? Note :- For this question this book will make a attempt by creating a simple webservice and explaining steps to acheive it. A simple webservice will be created which takes two number and gives addition result of the two number. In CD sample ...
2007-10-23, 5275👍, 0💬

Two of your resources have conflicts between them how would you sort it out
You have people in your team who do not meet there deadlines or do not perform what are the actions you will take ? In such kind of question they want to see your delegation skills. The best answer to this question is a job of a project manager is managing projects and not problems of people, so I w...
2007-10-30, 5274👍, 0💬

What is ManualResetEvent and AutoResetEvent
What is ManualResetEvent and AutoResetEvent ? Threads that call one of the wait methods of a synchronization event must wait until another thread signals the event by calling the Set method. There are two synchronization event classes. Threads set the status of ManualResetEvent instances to signaled...
2007-10-22, 5273👍, 0💬

What is the difference between DELETE TABLE and TRUNCATE TABLE commands
What is the difference between DELETE TABLE and TRUNCATE TABLE commands? Following are difference between them ? DELETE TABLE syntax logs the deletes thus make the delete operation slow. TRUNCATE table does not log any information but it logs information about deallocation of data page of the table ...
2007-10-25, 5270👍, 0💬

What is difference between dataset and datareader
What is difference between dataset and datareader ? Following are some major differences between dataset and datareader ? DataReader provides forward-only and read-only access to data, while the DataSet object can hold more than one table (in other words more than one rowset) from the same data sour...
2007-10-24, 5268👍, 0💬

Can you explain collation sequence in sql server
Can you explain collation sequence in sql server? First let’s define collation. Collation sequences are set of rules which determine how the data is sorted and compared. Sorting rules can be defined with options with case-sensitivity, accent marks, kana character types and character width. Case sens...
2007-11-02, 5264👍, 0💬

What precautions do we need to take while deploying satellite assemblies
What precautions do we need to take while deploying satellite assemblies? When we deploy the assembly, the folder structure has to very organized. Below table shows how the folder structure should be organized. MainFolder is the main application folder. All satellite assemblies should be deployed in...
2007-11-01, 5262👍, 0💬

What are the main components of WCF
What are the main components of WCF? We need to define three main components in WCF: Service class. Hosting environment End pointWe need to define three main components in WCF:- Service class. Hosting environment End point
2007-11-04, 5257👍, 0💬

What is the use of OLAP
What is the use of OLAP ? OLAP is useful because it provides fast and interactive access to aggregated data and the ability to drill down to detail.
2007-10-25, 5256👍, 0💬

How can we use Culture Auto in project
How can we use Culture Auto in project? We will make a simple login screen which we will try to use for English as well as Greek. The login screen will display English settings when an English user logs in and Greek Settings when a Greek user logs in. So below are the steps to start with. In the abo...
2007-11-01, 5245👍, 0💬

Can we post and access view state in another application
Can we post and access view state in another application? You can post back to any page and pages in another application, too. But if you are posting pages to another application, the PreviousPage property will return null. This is a significant restriction, as it means that if you want to use the v...
2007-10-23, 5242👍, 0💬

<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Date