Placement Papers: PSI Paper 2008

Glide to success with Doorsteptutor material for CTET/Paper-2 : get questions, notes, tests, video lectures and more- for all subjects of CTET/Paper-2.

There are two sections

  1. technical qs-20
  2. apptitute qs-25 Technical Largest integer can be written from 8 bits is
    1. 256
    2. 255
    3. 8
    4. 10

change a hexadecimal no to octal

how many address lines needed to pass 1MB of data.

What is the function of the modulus operator in most language.

  1. Sets a system environmental value to either base 10, base 8 or base 16
  2. Returns the remainder after dividing one number by another
  3. Returns the first argument raised to the second argument power
  4. Prints out the actual code written to standard output rather than executing the code

class professor {}

class teacher: Public virtual professor {} .

class researcher: Public virtual professor {}

class myprofessor: Public teacher, public researcher {} .

Referring to the sample code above, if an object of class myprofessor were created, how many instances of professor will it contain?

  1. 0
  2. 1
  3. 2
  4. 3

Modern RDBMS s perfom the following the following functionc except ________.

  1. Force column values in one table to match any of the values in a column of another table
  2. Automatically replicate data on another server
  3. Automatically create new indexes based on query history
  4. Prevent unauthorized users from accessing data at the firls level

RDBMS triggers are typically bound to a ________and one or more

  1. Table, SQL statement types
  2. SQL statement type, user
  3. Column, rows
  4. User, table

What relationship is resolved by an intersecting or associative entity?

  1. Recursive
  2. Mandatory one to one
  3. Many to Many
  4. One to One

Make a copy of file upper in the directory two levels up:

  1. jump-2 upper
  2. cp upper. /. (answer) .
  3. cp upper-2/
  4. None of the above

i = 0.

j = 0.

for (j = 1; j < 10; j ++)

i = i + 1.

In the (generic) code segment above what will be the value of the variable i at completion?

  1. 0
  2. 1
  3. 3
  4. 9
  5. 10

Which of the following statements is true when a derivation inherits both a virtual and non-virtual instance of a base class?

  1. Each derived class object has base objects only from the non virtual instance
  2. Each base class object has derived objects only from the non-virtual instance
  3. Each derived class object has base objects only from the virtual instance
  4. Each derived class object has a base object from the virtual instance and a base object from non-virtual instance.

class Word {public: Word (const char ⚹ , int = 0) ;} .

Referring to the sample code above what is the minimum number of arguments required to call the constructor?

  1. 0
  2. 1
  3. 2
  4. 3

What is the function of the modulus operator in most languages?

  1. Sets a system environmental value to either base 10, base 8 or base 16
  2. Returns the remainder after dividing one number by another
  3. Returns the first argument raised to the second argument power
  4. Prints out the actual code written to standard output rather than executing the code

lass professor {}

class teacher: Public virtual professor {} .

class researcher: Public virtual professor {}

class myprofessor: Public teacher, public researcher {} .

Referring to the sample code above, if an object of class myprofessor were created, how many instances of professor will it contain?

  1. 0
  2. 1
  3. 2
  4. 3

Modern RDBMS՚s perfom the following the following functionc except

  1. Force column values in one table to match any of the values in a column of another table
  2. Automatically replicate data on another server
  3. Automatically create new indexes based on query history
  4. Prevent unauthorized users from accessing data at the firls level

Which is not the characteristics of a view?

  1. Consumes Disk space for data
  2. Multiple tables
  3. Multiple rows
  4. Updateable

RDBMS triggers are typically bound to a ________and one or more ________

  1. Table, SQL statement types
  2. SQL statement type, user
  3. Column, rows
  4. User, tables

What relationship is resolved by an intersecting or associative entity?

  1. Recursive
  2. Mandatory one to one
  3. Many to Many
  4. One to One

Make a copy of file upper in the directory two levels up:

  1. jump-2 upper
  2. cp upper. /.
  3. cp upper-2/
  4. None of the above