Basics of Computers
This test consists of 20 questions related to computer basics, which includes software programming languages, operating system, database, data structure, networking etc.
Questions
How many bits of fixed block of text is used in DES (Data Encryption Standard) algorithm?
- 56 bits
- 64 bits
- 32 bits
- 16 bits
- None of the above
Which of the following statement(s) is/are incorrect?
- A primary key cannot be NULL.
- A foreign key can be NULL.
- A foreign key can have the same name as primary key.
- A foreign key can have the name other than the primary key.
- None of the above
Which of the following algorithms uses a hashing function to compute the public keys in cryptography?
- Diffie-Hellman
- DES( Data Encryption standard)
- IDEA (International Data Encryption Algorithm)
- Both (1) and (2)
- None of the above
Which of the following statement(s) is/are true?
- A view in database provides security.
- A view can hide the complexity of data in the database.
- A view can act as aggregate tables.
- A view can join multiple tables and simplify them as a single table.
- All of the above are true statements.
Which of the following statement(s) is/are false?
- Transitive dependency exists in the 3rd normal form of database.
- 1st normal form ensures that there should be a unique identifier for each row.
- 3rd normal form should be in 2nd normal form.
- Normalisation is used to eliminate redundant data.
- None of the above
Which of the following statements is/are not true?
- Quick sort uses a pivot element to sort the array.
- Heap sort is a stable sort.
- Merge sort is a stable sort.
- Both (2) and (3)
- None of the above
Which of the following data structures has an application named 'Backtracking'?
- Stack
- Queue
- Tree
- Array
- None of the above
Which of the following is/are not a framework?
- Spring
- Struts
- Groovy
- Grails
- All of the above
Which of the following statements is true about queue data structure?
- A queue is a FIFO type.
- Queue can be implemented by linked list.
- Queue can be implemented by array.
- Both (1) and (2).
- (1), (2) and (3) all are true.
Identify the language(s) that is/are not object-oriented.
- Java
- C#
- C++
- Both (2) and (3)
- None of the above
Which of the following rules of the E.F. Codd ensures that a user view should be unchanged in case of changing the table structures of the database?
- Logical data independence
- Physical data independence
- Integrity independence
- View updation rule
- None of the above
Which of the following is not a valid operator in Java script language?
- ==
- ===
- !=
- >
- None of the above
Which of the following is not a database server?
- MySQL
- DB2
- Oracle
- Informix
- None of the above
Which of the following is/are a server side scripting language(s)?
- Java Script
- PHP
- ASP .Net
- Both (2) and (3)
- (1), (2) and (3) all are true
Which of the following is not an application server?
- IBM Websphere Server
- Weblogic Server
- Tomcat Server
- Glass Fish Server
- None of the above
Which of the following symbols is used to define the id selector in the Cascading Style Sheets (CSS)?
- #
- dot (.)
- &
- @
- None of the above
Which of the following is a precondition of the binary search?
- Binary search is not efficient for large data values like 1000 records.
- Array should be either in ascending or descending sorted order.
- Mid element should be already defined in the given array.
- Both (1) and (2)
- None of the above
Why is $_SESSION variable used in PHP?
- It is used to start a session.
- It is used to destroy the session.
- It is used to store a session variable.
- Both (1) and (3)
- None of the above
Which of the following SQL functions returns the number of values from the specified column with no NULL value consideration?
- COUNT
- SUM
- AVG
- MAX
- None of the above
Which of the following is an example of queue data structure?
- Tower of Hanoi
- CPU scheduling
- Quick sort
- All of the above
- None of the above