Sign Up | Sign In
Ask Questions & Get Answers at ibibo sawaal
Refine By Date
Refine By Categories
Sort by: Recency | Relevancy

Results 1 - 15 of about 11650 sawaal for "handle"

what is mean by exception handling?

Handling. Many modern programming language use Exception blocks to handle any exceptionerror eg. TRY .. Catch .. Finally Block.The first step in constructing an exception handler is to enclose the code. But finally is useful for more than just exception handling it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue, or break. Putting cleanup code in a finally block

Posted in Computers & Technology by DINESH KUMAR at 4:05 PM on May 01, 2008

what is.....return super.handleEvente.......in java means?

In many programs, you only need to override convenience methods like action and mouseUp; you usually dont need to override handleEvent, which is the high level event handler that calls the convenience methods. However, convenience methods dont exist for all event types. To act upon an event that doesnt have a convenience method for example, LISTSELECT, you need to override handleEvent itself

Posted in Computers & Technology by SUNIL . at 12:04 AM on October 03, 2008
Tags java, means

How does exception handling work in Java?

being the case because of an error in user input. In this particular case an ArithmeticException is thrown, and unless the programmer looks for this exception and manually puts in code to handle it, the program will crash stating the exception thrown and a stack trace, which would be unhelpful to a casual user of a Java program. If the programmer handles the exception, he could deliver a useful error

Posted in Computers & Technology by rocky singh at 3:38 AM on June 26, 2008

Can Any1 Provide me with the code for displaying amount in words.eg if amt is Rs10,000 then it should display Rupees one thousand only.I m using Visual basic

"" Handle the hundreds digit.Dim digit As IntegerDim result As String = ""If num > 99 Thendigit = num 100num = num Mod 100result = onetonineteendigit & " hundredElse Handle the tens digit.digit = num 10num = num Mod 10result &= " " & multiplesoftendigit - 2 Handle the final digit.If num > 0 Thenresult &= " " & onetonineteennum

Posted in Computers & Technology by Himanshu at 7:32 PM on June 21, 2008

What is the delegate and event?

uses, the discussion here focuses on the event handling functionality of delegates. A delegate declaration is sufficient to define a delegate class. The declaration supplies the signature of the delegate the event and responds to it is called the event receiver.In event communication, the event sender class does not know which object or method will receive handle the events it raises. What is needed

Posted in Computers & Technology by Kishor More at 9:30 PM on June 13, 2008

Explain what is meant by an "asynchronous event." Give some examples.

be when the user presses a key on the keyboard or clicks the mouse button. These events generate "interrupts" that cause the CPU to interrupt what it is doing and to take some action to handle the asynchronous event. After handling the event, the CPU returns to what it was doing before it was interrupted.For more information-http://math.hws. edu/e ck/cs124/javanotes5/c1/quizan swers .html

Posted in Computers & Technology by rocky singh at 2:08 PM on June 26, 2008
Tags explain, meant

list three rules of safe knife handling

Take time to train new employees on proper knife handling. Keep your knives sharp, handles secure and store with the blades covered. Only allow trained employees to operate electric slicers. All slicing machine guards should be kept in place and in good working condition. Know the safety rules for handling a knife A knife is a tool, not a toy. Know how to sharpen a knife. A sharp knife is safer

Posted in Food & Drink by rahil group at 1:38 AM on September 13, 2008

What is Onion Mode in ADOBE FLASH CS3?

previewed in the onion skin by manually dragging the onion skin markers. These markers have draggable handles that set the beginning and end of the onion skin. The handles appear as brackets with small dots in the onion skin by manually dragging the onion skin markers. These markers have draggable handles that set the beginning and end of the onion skin. The handles appear as brackets with small dots. Alternately

Posted in Computers & Technology by Hussain Khan at 5:29 PM on May 28, 2008

Is it possible to graduate under the degree plan you started with when you began college?

hello rupesh if one gets into college with high aims and keeps working on it , iam sure he can reach the goals !...well, The online computer is not set up to handle it but we handle it when we do. The online computer is not set up to handle it but we handle it when we do the final audit. You should fill out the degree plan with the department so we can settle any issues.You must finish the degree by 7

Posted in Computers & Technology by Rupesh at 1:46 AM on May 29, 2008

Does the System.Exception class have any cool features?

the error. Once thrown, an exception is handled by the application or by the default exception handler.Yes - the feature which stands out is the StackTrace property. This provides a call stack which records, an exception is handled by the application or by the default exception handler.Try-Catch BlocksThe common language runtime provides an exception handling model that is based on the representation of exceptions

Posted in Computers & Technology by Nidhi Singh at 2:54 PM on August 13, 2008

What is RMI?

the underlying implementation by passing around an interface. Thus, when the client gets a handle to a remote object, what they really get is an interface handle, which happens to connect to some local stub code which itself talks across the network.But you dont think about this, you just send messages via your interface handle.When you create a remote interface, you must follow these guidelines:1. The remote

Posted in Computers & Technology by rocky singh at 2:06 PM on June 26, 2008
Tags rmi

what is the function of TCP / IP protocol?

logic for managing connections and handling problems that may result with them. When a device is done with a TCP connection, a special process is followed to terminate it. Data Handling and Packaging: TCP a TCP connection over which data can travel. Once opened, TCP includes logic for managing connections and handling problems that may result with them. When a device is done with a TCP connection, a

Posted in Computers & Technology by Aryan Gusain at 3:39 PM on June 18, 2008

what is difference between application server and web server

.An application server handles most, if not all, of the business logic and data access of the application a.k.a. centralization. The main benefit of an application server is the ease of application development may still be handled by the users machine. After the Web exploded in the mid-1990s, application servers became Web based 2 Since the advent of the Web, the term most often refers to software

Posted in Computers & Technology by PraneelKumar at 2:11 AM on June 12, 2008

which is the best of processor of intel dualcore2.66 or AMD ATHLON 4200and which is best motherboard of intel 945 original or ASUS MV2XPLZ .,

The Intel dual-core processor consists of two complete execution cores in one physical processor. Imagine that a dual-core processor is like a four-lane highwayit can handle up to twice as many cars Enjoy flexibility and the performance to handle robust content creation or intense gaming with multimedia-enabling technologies built in...The Intel dual-core processor consists of two complete execution

Posted in Computers & Technology by Anil Kumar at 1:17 AM on July 16, 2008

What is a handle in Windows Programming?

well, A handle is a reference for the operating system. It does not have the semantics of a programming reference but what it does do is allow the system resources to know what you are referring to when it is passed in an API call.Usually, the HANDLE is wrapped in an instance of a class. CWnd is a good example, it contains an HWND which is a handle to a window.You can do this. CWnd pWnd = CWnd

Posted in Computers & Technology by gilli... at 5:39 PM on November 03, 2008
Section targeting
© 2006 - 2013 ibibo Web Pvt Ltd. All rights reserved.