Given part of a stack trace: aspnet.debugging.BadForm.Page_Load(Object sender, EventArgs e) +34. What does the +34 mean?

1 Answer

Answer :

It is an actual offset (at the assembly language level) – not an offset into the IL instructions. 

Related questions

Description : Can you change the value of a variable while debugging a C# application? 

Last Answer : Yes. If you are debugging via Visual Studio.NET, just go to Immediate window. 

Description : What debugging tools come with the .NET SDK?

Last Answer : 1. CorDBG – command-line debugger. To use CorDbg, you must compile the original C# file using the /debug switch. 2. DbgCLR – graphic debugger. Visual Studio .NET uses the DbgCLR.

Description : Can you change the value of a variable while debugging a C# application? 

Last Answer : Yes. If you are debugging via Visual Studio.NET, just go to Immediate window. 

Description : What debugging tools come with the .NET SDK?

Last Answer : 1. CorDBG – command-line debugger. To use CorDbg, you must compile the original C# file using the /debug switch.   2. DbgCLR – graphic debugger. Visual Studio .NET uses the DbgCLR.

Description : What’s the difference between the Debug class and Trace class? 

Last Answer : Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds.

Description : What’s the difference between the Debug class and Trace class? 

Last Answer : Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds.

Description : Is a struct stored on the heap or stack? 

Last Answer : Stack

Description : What is a heap and a stack?

Last Answer : There are 2 kinds of heap - 1: a chunk of memory where data is stored and 2: a tree based data structure. When we talk about the heap and the stack we mean the first kind of ... a LIFO data structure that stores variables and flow control information. Typically each thread will have its own stack.

Description : What are the three possible settings for the CommandType property of a SqlCommand object or an OleDbCommand object, and what does each mean?

Last Answer : A Command object can have a CommandType property setting of Text, StoredProcedure, or TableDirect. When set to Text, the command executes the SQL string that is stored in the Command object's ... that the command should return the entire contents of the table indicated by the CommandText property. 

Description : Briefly explain encapsulation and why it is important in object-oriented - programming.

Last Answer : Encapsulation is the principle that all of the data and functionality required by an object be contained by that object. This allows objects to exist as independent, interchangeable units of functionality without maintaining dependencies on other units of code.

Description : What size is a .NET object?

Last Answer : Each instance of a reference type has two fields maintained by the runtime - a method table pointer and a sync block. These are 4 bytes each on a 32-bit system, making a total of 8 bytes ... bytes, even for classes with no data (e.g. System.Object). Values types have no equivalent overhead. 

Description : What does the Dispose method do with the connection object? 

Last Answer : Deletes it from the memory. To Do: answer better. The current answer is not entirely correct.

Description : Is object destruction deterministic?

Last Answer : No

Description : object is an alias for what? 

Last Answer : System.Object 

Description : How do you dereference an object? 

Last Answer : Set it equal to null. 

Description : Does an object need to be made to run main?

Last Answer : No

Description : What does the Dispose method do with the connection object? 

Last Answer : Deletes it from the memory. To Do: answer better. The current answer is not entirely correct.

Description : Is C# object-oriented?

Last Answer : Yes, C# is an OO language in the tradition of Java and C++.

Description : Is C# is object oriented?

Last Answer : Yes, C# is an OO language in the tradition of Java and C++.

Description : A object for trace a bag or value payable or insured article mail during its course from the office of dispatch to the office of final destination is a a) Complaint b) Search Bill c) Delivery note d) None of these

Last Answer : b) Search Bill

Description : To a person standing on shore, an object dropped from the mast of a passing sailboat will trace what path, assuming negligible air resistance. Is it: w) vertical straight line x) slanted straight line y) parabola z) hyperbola

Last Answer : ANSWER: Y -- PARABOLA

Description : The best way to test the Project Management Plan (SPMP) is by a) Prototyping b) Inspection c) Simulation d) Compilation e) Debugging.

Last Answer : b) Inspection

Description : What do u mean by Satellite Assemblies ?

Last Answer : Answer: The assemblies which contains only culture information are known as satellite assemblies.This assembly is used to get language specific resources for an application .

Description : What does the term immutable mean?

Last Answer : The data value may not be changed. Note: The variable value may be changed, but the original immutable data value was discarded and a new data value was created in memory.

Description : What does marshalling mean?

Last Answer : The process of packing one or more items of data into a message buffer, prior to transmitting that message buffer over a communication channel. The packing process not only collects together ... data of different types into a standard representation agreed with the recipient of the message.  

Description : Is constructor or destructor inheritance explicit or implicit? What does this mean?

Last Answer : Constructor or destructor inheritance is explicit…. Public Extended : base() this is called the constructor initializer.

Description : What does operator order of precedence mean? 

Last Answer : Certain operators are evaluated before others. Brackets help to avoid confusion. 

