<< < 95 96 97 98 99 100 101 102 103 104 105 > >>   Sort: Date

.NET INTERVIEW QUESTIONS - What is a IL?
.NET INTERVIEW QUESTIONS - What is a IL? (What is MSIL or CIL , What is JIT?) (IL)Intermediate Language is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language). All .NET source code is compiled to IL. This IL is then converted to machine code at the point where ...
2010-02-02, 4441👍, 0💬

What's Math Constants and Functions using JavaScript?
What's Math Constants and Functions using JavaScript? The Math object contains useful constants such as Math.PI, Math.E Math also has a zillion helpful functions. Math.abs(value); //absolute value Math.max(value1, value2); //find the largest Math.random() //generate a decimal number between 0 and 1 ...
2009-03-03, 4437👍, 0💬

What is the difference unescape() and escape()?
What is the difference unescape() and escape()? These are similar to the decodeURI() and encodeURI(), but escape() is used for only portions of a URI: &lt;script type="text/javascript"> var myvalue = "Sir Walter Scott"; document.write("Original myvalue: "+myvalue); document.write("&lt;br />e...
2011-08-23, 4435👍, 0💬

How to change style on an element?
How to change style on an element? Between CSS and javascript is a weird symmetry. CSS style rules are layed on top of the DOM. The CSS property names like "font-weight" are transliterated into "myElement.style.fontWeight". The class of an element can be swapped out. For example: document.getElement...
2011-05-31, 4431👍, 0💬

What does the "Access is Denied" IE error mean?
What does the "Access is Denied" IE error mean? The "Access Denied" error in any browser is due to the following reason. A JavaScript in one window or frame is tries to access another window or frame whose document's domain is different from the document containing the script.
2010-08-31, 4424👍, 0💬

Name the numeric constants representing max, min values
Name the numeric constants representing max, min values Number.MAX_VALUE Number.MIN_VALUE
2008-10-14, 4424👍, 0💬

Explain virtual inheritance.
Explain virtual inheritance. Draw the diagram explaining the initialization of the base class when virtual inheritance is used. Note: Typical mistake for applicant is to draw an inheritance diagram, where a single base class is inherited with virtual methods. Explain to the candidate that this is no...
2012-05-10, 4423👍, 0💬

How do we get JavaScript onto a web page?
How do we get JavaScript onto a web page? You can use several different methods of placing JavaScript in you pages. You can directly add a script element inside the body of page. 1. For example, to add the "last updated line" to your pages, In your page text, add the following: &lt;p>blah, blah,...
2010-06-02, 4415👍, 0💬

What are JavaScript data types?
What are JavaScript data types? Number, String, Boolean, Function, Object, Null, Undefined.
2010-06-15, 4408👍, 0💬

How to have an element invoke a JavaScript on selection, instead of going to a new URL
How to have an element invoke a JavaScript on selection, instead of going to a new URL &lt;script type="text/javascript"> function pseudoHitMe() { alert("Ouch!"); } &lt;/script> &lt;a href="javascript:pseudoHitMe() ">hitme&lt;/a>
2008-12-30, 4405👍, 0💬

What are two different types of remote object creation mode in .NET ?
.NET INTERVIEW QUESTIONS - What are two different types of remote object creation mode in .NET ? There are two different ways in which object can be created using Remoting :- * SAO (Server Activated Objects) also called as Well-Known call mode. * CAO (Client Activated Objects) SAO has two modes “Sin...
2009-08-11, 4383👍, 0💬

What is an application object ?
.NET INTERVIEW QUESTIONS - What is an application object ? Application object can be used in situation where we want data to be shared across users globally.
2009-04-21, 4383👍, 0💬

How to change style on an element?
How to change style on an element? Between CSS and javascript is a weird symmetry. CSS style rules are layed on top of the DOM. The CSS property names like "font-weight" are transliterated into "myElement.style.fontWeight". The class of an element can be swapped out. For example: document.getElement...
2009-02-03, 4376👍, 0💬

The join() function allows you to:
The join() function allows you to: A) create a string out of an array. B) create an array out of a string delimited by some character. C) join two strings. D) all of the above.
2010-08-28, 4369👍, 0💬

How to get the contents of an input box using JavaScript?
How to get the contents of an input box using JavaScript? Use the "value" property of the input box object. For example: var myValue = window.document.getElementById ("MyTextBox").value;
2010-10-12, 4368👍, 0💬

How does one create a custom toolbar?
How does one create a custom toolbar? Create a new block, let's name it "TOOLBAR" and a canvas named "C_TOOLBAR" (for ilustration purposes). Put some iconic buttons on your canvas. Use the following properties for these buttons: * Enabled: True * Navigable: False * Mouse Navigate: False Now set the ...
2011-04-26, 4364👍, 0💬

Contents of test plan
What is the test plan? What are its contents? Test plan document is prepared by the test lead or team lead, it contains the contents like introduction, objectives, test strategy, scope, test items, program modules, user procedures, features to be tested, features not to tested, approach, pass or fai...
2016-10-22, 4335👍, 1💬

💬 2016-10-22 Jazz: Test plan document is prepared by the test lead or team lead, ... [Answer accepted].

What does the following code do and why would anyone write something like that?
What does the following code do and why would anyone write something like that? void send (int *to, int * from, int count) { int n = (count + 7) / 8; switch ( count % 8) { case 0: do { *to++ = *from++; case 7: *to++ = *from++; case 6: *to++ = *from++; case 5: *to++ = *from++; case 4: *to++ = *from++...
2012-05-11, 4322👍, 0💬

About listing of the process
how to write a .c program in unix ,like I want to list the process information when I give the process id.
2010-04-07, 4314👍, 0💬

What is DISCO ?
.NET INTERVIEW QUESTIONS - What is DISCO ? DISCO is the abbreviated form of Discovery. It is basically used to club or group common services together on a server and provides links to the schema documents of the services it describes may require.
2009-10-07, 4314👍, 0💬

Scope of publication ?
Scope of publication ? .NET Remoting exposes objects to other application domains as if they are local, with a few exceptions. The two exceptions most likely to trip you up are: • Static members are never remoted. Remoting always deals with some form of object instance member. • Private methods are ...
2009-03-25, 4301👍, 0💬

nodeList is almost like an array except:
nodeList is almost like an array except: A) it has an item method. B) it is read-only. C) both a and b above. D) none of the above.
2010-08-28, 4296👍, 0💬

What are the precautions you will take in order that SQLSERVER Mode work properly ?
.NET INTERVIEW QUESTIONS - What are the precautions you will take in order that SQLSERVER Mode work properly ? Following are the things to remember so that SQLSERVER Mode works properly :- * SQLSERVER mode session data is stored in a different process so you must ensure that your objects are seriali...
2009-06-09, 4294👍, 0💬

How to compile JSP in Oracle Applications ?
How to compile JSP in Oracle Applications ? You can use ojspCompile.pl perl script shipped with Oracle Applications to compile JSP files. This script is under $JTF_TOP/admin/scripts. Sample compilation method is perl ojspCompile.pl --compile --quiet
2011-12-28, 4285👍, 0💬

<< < 95 96 97 98 99 100 101 102 103 104 105 > >>   Sort: Date