Interview Questions

Q:

How To Open Outlook Explorer in VB Code?

Answer

Once can use the Shell function to call any Aplication in VB 6.0. For Outlook Express one can use, Shell (msimn.exe)

Report Error

View answer Workspace Report Error Discuss

0 2884
Q:

What do you mean by stack unwinding?

Answer

Stack unwinding is a process of calling all destructors for all automatic objects constructed at run time when an exception is thrown. Destructors are called between the places where the exception was thrown and where it is caught.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

0 2882
Q:

Explain 5-4-3 rule

Answer

In a Ethernet network, between any two points on the network, there can be no more than five network segments or four repeaters, and of those five segments only three of segments can be populated.

Report Error

View answer Workspace Report Error Discuss

1 2880
Q:

Where SQL server user names and passwords are stored in SQL server?

Answer

They get stored in System Catalog Views sys.server_principals and sys.sql_logins.

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

0 2879
Q:

What is Catalog Manager? How to move reports and dashboards using Catalog Manager?

Answer

Catalog Manager supports command line options.


 


To move reports and dashboards, we need to use some general syntax using catalog manager.


 


e.g:


catalogmanager -online/offline


-cmd {report | replace | export}


{command line options}


In extra, by keeping it online, This will automatically open up the catalog 


manager without having the need to enter the connection details every time.

Report Error

View answer Workspace Report Error Discuss

0 2876
Q:

Which namespaces in .NET are used for XML?

Answer

The System.xml.dll is the real physical file, which contains the XML implementation. Some of the other namespaces that allow .NET to use XML are as follows:


    


      =>  System.Xml

      =>  System.Xml.Schema

      =>  System.Xml.XPath

      => System.Xml.Xsl

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

1 2873
Q:

Have you ever worked in a call center before? If so, how long did you work there?

Answer

The purpose of this question is to see if you already have some experience of working at a call center. If so, tell the interviewer about your experiences and what you learnt there. If you do not have a work experience, don’t panic, stay calm and say “I don’t have a first hand experience of working at a call center but this is what I know about them and I look forward to work for one.” 

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

4 2870
Q:

How do you destroy a particular or all Sessions?

Answer

<?php
session_start();
// store session data
$_SESSION['views']=1;
unset($_SESSION['views']); // If you wish to delete some session data, you can use the unset()
session_destroy(); // You can also completely destroy the session by calling the session_destroy() function. session_destroy() will reset your session and you will lose all your stored session data.
?>

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 2869