On Tue, Feb 26, 2013 at 2:25 PM, Laraib Qadri <charmistic28@gmail.com> wrote:
Todays My CS304 Exam QuestionsHow can we set the default values for non type parameters?Describe three properties necessary a container to implement generic algorithms.Write three important features of virtual functions. with exampleThe least one advantage and Disadvantage of TemplateGive the names of two types of containers basically known as first class containersConsider the code below,template< typename T >class T1 {public:T i;protected:T j;private:T k;friend void Test();};This code has a template class T1 with three members i,j and k and a friend function Test(), you have todescribe which member/s of T1 will be available in function Test().What is the output produced by the following program?#include<iostream.h>void sample_function(double test) throw (int);int main(){try{cout <<"Trying.\n";sample_function(98.6);cout << "Trying after call.\n";}catch(int){cout << "Catching.\n";}cout << "End program.\n";return 0;}void sample_function(double test) throw (int){cout << "Starting sample_function.\n";if(test < 100)throw 42;}See the 5 code snippets below and tell whether these are correct or incorrect also justify your answers in thetable given at the end.Snippet No.1template< class T>class A {} ;template< class T >class B : public A< T* >{ … }Snippet No.2template< >class B< int* > : public A< T* >{ … }Snippet No.3class B : public A< T* >{ … }Snippet No.4template< >class B< char* > : public A{ … };Snippet No.5template< class T >class B : public A< T* >{ … }Table:
Snippet
No.
Is it correct or not (Correct/ Incorrect)
Justification of your answer
1
2
3
4
5
State any conflict that may rise due to multiple inheritance?"Nobody can make you feel inferior without your permission."--
-- --
Please visit www.vuzs.net For Current & Old Papers, Quizzes, Assignments and study material.
To post a new message on this group, send email to vuZs@googlegroups.com
Message Posting Rules: http://www.vuzs.net/faq/4795-vuzs-google-groups-basic-rules-for-posting-messages.html
--
To unsubscribe from this group, send email to vuZs+unsubscribe@googlegroups.com
--
To join this group Send blank email to vuZs+subscribe@googlegroups.com
or visit
http://groups.google.com/group/vuZs/subscribe
---
You received this message because you are subscribed to the Google Groups "vuZs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vuZs+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
For University of Pakistan Study Material Sharing, Discussion, etc, Come and join us at http://4e542a34.linkbucks.com
You received this message because you are subscribed to the Google
Groups "Study" group.
To post to this group, send email to http://ca13054d.tinylinks.co
For more options, visit this group at
http://004bbb67.any.gs
For University of Pakistan Study Material Sharing, Discussion, etc, Come and join us at http://4e542a34.linkbucks.com
You received this message because you are subscribed to the Google
Groups "Study" group.
To post to this group, send email to http://ca13054d.tinylinks.co
For more options, visit this group at
http://004bbb67.any.gs
No comments:
Post a Comment
Note: only a member of this blog may post a comment.