Post reply

The message has the following error or errors that must be corrected before continuing:
Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Note: this post will not display until it has been approved by a moderator.
Attachments: (Clear attachments)
Restrictions: 20 per post (20 remaining), maximum total size 24.00 MB, maximum individual size 24.00 MB
Uncheck the attachments you no longer want attached
Click or drag files here to attach them.
Other options
Verification:
Please leave this box empty:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:

Shortcuts: ALT+S post or ALT+P preview

Topic summary

Posted by Bhupendra Singh
 - Nov 18, 2011, 04:55 PM
 :policeHello,
Nice collection of VC++ Interview question. Its really helpful for beginner as well as developer. Check this link too, it is also having nice collection of VC++ interview question.
http://www.mindstick.com/Interviewer/QuestionPage.aspx?topicid=3&topic=VC%2b%2b

:agreeThanks Everyone!!
Posted by nandagopal
 - Jan 20, 2009, 09:36 PM


Nice interview collection!!!


post more !!!!


Posted by sajiv
 - Sep 01, 2008, 07:45 PM

Why Array Index starts from Zero?
This boils down to the concept of Binary digits. Take an
array size of 64 for example. We start from 0 and end at
63. We require 6 bits.But, if we were to start from 1 and
end at 64, we would require 7 bits to store the same
number, thus increasing the storage size.

How can server communicate with more than one client?
Server can communicate with more than one client with using
threading concepts
there are java threads which are allocated to every client
when he logs in to server,the thread handles the client.

What is command routing in VC++?
in SDI:
View -> Doc -> FrameWnd -> App.

In MDI:
View->CDocument->CMDIChildWnd ->CMDIFrameWnd -> CWinApp.

:acumen