Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is means by DLL file means ?
What is the use of DLL file?
What are the contents of DLL file?

Answers were Sorted based on User's Feedback



What is means by DLL file means ? What is the use of DLL file? What are the contents of DLL file?..

Answer / prasanna

DLL means dynamic Link Library.
these are the files used to run the softwares.
each software has the some specified dll files, with their
help only that s/w will execute.

i think it is may not possible to see the contents of the
dll files

Is This Answer Correct ?    57 Yes 3 No

What is means by DLL file means ? What is the use of DLL file? What are the contents of DLL file?..

Answer / pradeep

DLL means Dynamic Link Library
These are useed to run software.
contentes are not possible to see.........

Is This Answer Correct ?    25 Yes 6 No

What is means by DLL file means ? What is the use of DLL file? What are the contents of DLL file?..

Answer / sharan 9611129457

DLL- Dynamic Link Library.
DLL files supports s/w to run properly.
Contents of the DLL file's cannot be viewed.

Is This Answer Correct ?    12 Yes 2 No

What is means by DLL file means ? What is the use of DLL file? What are the contents of DLL file?..

Answer / ida

What exactly .DLL Means?
You may have often heard about dll files, but you may not
know exactly what it means. This article would help you in
obtaining some general information related to dll files. In
very simple terms dll file or dynamic link library is a
collection of small programs, or support files for some
types of software.

Mostly, these files are located in the directory of your
Windows System. Whenever the need arises, it can be called
upon by the executable program (EX) that is running on your
Windows.

Often, the dll files let the EX or the executable program
communicate with a specific required device such as a
printer. But sometimes it cannot let the executable program
communicate automatically. At such times, it contains
source code to do particular functions.

For example suppose if the executable program requires the
free space of your hard drive. Then, it can call the DLL
file containing the function with specific parameters and a
call function. The DLL file would then tell the executable
program the required free space. This will enable the
executable program to be in proper size and thus it will
write only the existing function.

This will give the information about the free space to the
executable program, and there is no necessity to write all
the source code on your hard drive thus it saves space.
Whenever a DLL file is used in this manner, it is also
called as shared file.

The main advantage of DLL files is that they save the space
in Random Access Memory (RAM), as they do not get loaded
into it along with the main program. It is loaded only if a
dll file is called upon.

For example, if you want to edit a Microsoft Word document,
then there is no necessity to load DLL file of the printer
into Random Access Memory. If there is a need to print the
document, then the DLL file of the printer is downloaded
automatically and a call is made to print the page.

Along with, saving space, it also saves time as many of the
files are already installed in the windows.

In simple words, you can say that a dll file is an
executable file that runs with the help of another
executable file from inside Windows.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

How variables are declared?

0 Answers  


Explain treeset?

0 Answers  


Difference between static methods, static variables, and static classes in Java.

1 Answers  


How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?

5 Answers  


How java is platform independent?

41 Answers   College School Exams Tests, Infosys, TCS,


What is the major advantage of external iteration over internal iteration?

0 Answers  


What is use of map in java?

0 Answers  


What is final keyword in java? Give an example.

0 Answers  


What is an empty string in css?

0 Answers  


Is a method a procedure?

0 Answers  


3.2 Consider the following class: public class Point { protected int x, y; public Point(int xx, int yy) { x = xx; y = yy; } public Point() { this(0, 0); } public int getx() { return x; } public int gety() { return y; } public String toString() { return "("+x+", "+y+")"; } } Say you wanted to define a rectangle class that stored its top left corner and its height and width as fields. 3.2.1 Why would it be wrong to make Rectangle inherit from Point (where in fact it would inherit the x and y coordinates for its top left corner and you could just add the height and width as additional fields)? (1) 8 Now consider the following skeleton of the Rectangle class: public class Rectangle { private Point topLeft; private int height, width; public Rectangle(Point tl, int h, int w) { topLeft = tl; height = h; width = w; } public Rectangle() { this(new Point(), 0, 0); } // methods come here } 3.2.2 Explain the no-argument constructor of the Rectangle class given above. 3.2.3 Write methods for the Rectangle class to do the following: • a toString() method that returns a string of the format "top left = (x, y); height = h; width = w " where x, y, h and w are the appropriate integer values. • an above() method that tests whether one rectangle is completely above another (i.e. all y values of the one rectangle are greater than all y values of the other). For example, with the following declarations Rectangle r1 = new Rectangle(); Rectangle r2 = new Rectangle(new Point(2,2), 1, 4); the expression r2.above(r1) should give true, and r2.above (r2) should give false. (You can assume that the height of a rectangle is never negative.) (2) (5)

0 Answers  


what is the difference b/w static and final methods?

1 Answers  


Categories