Description : Strings are immutable, what does this mean?

Last Answer : Any changes to that string are in fact copies. 

Description : What does the term immutable mean?

Last Answer : The data value may not be changed. Note: The variable value may be changed, but the original immutable data value was discarded and a new data value was created in memory. 

Description : What does the keyword virtual mean in the method definition? 

Last Answer : The method can be over-ridden. 

Description : What are the four steps in debugging? -Technology

Last Answer : The four steps in debugging are as follows:1. Discovering of the bug2. Isolation of the bug3. Finding the bug4. Fixing the bug

Description : What is testing and debugging ?

Last Answer : Testing: Testing is to check if something is working properly. It may be a device or program you created. The programs that have been created have to be tested first to see if they are working properly ... debugging together can be said to find and correct the errors of any program or device.

Description : What is debugging ?

Last Answer : Debugging is the process of correcting errors in a program.

Description : _____is the process of finding errors in software code. 1) Compiling 2) Testing 3) Running 4) Debugging 6 5) None of these

Last Answer : Answer :4

Description : An approach that designs test cases by looking at the allowable data values. a) Data coverage b) Code Coverage c) Debugging d) Validation

Last Answer : Answer: a Explanation: Data coverage is an approach that designs test cases by looking at the allowable data values. Code coverage is an approach that designs test cases by looking at the code

Description : What is debugging?

Last Answer : Debugging is the process of identifying errors within a program. During program compilation, errors that are found will stop the program from executing completely. At this state, the programmer would look ... of errors, and plays an important role in ensuring that the expected program output is met.

Description : The explanation facility of an expert system may be used to ____________ a) construct a diagnostic model b) expedite the debugging process c) explain the system’s reasoning process d) explain the system’s reasoning process & expedite the debugging process

Last Answer : d) explain the system’s reasoning process & expedite the debugging process

Description : The explanation facility of an expert system may be used to __________ a) construct a diagnostic model b) expedite the debugging process c) explain the system’s reasoning process d) expedite the debugging process & explain the system’s reasoning process

Last Answer : d) expedite the debugging process & explain the system’s reasoning process

Description : The objective of testing is ? Debugging To uncover errors To gain modularity To analyze system

Last Answer : To uncover errors

Description : Locating and eliminating defects in a program is: a) Bugs b) Debugging c) Virus Control Protocol d) None of These

Last Answer : b) Debugging

Description : What is correcting errors in a program called? 1) Debugging 2) Compiling 3) Interpreting 4) None of these

Last Answer : 1) Debugging

Description : ..... is the process finding errors in software code. 1) compiling 2) Assembling 3) Interpreting 4) Debugging

Last Answer : 4) Debugging

Description : Which is not a benefit of cloud computing? a) Streamline business processes b) Pervasive accessibility c) Economic of scale d) Program debugging

Last Answer : Program debugging

Description : Define what is meant by errors and debugging?

Last Answer : Errors may be made during program creation even by experienced programmers. Such type of errors is detected by the compiler. Debugging means removing the errors.

Description : ‘Be bugging’ is known as A. Preventing the defects by inspection B. Fixing the defects by debugging C. Adding known defects by seeding D. A process of fixing the defects by tester

Last Answer : C. Adding known defects by seeding

Description : Match the following. a) Java 1) is a tool for debugging java program b) Javah 2) is a tool for creating C-like header files c) Javap 3) runs java bytecode d) jdb 4) prints java code representation A) a-3, b-2,c-1 B) a-3, b-1, c-4, d-2 C) a-1, b-2, c-3, d-4 D) a-2, b-1, c-3, d-4

Last Answer : B) a-3, b-1, c-4, d-2

Description : What are the three generic phases of software engineering? (A) Definition, development, support (B) What, how, where (C) Programming, debugging, maintenance (D) Analysis, design, testing

Last Answer : (A) Definition, development, support

Description : What si the difference between interface and abstractclass Select Answer:  1. interface contain only methods  2. we can't declare a variable for interface  3. interface contain only events  4. None  5. All

Last Answer : Ans : 2 The only Difference between Interface and Abstract class is we can declare a variable in abstract class but we can't declare in variable interface

Description : What is the lifespan for items stored in ViewState? Select Answer:  1. Item stored in ViewState exist for the life of the current page  2. Item stored in ViewState exist for the life ... of the current Applicaiton  4. Item stored in ViewState exist for the life of the current configuration

Last Answer : 1. Item stored in ViewState exist for the life of the current page AS any web application works on request and response basis ,so on every post backs, The data in control gets lost. To retain page ... control with data. The life cycle of the view state exist for life of current running page only. 

Description : Which one of the following tools is used to view the metadata information contained in a .NET assembly? Select Answer:  1. al.exe  2. ilasm.exe  3. vbx.exe  4. csc.exe  5. ildasm.exe

Last Answer :  5. ildasm.exe