Save info   Get password
Home Submit your blog Edit Account Rules RSS-Archive Contact
  • Interview Questions blog

    Owner: Interview Questions
    URL: http://www.interviewquestion.us/
    Join Date: Sat, 04 Aug 2007 14:20:20 -0500
    Rating:0
    Site Description:
    Interview Questions - Technical Interviews Tech Interview Questions |.Net Interview Questions | Java Interview questions | Testing Tools Interview questions | Database Interview Questions | Resume Writing | Resume Tips | Testing tools Interview question
    Site statistics: Click here



Articles : Microsoft Learning Announces Prometric as Exam Delivery Provider (Worldwide)
2007-07-24 08:06:00
We’re pleased to announce that Prometric will be the exam delivery provider for Microsoft professional certification and Microsoft Dynamics exams. Microsoft Learning is confident that this model will allow us to provide you with a better testing experience. We anticipate increased speed to market for exam innovations, improved consistency in your test-taking environment, and excellent global coverage. Pearson VUE will discontinue selling Microsoft professional certification exams after August 31, 2007, but will continue to administer Microsoft professional certification exams purchased through December 31, 2007. We know many of you will have questions on what this means to you and your plans for certification testing. Microsoft Learning and Prometric will take every step to minimize any inconvenience to you during this transition. We encourage you to: • Learn more. • Read the Prometric press release.
Read more: Articles , Delivery , Provider , Worldwide

Articles : Hibernate and NHibernate
2007-07-24 08:04:00
Hibernate is an ORM [Object-Relational Mapping] service used to develop persistent Java classes. On the back of NHibernate, it’s popularity has spread to the .NET space as well. This has proved of special interest in IT shops that are working toward interoperability strategies that leverage the skills of developers who can handle both .NET and Java problems. NHibernate is a port of Hibernate Core for Java to the .NET Framework. It handles persisting plain .NET objects to and from an underlying relational database. Given an XML description of your entities and relationships, NHibernate automatically generates SQL for loading and storing the objects. Optionally, you can describe your mapping metadata with attributes in your source code. NHibernate supports transparent persistence, your object classes don’t have to follow a restrictive programming model. Persistent classes do not need to implement any interface or inherit from a special base class. This makes it possible to d
Read more: Articles , Hibernate

Articles : .NET Dashboard Suite 3.0
2007-07-24 08:03:00
Perpetuum Software LLC has released version 3.0 of .NET Dashboard Suite for Windows Forms apps in the field of information acquisition and comprehension. With .NET Dashboard Suite, users have a pack of fully compatible components for general and specific data visualization. One of the main benefits of the dashboards is the ability to display data in various forms. .NET Dashboard Suite provides a complete set of data visualization tools: high-resolution ready-made gauges, charts, graphs, diagrams and much more. It allows the creation of non-standard controls based on existing ones, or even designing from scratch, through improved designer; some properties are available not only in the property grid but also from the designer toolbar. The unique architecture of the product makes possible the ability to combine objects arbitrarily, allowing the creation of control configurations that are difficult or impossible to build using other approaches. You can create even the most complicated d
Read more: Articles

