Click here to Skip to main content
15,896,453 members
Home / Discussions / C#
   

C#

 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Pin
Christian Graus4-May-08 22:55
protectorChristian Graus4-May-08 22:55 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Pin
S. Senthil Kumar5-May-08 4:40
S. Senthil Kumar5-May-08 4:40 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Pin
Member 39190495-May-08 17:00
Member 39190495-May-08 17:00 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. [modified] Pin
Member 39190495-May-08 17:31
Member 39190495-May-08 17:31 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Pin
S. Senthil Kumar5-May-08 20:30
S. Senthil Kumar5-May-08 20:30 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Pin
Member 39190496-May-08 21:13
Member 39190496-May-08 21:13 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Pin
Member 391904915-May-08 7:31
Member 391904915-May-08 7:31 
GeneralRe: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Pin
S. Senthil Kumar15-May-08 17:02
S. Senthil Kumar15-May-08 17:02 
Questionwhich one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite Pin
huma satti4-May-08 20:57
huma satti4-May-08 20:57 
AnswerDouble Post - Please Ignore Pin
Giorgi Dalakishvili4-May-08 21:05
mentorGiorgi Dalakishvili4-May-08 21:05 
AnswerRe: which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite Pin
Christian Graus4-May-08 21:09
protectorChristian Graus4-May-08 21:09 
GeneralRe: which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite Pin
huma satti5-May-08 0:44
huma satti5-May-08 0:44 
GeneralRude! Pin
leckey5-May-08 17:44
leckey5-May-08 17:44 
AnswerRe: which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite Pin
Luc Pattyn4-May-08 23:19
sitebuilderLuc Pattyn4-May-08 23:19 
GeneralOT Pin
Vikram A Punathambekar5-May-08 0:09
Vikram A Punathambekar5-May-08 0:09 
GeneralRe: which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite Pin
huma satti5-May-08 0:45
huma satti5-May-08 0:45 
AnswerRe: which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite Pin
Anthony Mushrow5-May-08 2:00
professionalAnthony Mushrow5-May-08 2:00 
Well, you could just check with smaller numbers. Lets use 4 to help us out a little:

4^2 = 16
1000^4 = 1000000000000

So, from this it seems 1000^n is greater.

n^n has the potential to be greater than n^1000. If n<1000 then n^1000 will be bigger. Since you said the numbers will be massive n^n is definately bigger.

And once again assuming n > 1000 n^n is bigger than 1000^n so we end up with (from biggest to smallest)

n^n
1000^n
n^1000
n^2

So what we can see is that anything to the power of n has the potential to be much larger. So anything^n is at the top. After that you can just sort them by how large the static numbers are (in your case n should be considered larger than any static number)

To be honest, i don't really know why you asked this question, and why you asked it here. I see no relation to C#, and you could have just typed some numbers into a calculator to see which is bigger. Infact, its pretty obvious which is going to be the smallest, after you think about it for a bit.

My current favourite word is: Bacon!
-SK Genius


GeneralRe: which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite Pin
enhzflep5-May-08 6:13
enhzflep5-May-08 6:13 
QuestionPOP3 To send a mail Pin
Member 40084924-May-08 20:07
Member 40084924-May-08 20:07 
AnswerRe: POP3 To send a mail Pin
Christian Graus4-May-08 21:12
protectorChristian Graus4-May-08 21:12 
AnswerRe: POP3 To send a mail Pin
Vasudevan Deepak Kumar4-May-08 22:22
Vasudevan Deepak Kumar4-May-08 22:22 
Questiongenerics type instantiation Pin
George_George4-May-08 19:50
George_George4-May-08 19:50 
AnswerRe: generics type instantiation Pin
Guffa4-May-08 21:54
Guffa4-May-08 21:54 
GeneralRe: generics type instantiation Pin
hoffmale5-May-08 8:40
hoffmale5-May-08 8:40 
GeneralRe: generics type instantiation Pin
Guffa5-May-08 9:04
Guffa5-May-08 9:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.