What is the difference between an EXE and a DLL?
Answers were Sorted based on User's Feedback
Answer / manoj
Exe file is the executable(machine language) file which is
generated after successful compilation and linking process
of a programing language.
these files are especially created under dos Environment
like ms-dos this file is treated as the exteranal command
and whenever we execute this file the dos gives control to
the exe file and lets it to do what ever has been
instructed in this file.
in contrast the .DLL file usually comes under the 32-Bit
world like windows which contains all the API(Application
program interface)funtions which are called during
execution of a program.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / kirti
You can create an objects of Dll but not of the EXE.
Dll is an In-Process Component whereas EXE is an OUt-Process Component.
Exe is for single use whereas you can use Dll for multiple use.
Exe can be started as standalone where dll cannot be.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rohit passi
1.In Exe Main() exit and in dll no Main().
2.Exe can compie and execute and dll can compile only.
3.Exe User Interface and dll is not user interface.
4.Exe is not secure and dll is secure.
From rht.passi@gmail.com
| Is This Answer Correct ? | 1 Yes | 3 No |
what is the similarity between networking devices?
Hi..Am done with my Masters recently..Am planning to learn TIBCO.. could anyone suggest me about how the job market will be and Is there any course necessary to learn prior to Tibco..i mean any prerequisite. I dnt have any knowledge on PL/SQL thats it... Plz suggest me in a best way...
In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?
there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box. eg: 3 box contain stick as:1,1,1. if u take 1 stick from 3rd numbred box you will any how win the match.
WS-NUM PIC S9(05)V(02) SIGN TRAILING SEPARATE MOVE '0050000+' TO WS-NUM The value stored is 00500,00+ MOVE '0050000-' TO WS-NUM Then what is the value will be stored in WS-NUM? Am getting '-00500,00'.....>>> What should I declare to WS-NUM so that I can get correct values for both + & - signs.
how to hide prompts
Create a class TicTacToe that will enable you to write a complete program to play the game of Tic-Tac-Toe. The class contains as private data a 3- by-3 double array of integers. The constructor should initialize the empty board to all zeros. Allow two human players. Wherever the first player moves, place a 1 in the specified square; place a 2 wherever the second player moves. Each move must be to an empty square. After each move determine whether the game has been won and whether the game is a draw. If you feel ambitious, modify your program so that the computer makes the moves for one of the players automatically. Also, allow the player to specify whether he or she wants to go first or second. If you feel exceptionally ambitious, develop a program that will play three-dimensional Tic-Tac-Toe on a 4-by-4-by-4
What is the worst case of AVL tree?
write a sql qwery which include joining of two tables 4 marks mainframe
What are two of your strengths that you will bring to our QA/testing team?
design a counter with the following repeated binary sequence: 0, 1, 2, 3, 4, 5, 6, 7, 8 using JK Flip Flop.
3 Answers College School Exams Tests, IBD, IBM, Ignou, IIIT, Nortech, TCS, UOS,
why rownum=1 works properly but not rownum=>2,=>3 etc.