Why to use Interfaces Whenever Possible in C#
2007-07-24 08:02:00
The .NET Framework contains both classes and interfaces. When you write routines, you will find that you probably know which .NET class you’re using. However, your code will be more robust and more reusable if you program using any supported interfaces instead of the class you happen to be working with at the time. Consider this code: private void LoadList (object [] items, ListBox l) {for (int i = 0; i l.Items.Add (items[i].ToString ());} This function loads a ListBox from an array of any kind of objects. The code is limited to an array only. Suppose that later you find that objects are stored in a database, or in some other collection. You need to modify the routine to use the different collection type. However, had you written the routine using the ICollection interface, it would work on any type that implements the ICollection interface: private void LoadList (ICollection items, ListBox l) {foreach (object o in items)l.Items.Add (o.ToString ());} The ICollection interface is
Read more: Interfaces , Whenever , Possible

C# : foreach loop much faster than normal for loop
2007-07-24 07:59:00
Using a foreach loop will be substantially faster than a for loop when accessing the items in a RichTextBox’s Lines property. For example, the following code loads a RichTextBox with 1000 lines of text and accesses each line from the Lines property. On a 333 MHz Pentium II machine, the for-loop code (ForLoopButton_Click) takes ~25 seconds and the foreach code (ForEachLoopButton_Click) takes ~0.01 seconds. …private void Form1_Load(object sender, System.EventArgs e){Cursor.Current = Cursors.WaitCursor;StringBuilder Buffer = new StringBuilder(”");for (int i = 1; i {if (i > 1){Buffer.Append(Environment.NewLine);}Buffer.Append(”This is line number ” + i.ToString());}TheRichTextBox.Text = Buffer.ToString();Cursor.Current = Cursors.Arrow;} private void ForLoopButton_Click(object sender, System.EventArgs e){Cursor.Current = Cursors.WaitCursor;int Len = 0;int Start = Environment.TickCount;for (int i = 0; i {Len += TheRichTextBox.Lines[i].Length;}int ElapsedTime


Windows Forms Interview Question with Answer
2007-07-24 07:51:00
How would you create a non-rectangular window, let’s say an ellipse? Create a rectangular form, set the TransparencyKey property to the same value as BackColor, which will effectively make the background of the form transparent. Then set the FormBorderStyle to FormBorderStyle.None, which will remove the contour and contents of the form. What’s the difference between Windows DefaultLocation and WindowsDefaultBounds? WindowsDefaultLocation tells the form to start up at a location selected by OS, but with internally specified size. WindowsDefaultBounds delegates both size and starting position choices to the OS. My progress bar freezes up and dialog window shows blank, when an intensive background process takes over Yes, you should’ve multi-threaded your GUI, with taskbar and main form being one thread, and the background process being the other. or Application.DoEvents can be used also How do you retrieve the customized properties of a .NET application from XML .config file? Init
Read more: Forms , Question

JavaScript Interview Question
2007-07-19 04:18:00
1.Can javascript code be broken in different lines?2.What is a prompt box?3.What is the difference between an alert box and a confirmation box?4.How to access an external javascript file that is stored externally and not embedded?5.Is a javascript script faster than an ASP script?6.What does the “Access is Denied” IE error mean?7.How to set a HTML document’s background color?8.What can javascript programs do?9.Where are cookies actually stored on the hard disk?10.How to detect the operating system on the client machine?11.How to read and write a file using javascript?12.What is JavaScript ?13.What is jrunscript?14.Is it possible to set session variables from javascript?15.What is Client side and server side scripting?16.What is a Java Bean?17.Why do you Canvas ?18.What is the difference between this() and super()?19.How do you get the value of a combo box in Javascript?20.How can I call a Java method from Javascript?21.What’s relationship between JavaScript and ECMAScript?22.Wha
Read more: Question

MBA Interview Questions
2007-07-19 04:06:00
·Discuss your career progression. ·Give examples of how you have demonstrated leadership inside and outside the work environment. ·What do you want to do (in regard to business function, industry, location)? ·Why the MBA? Why now? ·Describe an ethical dilemma faced at work? ·Describe your career aspirations? ·What would you do if not accepted? ·What are your long- and short-term goals? Why? ·Why are you applying to business school? ·Why does this school appeal to you? ·What is an activity you are involved in? Why is it important to you? ·Talk about experiences you have had at work. ·Why are you interested in a general MBA program? ·Why did you choose your undergraduate major? ·Discuss yourself. ·What contributions would you make to a group? ·Name three words or phrases to describe yourself to others. ·What is most frustrating at work? ·How would co-workers describe you? ·Describe a typical work day. ·Have you worked in a team environment? What were your contribut


MBA Admissions Interview Tips
2007-07-19 04:04:00
General1.Be yourself; allow your personality to shine. 2.Respond to questions honestly and candidly. 3.Understand what is asked of you. Feel free to ask for a repeat if you don’t clearly understand a question. 4.Avoid the “smart-aleck” reply or the clever-flip demeanor (you know, the effort to be cute, snappy alert, falsely witty). 5.Do your homework on the school and program. 6.Be on time. Look nice. 7.Examine yourself. Know something about the MBA and how it can aid you. Specific1.Discuss special interests and ask how the school may help you to pursue them. For example, one representative particularly enjoyed talking to a young lady about her interest in fund-raising management. 2.Ask about faculty research and interests, especially in areas that concern you. 3.Review with representatives your work background, highlighting the benefits you received from the experiences. 4.Know something about the MBA degree and what it can do for you. Explore the possibilities


Visual Basic Frequently Asked Questions
2007-07-16 14:15:17
1. Which controls can not be placed in MDI ? 2. List out controls which does not have events 3. Which property of textbox cannot be changed at runtime. What is the max size of textbox? 4. How many system controls are available 5. ___,_____ and ____ container objects. 6. ___ Property is to compress a image in image control. 7. ___,___ and __ are difference between image and picture controls. 8. To.set the command button for ESC ___ Property has to be changed. 9. Is it possible to set a shortcut key for label. 10. What is the default property of datacontrol. 11.___,__,___ are the type of combo box? 12.__ no of controls in form. 13.OLE is used for _______ 14.What is the need of tabindex property is label control. 15.___ is the control used to call a windows application. 16.Clear property is available in ____,___ control. 17.___ Property is used to count no. of items in a combobox. 18.___ is a property to resize a label control according to your caption. 19.Which controls have refresh meth
Read more: Visual , Basic , Visual Basic

Assembly In Microsoft.Net
2007-08-05 05:47:00
What is an assembly in .NET Framework?An assembly is the primary building block of a .NET Framework application. It is a collection of functionality that is built, versioned, and deployed as a single implementation unit (as one or more files). All managed types and resources are marked either as accessible only within their implementation unit, or as accessible by code outside that unit.Assemblies are self-describing by means of their manifest, which is an integral part of every assembly. The manifest: What is assembly manifest?Every assembly, whether static or dynamic, contains a collection of data that describes how the elements in the assembly relate to each other. The assembly manifest contains this assembly metadata. An assembly manifest contains all the metadata needed to specify the assembly’s version requirements and security identity, and all metadata needed to define the scope of the assembly and resolve references to resources and classes. The assembly manifest can be
Read more: Assembly , Microsoft

DOTNET Remoting interview Questions
2007-08-05 05:43:00
What’s a Windows process?It’s an application that’s running and had been allocated memory. What’s typical about a Windows process in regards to memory allocation?Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or a bunch of other applications down. Explain what relationship is between a Process, Application Domain, and Application?A process is an instance of a running application. An application is an executable on the hard drive or network. There can be numerous processes launched of the same application (5 copies of Word running), but 1 process can run just 1 application. What are possible implementations of distributed applications in .NET?.NET Remoting and ASP.NET Web Services. If we talk about the Framework Class Library, noteworthy classes are in System.Runtime.Remoting and System.Web.Services. What are the consideration in deciding
Read more: interview

6 things you must know before going to Interview
2007-08-19 00:52:35
1. What are your skill sets and how do they apply to the job? Almost 80 per cent of the candidates cannot identify and/ or describe desirable skills. A typical question is, “What are your three greatest strengths?” Be ready with answers that include an example or brief experience to illuminate your point. Use specific examples to highlight your accomplishments. Explicit numbers, results and outcomes give a better description of your accomplishments than subjective statements. You could talk about your action-oriented nature helped the company meet a client-imposed deadline in your last job. 2. Are you a problem solver? Again, 90 per cent candidates cannot answer ‘problem’ questions. You should be able to tell the interviewer why they should hire you and what the company will miss out on if they do not hire you. Show your ability to think logically and demonstrate problem-solving capabilities by asking questions and analyzing the information given to you. 3. Have
Read more: things

Job Interview Tips
2007-08-19 00:45:30
Here are a few interview tips to help you make a great impression on the person who interviews you. 1 . Market your skills and related experience in the field that you are applying for. Be sure to do it in a way that is positive, but not ****y or aggressive. 2 . Research the company before your interview. It’s a great way to know where you would fit into the organization. It also lets the employer know that you really want to be a part of the company. 3 . Prepare answers to common interview questions ahead of time, and practice saying them, so you aren’t stumped during the interview. 4 . Dress for success, in the manner you would dress for the position you’re seeking. 5 . Bring a list of your own questions with you in a folder with the company’s name on it, so that you don’t forget them. You should keep your extra resumes in there too. 6 . Be a good listener and focus. Some job seekers talk too much during interviews. 7 . Be prepared to describe your weakn
Read more: Job Interview

Assembly In Microsoft.Net
2007-08-05 05:47:00
What is an assembly in .NET Framework?An assembly is the primary building block of a .NET Framework application. It is a collection of functionality that is built, versioned, and deployed as a single implementation unit (as one or more files). All managed types and resources are marked either as accessible only within their implementation unit, or as accessible by code outside that unit.Assemblies are self-describing by means of their manifest, which is an integral part of every assembly. The manifest: What is assembly manifest?Every assembly, whether static or dynamic, contains a collection of data that describes how the elements in the assembly relate to each other. The assembly manifest contains this assembly metadata. An assembly manifest contains all the metadata needed to specify the assembly’s version requirements and security identity, and all metadata needed to define the scope of the assembly and resolve references to resources and classes. The assembly manifest can be
Read more: Assembly , Microsoft

DOTNET Remoting interview Questions
2007-08-05 05:43:00
What’s a Windows process?It’s an application that’s running and had been allocated memory. What’s typical about a Windows process in regards to memory allocation?Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or a bunch of other applications down. Explain what relationship is between a Process, Application Domain, and Application?A process is an instance of a running application. An application is an executable on the hard drive or network. There can be numerous processes launched of the same application (5 copies of Word running), but 1 process can run just 1 application. What are possible implementations of distributed applications in .NET?.NET Remoting and ASP.NET Web Services. If we talk about the Framework Class Library, noteworthy classes are in System.Runtime.Remoting and System.Web.Services. What are the consideration in deciding
Read more: interview

Articles : Microsoft Learning Announces Prometric as Exam Delivery Provider (Worldwide)
2007-07-24 08:06:00
We’re pleased to announce that Prometric will be the exam delivery provider for Microsoft professional certification and Microsoft Dynamics exams. Microsoft Learning is confident that this model will allow us to provide you with a better testing experience. We anticipate increased speed to market for exam innovations, improved consistency in your test-taking environment, and excellent global coverage. Pearson VUE will discontinue selling Microsoft professional certification exams after August 31, 2007, but will continue to administer Microsoft professional certification exams purchased through December 31, 2007. We know many of you will have questions on what this means to you and your plans for certification testing. Microsoft Learning and Prometric will take every step to minimize any inconvenience to you during this transition. We encourage you to: • Learn more. • Read the Prometric press release.
Read more: Articles , Delivery , Provider , Worldwide

Articles : Hibernate and NHibernate
2007-07-24 08:04:00
Hibernate is an ORM [Object-Relational Mapping] service used to develop persistent Java classes. On the back of NHibernate, it’s popularity has spread to the .NET space as well. This has proved of special interest in IT shops that are working toward interoperability strategies that leverage the skills of developers who can handle both .NET and Java problems. NHibernate is a port of Hibernate Core for Java to the .NET Framework. It handles persisting plain .NET objects to and from an underlying relational database. Given an XML description of your entities and relationships, NHibernate automatically generates SQL for loading and storing the objects. Optionally, you can describe your mapping metadata with attributes in your source code. NHibernate supports transparent persistence, your object classes don’t have to follow a restrictive programming model. Persistent classes do not need to implement any interface or inherit from a special base class. This makes it possible to d
Read more: Articles , Hibernate

Articles : .NET Dashboard Suite 3.0
2007-07-24 08:03:00
Perpetuum Software LLC has released version 3.0 of .NET Dashboard Suite for Windows Forms apps in the field of information acquisition and comprehension. With .NET Dashboard Suite, users have a pack of fully compatible components for general and specific data visualization. One of the main benefits of the dashboards is the ability to display data in various forms. .NET Dashboard Suite provides a complete set of data visualization tools: high-resolution ready-made gauges, charts, graphs, diagrams and much more. It allows the creation of non-standard controls based on existing ones, or even designing from scratch, through improved designer; some properties are available not only in the property grid but also from the designer toolbar. The unique architecture of the product makes possible the ability to combine objects arbitrarily, allowing the creation of control configurations that are difficult or impossible to build using other approaches. You can create even the most complicated d
Read more: Articles

Why to use Interfaces Whenever Possible in C#
2007-07-24 08:02:00
The .NET Framework contains both classes and interfaces. When you write routines, you will find that you probably know which .NET class you’re using. However, your code will be more robust and more reusable if you program using any supported interfaces instead of the class you happen to be working with at the time. Consider this code: private void LoadList (object [] items, ListBox l) {for (int i = 0; i l.Items.Add (items[i].ToString ());} This function loads a ListBox from an array of any kind of objects. The code is limited to an array only. Suppose that later you find that objects are stored in a database, or in some other collection. You need to modify the routine to use the different collection type. However, had you written the routine using the ICollection interface, it would work on any type that implements the ICollection interface: private void LoadList (ICollection items, ListBox l) {foreach (object o in items)l.Items.Add (o.ToString ());} The ICollection interface is
Read more: Possible , Interfaces , Whenever

C# : foreach loop much faster than normal for loop
2007-07-24 07:59:00
Using a foreach loop will be substantially faster than a for loop when accessing the items in a RichTextBox’s Lines property. For example, the following code loads a RichTextBox with 1000 lines of text and accesses each line from the Lines property. On a 333 MHz Pentium II machine, the for-loop code (ForLoopButton_Click) takes ~25 seconds and the foreach code (ForEachLoopButton_Click) takes ~0.01 seconds. …private void Form1_Load(object sender, System.EventArgs e){Cursor.Current = Cursors.WaitCursor;StringBuilder Buffer = new StringBuilder(”");for (int i = 1; i {if (i > 1){Buffer.Append(Environment.NewLine);}Buffer.Append(”This is line number ” + i.ToString());}TheRichTextBox.Text = Buffer.ToString();Cursor.Current = Cursors.Arrow;} private void ForLoopButton_Click(object sender, System.EventArgs e){Cursor.Current = Cursors.WaitCursor;int Len = 0;int Start = Environment.TickCount;for (int i = 0; i {Len += TheRichTextBox.Lines[i].Length;}int ElapsedTime


Windows Forms Interview Question with Answer
2007-07-24 07:51:00
How would you create a non-rectangular window, let’s say an ellipse? Create a rectangular form, set the TransparencyKey property to the same value as BackColor, which will effectively make the background of the form transparent. Then set the FormBorderStyle to FormBorderStyle.None, which will remove the contour and contents of the form. What’s the difference between Windows DefaultLocation and WindowsDefaultBounds? WindowsDefaultLocation tells the form to start up at a location selected by OS, but with internally specified size. WindowsDefaultBounds delegates both size and starting position choices to the OS. My progress bar freezes up and dialog window shows blank, when an intensive background process takes over Yes, you should’ve multi-threaded your GUI, with taskbar and main form being one thread, and the background process being the other. or Application.DoEvents can be used also How do you retrieve the customized properties of a .NET application from XML .config file? Init
Read more: Forms , Question

Political GD Topics
2007-08-23 00:20:58
1. reserving seats for women in Panchayat has not only been a farce but has distracted from developing a more genuine voice of women. 2. Have the nuclear tests of 1998 benefited or harmed India? 3. Voters, not, political parties are responsible for the criminalization of politics. 4. The voters are required to be well informed and educated about their candidates so that they can elect the right aspirant by their own assessment. 5. India should go for the presidential form of democracy.


Economic GD Topics
2007-08-23 00:18:37
1. in our economic matters, there is an excessive tendency towards the thinking rather than doing. 2. Every cloud has a silver lining 3. Can the economy achieve an 8 percent growth rate?. 4. is disinvestment really that good for India or is a rethink in order? 5. Are co-operatives relevant in todays globalizing environment? 6. Foreign aid is a dangerous drug that can stimulate in small doses but become fatally addictive in larger doses. 7. Modern day sport in industrialised society is an industry, as anything else. 8. Government should clean its own hands before pointing finger at the private sector for corruption. 9. is the NPA ordinance too harsh? 10. Reforms have to grow up. 11. The future lies with glocalisation . 12. Is the consumer really the king in India?. 13. Globalisation versus nationalism 14. Conditional access system for cable TV watchers: boon or bane? 15. If India is poorly governed, the reason is that we have designed our system of governance for protecting, if not enco
Read more: Economic

Creative GD Topics
2007-08-23 00:15:04
1.The Wheel is Turning Round and Round 2.If I was the Finance Minister/Prime Minister 3.There is no right way to do a wrong thing 4.Group Task: How can we have Mount Everest in India? 5.Do Beauty and Brains Go Together? 6. When I woke up in the morning I saw… 7.A ship docked in harbor cannot face the storms 8.Up the Down Staircase 9.Just as we have smoke free zones, we should have child free zones 10.Marriage is a social trap


Management GD Topics
2007-08-23 00:07:21
1. Is management an art or a science? 2. The Rush for MBA is really a rush for big money 3. Ethics in Business are just a passing fashion 4. The objective of Management is to maximize profits 5. Do professional managers have a chance in our family run businesses? 6. The Internet is an exercise in hype 7. Is an MBA necessary to succeed in life? 8. Family owned business vs professionally run businesses 9. Smaller businesses and start-ups have more scope for professional growth. 10. Dot com or doubt com?


Social GD Topics
2007-08-23 00:05:26
1.Are Big Dams Necessary? 2.Films are corrupting the Indian Youth 3.A Gandhian State selling liquor is an anomaly 4.Bride burning and dowry may look bad, but are an integral part of India. 5.Our Culture is Decaying 6.We are not serious about saving Wildlife/Environment 7.The education system needs serious reforms 8.The impact of MTV on our psyche 9.Showing Violence and Crimes should not be allowed in films and on television. 10. Let us legalize gambling 11. The Internet chains have come on the wings of science and technology but are no less restrictive for all that. 12. Secularism has become a tool to justify the wrongs done by the minorities. 13. Media is a mixed blessing/How ethical is media? 14. To fight AIDs, stop being coy about sex education. 15. What should India strive for- Westernization or modernization?
Read more: Social

Current GD Topics
2007-08-22 23:53:52
1.A Unipolar World spells disaster for underdeveloped countries like India. 2. Is Globalisation Really Necessary? 3. What shall we do about our ever-increasing Population? 4. Corruption is the price we pay for Democracy. 5. Foreign Television Channels are destroying our culture. 6. What India needs is a Dictatorship. 7. With media publishing and telecasting trivia, censorship is the need of the hour. 8. Kaun Banega Krorepati is less about knowledge but more about money and personality. 9. Beauty contests degrade womanhood 10.The rise of regional blocs threatens independent nations like India 11.Six billion and one bronze! 12. Is dependence on computers a good thing? 13.Should the public sector be privatised? 14. China and India are similar nations with contrasting ways 15.Is India a Soft Nation? 16.Value based politics is the need of the hour 17.Religion should not be mixed with politics 18.How to deal with high oil prices 19.Our cricketers are not to blame for match fixing 20.Why cant
Read more: Current

Hot GD Topics
2007-08-22 23:52:41
1. How to deal with international terrorism. 2. Should we pursue our policy of dialogue with Pakistan? 3. Is peace and non-violence outdated concepts?


Satyam GD Probables
2007-08-22 23:50:31
1. US war on iraq-justified or not. 2. Role of UN in peacekeeping. 3. Position of Women in India compared to other nations. 4. Environment managements. 5. Is China better than India in software. 6. Should SONIA Gandhi be made the PM 7. BPOs in INDIA 8. Govt contribution to IT 9. will punch lines rule the Advt 10. prematurity sex 11. is china a threat to Indian industry 12. India or west , which is the land of opportunities 13. water resources should be nationalized 14.”BALANCE BETWEEN PROFESSIONALISM AND FAMILY” 15. Effect of cinema on Youth 16. Education in India compared to Foreign nations 17. Is it necessary to ban COCO COLA in India. 18. What is the effect of movies on youth? (Is it good or bad) 19. Are studies more beneficial in India or in Abroad. 20.”U N’s peace activities” and “America’s war on Iraq”. 21.”Environment-Who’s Responsibility”. 22.Is China a threat to the Indian software industry. 23.Role of UN in Peace k
Read more: Satyam

Page 1 of 2 « < 1 2 > »
eXTReMe Tracker