Which of the following application need not to have an entry point

A) Console application
B) Windows application
C) Class Modules
Explanation: Class modules are referred by another project which will have entry point.

Showing Answers 1 - 3 of 3 Answers

samiksc

  • Jan 10th, 2006
 

(C) Class modules is the correct choice. Console applications and windows applications do require entry point, i.e. Main() method.

Class modules are compiled into DLLs which are referred by other applications. They do not have an entry point.

  Was this answer useful?  Yes

Ravi Kumar

  • Mar 12th, 2006
 

assemblies may or may not be executables.exe or dllclass modules had no entry pont.entry point means public void static main() method

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions