Skip to main content

CS304 Current Final Term Paper Fall 2013 File 9





  1. What do you know about function templates? Describe it briefly.
  1.  Explain the statement below,
vector<int> ivec(4, 3);

  1. Give the name of two basic types of containers collectively called First class containers?
  1. What is difference between simple association and aggregation?
  1. Enlist the kinds of association with respect to Cardinality.
  1. Identify and correct the syntax error(s) in the given code snippet?
template<classname T>
class Template_class {

                   private:
                   T data;
                   //…
                   Public:
                             //…
                    void input();
           };
template< class T >
void Template_class::input(  ) {
cin>>data;
}
void main()
{
Template_class <int>obj;
obj.input();
}

  1. Consider 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 to describe which member/s of T1 will be available in function Test().

  1. Give the general syntax of nested try catch blocks?

  1. Consider the following code:
class Tutor{
int id;
char * name;
public:
Tutor(int, char*){
-------
-------
}
Tutor(const Tutor & obj){
------
------
}
};
Implement copy constructor for the Tutor class by shallow copy and by deep copy.

10. What would be the output of this code?

class mother {
  public:
    mother ()
      { cout "mother: no parameters\n"; }
    mother (int a)
      { cout "mother: int parameter\n"; }
};

class daughter : public mother {
  public:
    daughter (int a)
      { cout "daughter: int parameter\n\n"; }
};

class son : public mother {
  public:
    son (int a) : mother (a)
      { cout "son: int parameter\n\n"; }
};

int main () {
  daughter rabia (0);
  son salman(0);

  return 0;
}



11. 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;
 }

12. Write C++ code for the constructor of following template Vector class.

template< class T >
class Vector {
private:
        T* ptr;
        int size;
        int index;
public:
        Vector( int = 10 );  // constructor  
};



Comments

Popular posts from this blog

CS614 Quiz No.4 Shared by Princess (solved), Spring 2014

  “What means What”. The phrase refers to: Select correct option:  Meta data  External data Transformed data Internal representations Question # 2 of 10 Which of the following is NOT one of the activities of “Maintenance and Growth” phase in Kimball’s DWH development approach? Select correct option: Education Technical Education Program Support  Interface Deployment                 Question # 3 of 10 Horizontally wide data means: Select correct option: Dataset has large no. of attributes Dataset has large no. of records Dataset has attribute skews Dataset has partitioning skews                 Question # 4 of 10 Which of the following is NOT one of the top-10 mistakes that should be avoided during DWH development? Select correct option: Not interacting directly with end ...

CS614 Quiz No.4 Shared by MT Khan (Solved)

Question # 1 of 10 ( Start time: 09:04:39 PM ) Total Marks: 1 A typical cycle of implementing the change in DWH comprises of the sequence: Select correct option: Production -> QA -> Development Development-> QA -> Production(CORRECT) Development -> Production -> QA Production -> Development -> QA Question # 2 of 10 ( Start time: 09:05:16 PM ) Total Marks: 1 Vertically wide data means: Select correct option: Dataset has large no. of attributes Dataset has large no. of records(CORRECT) Dataset has attribute skews Dataset has partitioning skews Question # 3 of 10 ( Start time: 09:05:43 PM ) Total Marks: 1 In ___________ phase of kimballs approach, we identify the components needed now and in future. Select correct option: Requirement definition Architectural design Product development Analytical application development Question # 4 of 10 ( Start time: 09:06:56 PM ) Total Marks: 1 Technical architecture design supports the communicat...

CS614 Quiz No.3 Shared by Students (Solved), Spring 2014

______ index stores first value in each block in the sequential file and a pointer to the block.  Select correct option:   Dense  Sparse  B-Tree  Hash In context of data parallelism, the work done by query processor should be:  Select correct option:  Almost zero  Maximum  Pipelined  Filtered across partitions The optimizer uses a hash join to join two tables if they are joined using an equijoin and  Select correct option:   Outer table has less number of rows  Inner table has less number of rows  Cardinality of tables is equal  Large amount of data needs to be joined Bitmap index is appropriate for:  Select correct option:  Low cardinality data  High cardinality data  Clustered data  Aggregated data If a task takes “T” time units to execute on a single data item, then execution of this task on “N” data items will take __...