Here students of GMACPS can ask their doubts about September 2012 Exam.
Please allow us 2-3 hours to reply back your queries.
Thank you.
And Best of luck!
You can also ask your doubts on facebook
Other updates:
September 2012 Test Syllabus (quadd.co.cc)
THIS HELP-DESK IS CLOSED w.e.f. September 19, 2012 6:00 A.M.
Please allow us 2-3 hours to reply back your queries.
Thank you.
And Best of luck!
You can also ask your doubts on facebook
Other updates:
September 2012 Test Syllabus (quadd.co.cc)
THIS HELP-DESK IS CLOSED w.e.f. September 19, 2012 6:00 A.M.
Ques: Evaluate the following c++ expression where a=5,b=3 and both a and b are of integer data type.
ReplyDeletec=a-(b++)*(--a)
Answer is -8 but not getting how according to me it should be -7 but it is -8
question.----what is importance of 'stored program concept'?
ReplyDeleteanybody having answer please tell......
@Nirvair Singh
DeleteThis concept was introduced by John Von Neumann and the basic idea behind this concept is that a sequence of instructions can be stored in the memory of the computer for automatically directing the flow of operation and this concept enabled computers to be much more powerful and flexible. We can even store data on computer memory and can modify it whenever we want, we can do all this because of this 'stored program concept'.
This concept was first introduced in EDVAC (Electronic Discrete Variable Automatic Computer)
ok thanks supreet..
DeleteTypes of assignment operators?
ReplyDeleteTypes of assignment operators?
ReplyDeleteAssignment operator (=)
Deleteand its shorthand variants ( += *= etc.)
on quadd the syllabus is given but max marks given are 80 and at last note is written that q.paper will be of 70 marks......please tell me how much marks will q.paper contain....
ReplyDeleteit will be of 70 marks.
Delete30 marks practical
total = 100
what are multi line comments
ReplyDeleteA comment is text that the compiler ignores but is useful for programmers. Comments are normally used to annotate i.e. add explanation etc about the code for future reference.
DeleteIn C++ multi line comments are written in the following way :
The /* (slash, asterisk) characters, followed by any sequence of characters (including new lines), followed by the */ characters.
thanks supreet.....
Deletehow to change binary to decimal and decimal to binary?........actually i have lost my notebook and now requesting for answer..
ReplyDeleteto change binary to decimal use that multiplication method and for changing decimal to binary use division method.
Deletei hope you are clear about these methods.