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 13816 sawaal for "collection"

What is the purpose of garbage collection in Java, and when is it used?

The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed and reused. A Java object is subject to garbage collection when it becomes unreachable to the program in which it is used. Garbage collection is also called automatic memory management as JVM automatically removes the unused variables/objects value is null

Posted in Computers & Technology by jks marven at 1:01 PM on May 28, 2008

What is the purpose of garbage collection in Java, and when is it used?

Purpose of garbage collection in java are given below-Garbage collection is one of the most important features of Java. The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed and reused. A Java object is subject to garbage collection when it becomes unreachable to the program in which it is used. Garbage

Posted in Computers & Technology by rocky singh at 5:20 AM on June 22, 2008

What is an Iterator?

Some of the collection classes provide traversal of their contents via a java.util.Iterator interface. This interface allows you to walk through a collection of objects, operating on each object in turn. Remember when using Iterators that they contain a snapshot of the collection at the time the Iterator was obtained; generally it is not advisable to modify the collection itself while traversing

Posted in Computers & Technology by rocky singh at 5:24 AM on June 22, 2008
Tags iterator

how to find the serial no of the hard disk?

ArrayList hdCollection = new ArrayList; Next, we query the Win32DiskDrive class first: ManagementObjectSearcher searcher = new ManagementObjectSearcher"SELECT FROM Win32DiskDrive"; foreachManagementObject wmiHD in searcher.Get HardDrive hd = new HardDrive; hd.Model = wmiHD["Model"...].ToString; hd.Type = wmiHD["InterfaceType"...].ToString; hdCollection.Addhd; Now we need to extract

Posted in Computers & Technology by swizzsam at 3:31 PM on February 29, 2008
Tags find, serial, hard, disk

What is Collection API ?

Most programming languages support collections, represented by anin-memory data structure, a file, a database, or a generatingfunction. A programming language system gives us typically one of thetwo interfaces to systematically access elements of a collection. Onetraversal API is based on enumerators -- e.g., for-each, map, filterhigher-order procedures -- of which the most general is fold. Thesecond

Posted in Computers & Technology by Rajat Bhatia at 6:37 PM on August 16, 2008

Define Garbage collector.

Garbage Collection is a process that many Operating Systems and some applications, especially services perform.The purpose of Garbage Collection is to recover or reorganise system resources such as available blocks of RAM to prevent failure due to resource starvation. Garbage collection is an automatic memory management feature in many modern programming languages, such as Java and languages in the .NET

Posted in Computers & Technology by Sharad Singh at 5:25 PM on May 17, 2008

What is the primary difference between a Vector and an ArrayList?

is from Java 1.0, before the collections framework was added to Java. As such, Vector has several methods that are not part of interface List and are not implemented in class ArrayList, but perform identical tasks.For example, Vector methods addElement and add both append an element to a Vector, but only method add is specified in interface List and implemented by ArrayList. Unsynchronized collections

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

octroi for 2008 in mumbai

SHOWING UPWARD trend, the octroi department of Brihanmumbai Municipal Corporation BMC has registered a record tax collection to the tune of Rs 4252 crore- an increase of around 20 per cent. As per the figures, the octroi collection till March 31, 2008, was Rs 4252 crore as against Rs 3,535 crore last year. This is 10 per cent higher than the sales tax, thus indicating the sharp increase

Posted in Food & Drink by suraj at 9:07 PM on September 21, 2008
Tags octroi

From where can i get good collection of Sherwanis in city?

...mehsana...You can get good collection of sherwanis from Bindals Stores they are situated at CP near the Rajiv Chowk metro station...chhangamal stores...chowk in bhopal there you can get every think in good quality...karolbaagh...from big bazar u may get good collection...u can get it from kurta palace........its in south x...mahta talir...cheap & best at lajpatnagar & karol bagh...Try Laajpat Rai Market otherwise Dryaganj

Posted in Bhopal by gunnu1 at 4:40 PM on May 20, 2008

How can assign columnscells width in datagrid using C.net 2003 to Windows ApplicationDesktop Application ?

ColumnStyles collection. The GridColumnStyles used by the DataGrid are determined at the point the DataGridTableStyle is added to the DataGrid.TableStyle collection. If the TableStyle.GridColumnStyle has not been populated with this collection by this point, a default set of ColumnStyles is created and used by the DataGrid. However, if DataGridColumns are specifically added to a DataGridTableStyle before adding the Data

Posted in Computers & Technology by swapnil at 4:51 PM on June 05, 2008

What are the best research sites on the Internet for any topic?

well Aryan, For targeted, multi-concept, and sometimes general queries, use a search engine.Definition: A search engine is a searchable database of Internet files collected by a computer program called a wanderer, crawler, robot, worm, spider. Indexing is created from the collected files, e.g., title, full text, size, URL, etc. There is no selection criteria for the collection of files, though

Posted in Computers & Technology by Aryan Gusain at 7:00 PM on June 20, 2008

What is Data Resource?

or sink.Feature : The Data Resource Guide is an on-line catalog of the California Department of Educations CDE data products. These data products include data collections, databases, and mandated reports. It contains information on what data the CDE collects, manages and stores; where the data are located; who is the point of contact for the data; and how the data can be accessed and shared. Like a catalog in a

Posted in Computers & Technology by mahesh jha at 11:59 PM on June 27, 2008
Tags data, resource

what is Tax Collection at Source TCS

Tax collection at source arises on the part of the seller of goods. Here, tax is collected at the source of income itself. It is to be collected at source from the buyer, by the seller at the point of sale. Such tax collection is to be made by the seller at the time of debiting the amount payable to the buyer to the account of the buyer or at the time of receipt of such amount from the buyer

Posted in Personal Finance & Tax by akash singh at 9:07 PM on October 07, 2008

Why the main method in Java is defined as public and static.

. Strings in Java are sequence of characters, like the characters in this sentence. The matched brackets indicate that an array of Strings is required. An array is a certain kind of linear collection they are not referenced again in the body of main the part between braces ... they wont be used here. The parentheses, like the rest, are required. There is no space between [ and...].Braces and are used to collect

Posted in Computers & Technology by Ravinder at 5:55 PM on June 11, 2008
Tags java

Difference between HashMap and HashTable?

the elements properly among the buckets. Iteration over collection views requires time proportional to the "capacity" of the HashMap instance the number of buckets plus its size the number of key hashtable, the objects used as keys must implement the hashCode method and the equals method.The Hashtable is one of the original collection classes in Java. HashMap is part of the new Collections Framework

Posted in Computers & Technology by jks marven at 1:01 PM on May 28, 2008
Section targeting
© 2006 - 2013 ibibo Web Pvt Ltd. All rights reserved.