Job Interview Questions and AnswersJob Interview Questions and AnswersThis blog contains most common interview questions from different fields,.net framework, ABAP interview Questions,ASP,ASP.net,ASP.net interview questions, C interview Questions, C language, C interview questions, employer interview questions, Intervi Articles
Dot Net Interview Questions - Part 6
2007-11-14 17:46:00 What’s different about switch statements in C#? No fall-throughs allowed. Unlike the C++ switch statement, C# does not support an explicit fall through from one case label to another. If you want, you can use goto a switch-case, or goto default. case 1: cost += 25; break; case 2: cost += 25; goto case 1; <!--[if ! More About: Questions , Interview , Part
Dot Net Interview Questions - Part 5
2007-11-14 17:43:00 Can you explain what inheritance is and an example of when you might use it? How can you write a class to restrict that only one object of this class can be created (Singleton class)? What are the access-specifiers available in c#? Private, Protected, Public, Internal, Protected Internal. Explain about Protected and protected internal, “internal” access-specifier? More About: Questions , Interview , Part
Dot Net Interview Questions - Part 4
2007-11-14 17:40:00 What is the new three features of COM+ services, which are not there in COM (MTS)?Is the COM architecture same as .Net architecture? What is the difference between them?Can we copy a COM dll to GAC folder?What is Pinvoke? Platform invoke is a service that enables managed code to call unmanaged functions implemented in dynamic-link libraries (DLLs), such as those in the More About: Questions , Interview , Part
Dot Net Interview Questions - Part 3
2007-11-14 17:37:00 What is the difference between CONST and READONLY? Both are meant for constant values. A const field can only be initialized at the declaration of the field. A readonly field can be initialized either at the declaration or in a constructor. Therefore, readonly fields can have different values depending on the constructor used. readonly int b; public X( More About: Questions , Interview , Part , Part 3
Dot Net Interview Questions - Part 2
2007-11-14 17:29:00 What are Satellite Assemblies? How you will create this? How will you get the different language strings? Satellite assemblies are often used to deploy language-specific resources for an application. These language-specific assemblies work in side-by-side execution because the application has a separate product ID for each language and installs satellite assemblies More About: Questions , Interview , Part
CCNA Interview Questions
2007-11-14 11:07:00 1 As system administrator, you type "debug ipx sap" and receive the following lines as part of the IOS response: type 0x4, "HELLO2", 199.0002.0003.0006 (451), 2 hops type 0x4, "HELLO1", 199.0002.0003.0008 (451), 2 hops What does "0x4" signify? A. That is a Get Nearest Server response. B. That it is a General query. C. That it is a General response. D. That it is a Get Nearest Server request. More About: Questions , Interview
J2ME Interview Questions
2007-11-14 05:26:00 What is 3G Third generation (3G) wireless networks will offer faster data transfer rates than current networks. The first generation of wireless (1G) was analog cellular. The second generation (2G) is digital cellular, featuring integrated voice and data communications. So-called 2.5G networks offer incremental speed increases. 3G networks will offer dramatically improved data transfer rates, More About: Questions , Interview
Networking Interview Questions
2007-11-14 04:40:00 1. What are 10Base2, 10Base5 and 10BaseT Ethernet LANs 10Base2—An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband signaling, with a contiguous cable segment length of 100 meters and a maximum of 2 segments. 10Base5—An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband signaling, with 5 continuous segments not More About: Questions , Networking , Interview , Workin
Dot Net Interview Questions - Part 1
2007-11-13 19:04:00 What is .NET Framework? The .NET Framework has two main components: the common language runtime and the .NET Framework class library. You can think of the runtime as an agent that manages code at execution time, providing core services such as memory management, thread management, and remoting, while also enforcing strict type safety and other forms of code More About: Questions , Interview , Part
PHP Interview Questions - Part 2
2007-11-13 19:01:00 62. How many tables will create when we create table, what are they? 3 tables will create when we create table. They are The '.frm' file stores the table definition. The data file has a '.MYD' (MYData) extension. The index file has a '.MYI' (MYIndex) extension, 63. What is the purpose of the following files having extensions 1) frm 2) MYD 3) MYI. What these files contains? In MySql, the More About: Questions , Interview , Part
Interview Tips
2007-11-13 11:38:00 Preparing for an interview * One of the most fundamental factors that contributes to the success of an interview is the time and quality of preparation made by you. * The degree of preparedness for an interview helps reduce the uncertainty and anxiety prior to the interview. * The amount of effort you wish to put into preparation is directly proportional to the importance of the interview. More About: Tips , Interview
Oracle Interview Questions - Part 12
2007-11-13 08:41:00 What is the advantage of a stored procedure over a database trigger ? We have control over the firing of a stored procedure but we have no control over the firing of a trigger. What is the maximum no. of statements that can be specified in a trigger statement ? One. Can views be specified in a trigger statement ? No What are the values of :new and :old in Insert/Delete/Update Triggers ? INSERT More About: Questions , Oracle , Interview , Part
Oracle Interview Questions - Part 11
2007-11-13 08:37:00 If the maximum record retrieved property of the query is set to 10 then a summary value will be calculated? Only for 10 records. What are the different objects that you cannot copy or reference in object groups? Objects of different modules Another object groups Individual block dependent items Program units. What is an OLE? Object Linking & Embedding provides you with the capability to More About: Questions , Oracle , Interview , Part
Oracle Interview Questions - Part 10
2007-11-13 08:11:00 What command would you use to create a backup control file? Alter database backup control file to trace. Give the stages of instance startup to a usable state where normal users may access it. STARTUP NOMOUNT - Instance startup STARTUP MOUNT - The database is mounted STARTUP OPEN - The database is opened What column differentiates the V$ views to the GV$ views and how? The INST_ID column which More About: Questions , Oracle , Interview , Part
Oracle Interview Questions - Part 9
2007-11-13 07:22:00 Does user exits supports DLL on MSWINDOWS ? YES . What is path setting for DLL? Make sure you include the name of the DLL in the FORMS45_USEREXIT variable of the ORACLE.INI file, or rename the DLL to F45XTB.DLL. If you rename the DLL to F45XTB.DLL, replace the existing F45XTB.DLL in the ORAWINBIN directory with the new F45XTB.DLL. How is mapping of name of DLL and function done? The dll can be More About: Questions , Oracle , Interview , Part
Oracle Interview Questions - Part 2
2007-10-25 10:58:00 How does one see the uptime for a database? (for DBA )Look at the following SQL query:SELECT to_char (startup_time,'DD-MON-YYYY HH24: MI: SS') "DB Startup Time"FROM sys.v_$instance;Marco Bergman provided the following alternative solution:SELECT to_char (logon_time,'Dy dd Mon HH24: MI: SS') "DB Startup Time"FROM sys.v_$sessionWHERE Sid=1 /* this is pmon *//Users still running on Oracle 7 can try one of the following queries:Column STARTED format a18 head 'STARTUP TIME'Select C.INSTANCE,to_date (JUL.VALUE, 'J')|| to_char (floor (SEC.VALUE/3600), '09')|| ':'-- || Substr (to_char (mod (SEC.VALUE/60, 60), '09'), 2, 2)|| Substr (to_char (floor (mod (SEC.VALUE/60, 60)), '09'), 2, 2)|| '.'|| Substr (to_char (mod (SEC.VALUE, 60), '09'), 2, 2) STARTEDfrom SYS.V_$INSTANCE JUL,SYS.V_$INSTANCE SEC,SYS.V_$THREAD CWhere JUL.KEY like '%JULIAN%'and SEC.KEY like '%SECOND%';Select to_date (JUL.VALUE, 'J')|| to_char (to_date (SEC.VALUE, 'SSSSS'), ' HH24:MI:SS') STARTEDfro... More About: Questions , Interview , Part
Interview Concepts
2007-10-25 10:54:00 What is an interview?An interview is a face-to-face meeting, especially for the purpose of obtaining a statement for assessing the qualities of a candidate. It further, indicates a physical meeting of people with two possible objectives:* To obtain a statement or opinion – as is done when film stars are interviewed to get their views on any particular role, or when the prime minister is interviewed to get statement on the result of his discussion with another political leader.* To assess a person for selection – such as interviews for jobs, admission to educational institutions, etc.Preparing for an interview* One of the most fundamental factors that contributes to the success of an interview is the time and quality of preparation made by you.* The degree of preparedness for an interview helps reduce the uncertainty and anxiety prior to the interview.* The amount of effort you wish to put into preparation is directly proportional to the importance of the interview. What all... More About: Concepts , Interview
C interview Questions
2007-10-24 09:31:00 1 Diffence arrays and pointers? Arays may be defined as the containers we can store more than one datatypes Pointers contains the address of the datatypes stored 2 What is the purpose of realloc( )? This function is used to reallocate the memory deleted 3 What is static memory allocation and dynamic memory allocation? When the memory is allocated before compilation than it is said to be allocated statically whereas when the memory is allocated at the runtime then it is said to be allocated dynamically. 4 How are pointer variables initialized? pointer variables are initialized when the values for which it is a pointer is called. 5 Are pointers integers? pointers are variables 6 What is a pointer variable? When the value of the variable changes its address also changes so the pointers to the variables are said to be pointer variables. 7 What is a pointer value and address? Pointer value gives t... More About: Questions , Interview
HR Interview Questions
2007-10-23 10:59:00 1. TELL ME A LITTLE ABOUT YOURSELF. Because this is often the opening question in an interview, be very careful that you don’t run off at the mouth. Keep your answer to a minute or two at most. Cover four topics: early years, education, work history, and recent career experience. Emphasize this last subject. Remember that this is just a warm-up question. Don’t waste your best points on it. 2. WHAT DO YOU KNOW ABOUT OUR ORGANIZATION? You should be able to discuss products or services, revenues, reputation, image, goals problems, management style, people, history, and philosophy. But don’t act as if you know everything about the place. Let your answer show that you have taken the time to do some research, but don’t try to overwhelm the interviewer, and make it clear that you wish to learn more. Give your answer a positive tone. Don’t say. “Well, everyone tells me that the company’s in heaps of trouble ... More About: Questions , Interview
ABAP / 4 Interview Questions
2007-10-23 06:47:00 1) What is SAP R/3? Ans SAP R/3 refers to Systems Application and Product for data processing Real-time having a 3 tier architecture i.e. Presentation layer, Application layer and Database layer. 2) What are the programming standards followed? 3) What are the contents in technical specifications? Ans There are five contents in Technical Settings: Data Class, Size Category, Buffering Permission, Buffering Type and Logging. 4) What is an instance? Ans When you call a function module, an instance of its function group plus its data, is loaded into the memory area of the internal session. An ABAP program can load several instances by calling function modules from different function groups. 5) How to take care of performance in ABAP Development? 6) What is Function group? Difference between function group and function module? Ans Function Groups act as containers for Function Modules that logically belong... More About: Questions , Interview
Technical &Quantitative Interview Questions
2007-10-18 13:31:00 Valuing a Company Questions :What are 3 ways to value a company?I see you worked for Company X. What valuation methods would you use to value Company X and why?How would you go about valuing a company whose stock you were considering buying?What project in a previous job or class involved valuing a company and how did you value that company?Of the different ways to value a company, which typically gives you the highestvaluation? The lowest?It’s 10pm and you have a pitch to prepare for morning – what would you do to prepare a valuation for the client company?How do you value a company with no revenue?Tell me how you would go about valuing a privately held construction company?What if there are no publicly traded peers?What criteria are you using to evaluate the company for which you hope to work?What are the main issues in valuing a privately held firm?How would you value a non-U.S. company?How would you value a company with no earnings such as a start up?I see you worked for Comp... More About: Technical , Interview , Technic
Finance Interview Questions
2007-10-18 07:25:00 § What do you know about our company? (CEO, Stock Price / Ticker Symbol, Recent Deals, Strategy–International/Equity Powers/Client Base, Strengths/Weaknesses, Competition? § Why do you want to work in this industry? § Why do you want to work for our company? § Why did you decide to go to b-school? Why a good time in your career? § Why did you choose Kenan-Flagler? What other schools did you consider and why? § What led you to choose your field or major study? § What jobs have you enjoyed the most? The least? Why? § What qualifications do you have that make you feel that you will be successful in your field? § What have you done which shows initiative and willingness to work? § Demonstrate a time you’ve showed initiative? § Do you have an analytical mind? Show me. § How do you spend your spare time? What are your hobbies? Why do you enjoy them? § ... More About: Finance , Questions , Interview
Behavioral Interview Questions
2007-10-18 07:02:00 1. Walk me through your resume? 2. Why investment banking? 3. Why this firm? 4. What does an investment banker do? 5. Who have you spoken with at the firm and what groups were they in? 6. What are your weaknesses (4)? 7. Why would you be a good banker? 8. Explain what you know about the role of an associate and why you can do the job. 9. Are you good at accounting? 10. What was your biggest mistake? 11. Describe and ethical dilemma and how you handled it. 12. If we made you an offer, would you take it? 13. What were your grades? 14. Which professor knows you best? What would he/she say about you? 15. Tell me about a time when you had a problem working in a group. 16. In business, you often have to bend the rules to get things done. Tell me about a time where you had to bend the rules. 17. If you played a game and lost 9 out of 10 times you played, how would you feel? That's what happens in this business. 18. ... More About: Questions , Interview
Accounting Interview Questions
2007-10-18 06:21:00 1. You buy a $100 asset. $25 cash, $50 debt, and $25 new equity. Explain how the 3 financial statements (IS, BS, CFS) will change. 2. How are the 3 financial statements related to each other? 3. Name 3 ways in which the Income Statement and Balance Sheet are related (item on one is related to item on another). 4. What happens to each of the three primary financial statements when capital expenditures decrease? 5. What happens to each of the three primary financial statements when gross margin decreases? 6. What happens to each of the three financial statements when working capital increases? 7. What is the current ratio and why is it important? 8. What is the acid-test ratio? 9. What is the main link between the income statement and the balance sheet? 10. Walk me through the major line items on a cash flow statement. 11. Are you good at accounting? 12. What is the opposite journal of account receivables? 13. What are th... More About: Questions , Interview , Accounting , Counting
Java Interview Questions
2007-10-16 05:54:00 Q1. How could Java classes direct program messages to the system console, but error messages, say to a file? A. The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both point at the system console. This how the standard output and error could be re-directed: PrintStream st = new PrintStream(new FileOutputStream("output.txt")); System.setErr(st); System.setOut(st); Q2. What's the difference between an interface and an abstract class? A. An abstract class may contain code in method bodies, which is not allowed in an interface. Java does not allow inheritance from multiple classes. On the other hand, you can implement multiple interfaces in your class. Also, an abstract class can contain private and protected members, and non-static member variables. Q3. Why would you use a synchronized block vs. synchronized method? A. Synchronized blocks place locks for shorter periods than... More About: Questions , Interview
.net Interview Questions
2007-10-12 17:40:00 (A) What is Manifest?Assembly metadata is stored in Manifest. Manifest contains all the metadata needed to do the following things (See Figure Manifest View for more details):· Version of assembly· Security identity· Scope of the assembly· Resolve references to resources and classes.· The assembly manifest can be stored in either a PE file (an .exe or .dll) with Microsoft intermediate language (MSIL) code or in a stand-alone PE file that contains only assembly manifest information. (B)Where is version information stored of an assembly ?Version information is stored in assembly in manifest.(I)Is versioning applicable to private assemblies?Versioning concept is only applicable to global assembly cache (GAC) as private assembly lie in their individual folders.(B) What is GAC ?Twist :- What are situations when you register .NET assembly in GAC ?GAC (Global Assembly Cache) is used where shared .NET assembly reside. GAC is used in the fol... More About: Questions , Interview
C Interview Questions
2007-10-09 07:26:00 Comment lines area compiled in the object codeb ignored by the compilerc included in the executable coded ignored by the linker. A syntax error is signalled by thea compilerb linkerc editord run time system. When a program is running the value of a constanta can be changedb cannot be usedc is always hiddend cannot be changed. The type of a function/procedure/module is determined bya its argumentsb the value returnedc its named the address returned. Which type of code is editable?a objectb executablec libraryd source. Typically a variable defined in a function/procedure/module hasa scope for the whole fileb global scopec local scoped retains its value between calls. A program construct used for selection isa if…elseb for loopc while loopd a sequence. What is the result of the following expression?6+12*3-4/2a 22b 25c 40d 52 What is the result of the following expression?5+((2*(9+5))-4)/2a 12.5b 14.5c 15d 17 ... More About: Questions , Interview
J2EE Interview Questions
2007-09-29 07:57:00 What is abstract schema The part of an entity bean's deployment descriptor that defines the bean's persistent fields and relationships. What is abstract schema name A logical name that is referenced in EJB QL queries. What is access control The methods by which interactions with resources are limited to collections of users or programs for the purpose of enforcing integrity, confidentiality, or availability constraints. What is ACID The acronym for the four properties guaranteed by transactions: atomicity, consistency, isolation, and durability. What is activation The process of transferring an enterprise bean from secondary storage to memory. (See passivation.) What is anonymous access Accessing a resource without authentication. What is applet A J2EE component that typically executes in a Web browser but can execute in a variety of other applications or devices that support the applet programming model. What is applet container A container that ... More About: Questions , Interview
Java Interview Questions
2007-09-28 14:32:00 1. What is a transient variable?A transient variable is a variable that may not be serialized. 2. Which containers use a border Layout as their default layout?The window, Frame and Dialog classes use a border layout as their default layout. 3. Why do threads block on I/O?Threads block on I/O (that is enters the waiting state) so that other threads may execute while the I/O Operation is performed. 4. How are Observer and Observable used?Objects that subclass the Observable class maintain a list of observers. When an Observable object is updated it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by objects that observe Observable objects. 5. What is synchronization and why is it important?With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchronization, it is possible for one thread to modify a shar... More About: Questions , Java , Interview
VB Interview Questions
More articles from this author:2007-09-28 14:11:00 What are the three main differences between flexgrid control and dbgrid(Data bound Grid) controlThe Microsoft FlexGrid (MSFlexGrid) control displays and operates on tabular data. It allows complete flexibility to sort, merge, and format tables containing strings and pictures. When bound to a Data control, MSFlexGrid displays read-only data.Adaptation to existing Visual Basic code for the data-bound grid (DBGrid).dbgrid is A spreadsheet-like bound control that displays a series of rows and columns representing records and fields from a Recordset object.The data grids are bound controls; that is, they require a data source that actually connects to a database and retrieves their data. And it seems that the root of the problem with DBGrid is that there's no data source that can be readily included along with the DBGrid control.In Visual Basic, the solution is simply to include the Data Control on the same form as DBGrid. But the Data Control is an intrinsic control; it's un... More About: Questions , Interview 1, 2, 3, 4 |



