Searching for a new job can be so stress that it can turn into a job itself. If you are expertise in Adobe Systems and graphics making then prepare well for the job interviews to get your dream job. Here's our recommendation on the important things to need to prepare for the job interview to achieve your career goals in an easy way. Database is a systematic collection of data and an electronic filing system. Databases helps in storing and manipulating the data. Databases are created in such a way that data is stored, retrieved, manipulated and deleted with operations. Follow Wisdomjobs page for Database job interview questions and answers page to get through your job interview successfully in first attempt.
Question 1. Explain What Is Sqlite Transactions?
Answer :
The transaction is referred as a unit of work that is performed against a database. It is the propagation of one or more changes to the database. Properties of transactions are determined by ACID.
Question 2. What Does Sql Stand For, And What Is It Used For?
Answer :
SQL stands for structured query language, used with relational databases. It is used to query, update, and retrieve the contents of databases.
Question 3. List Out The Areas Where Sql Lite Works Well?
Answer :
SQL lite works well with :
Question 4. What Are Attributes?
Answer :
An attribute is a column in a table.
Question 5. Differentiate Between A Having Clause And A Where Clause.
Answer :
HAVING CLAUSE :
WHERE Clause :
Question 6. What Is Data Mining And How Can It Be Used?
Answer :
Data mining refers to any procedure for collecting, analyzing, and summarizing the contents of a database. It can be used to judge the success of a business, marketing campaigns, and to forecast future trends.
Question 7. Mention What Are The Sql Lite Storage Classes?
Answer :
SQL lite storage classes include :
Question 8. What Is Database Normalization And Why Is It Done?
Answer :
This is the process of organizing data in a database efficiently, and it is done to make sure that connections and dependencies between data make sense, and to get rid of redundant data.
Question 9. What Do Constraints Do? What Are The Types Of Constraints?
Answer :
Constraints are used to prevent the database from losing internal and external integrity. The types are: check, not null, unique, primary key, and foreign key.
Question 10. What Are Fact Tables?
Answer :
Tables which track the progress of a certain process or activity, the primary tables of databases.
Question 11. Describe The Three Levels Of Data Abstraction?
Answer :
Question 12. Explain What Is The Use Of Sqlite Group By Clause?
Answer :
The SQLITE group by clause is used in collaboration with the SELECT statement to arrange identical data into groups.
Question 13. When Is The Update_statistics Command Used?
Answer :
Question 14. Explain How Boolean Values In Sql Lite Are Stored?
Answer :
Boolean values in SQL lite are stored as integers 0 (false) and 1 (true). SQL Lite does not have a separate Boolean storage class.
Question 15. Explain What Is Sql Lite?
Answer :
SQL LITE is a mostly ACID compliant relational database management system contained in a relatively small C programming library.
Question 16. Give A Comment On Transaction?
Answer :
Question 17. List Out The Standard Sql Lite Commands?
Answer :
The standard SQL Lite commands interact with relational databases are similar to SQL. They are
Based on their operational nature these commands can be classified.
Question 18. Define The "integrity Rules"?
Answer :
There are two Integrity rules.
Entity Integrity: States that "Primary key cannot have NULL value".
Referential Integrity: States that "Foreign Key can be either a NULL value or should be Primary Key value of other relation.
Question 19. What Is Database?
Answer :
A database is a logically coherent collection of data with some inherent meaning, representing some aspect of real world and which is designed, built and populated with data for a specific purpose.
Question 20. Segregate Database Technology’s Development?
Answer :
The development of database technology is divided into:
Question 21. What Are The Features Of Database Language?
Answer :
A database language may also incorporate features like:
Question 22. What Do Database Languages Do?
Answer :
As special-purpose languages, they have:
Question 23. Define Database Model?
Answer :
A data model determining fundamentally how data can be stored, manipulated and organised and the structure of the database logically is called database model.
Question 24. Enlist The Various Relationships Of Database?
Answer :
The various relationships of database are:
Question 25. Define Normalization?
Answer :
Organized data void of inconsistent dependency and redundancy within a database is called normalization.
Question 26. Enlist The Advantages Of Normalizing Database?
Answer :
Advantages of normalizing database are:
Question 27. Define De Normalization?
Answer :
Boosting up database performance, adding of redundant data which in turn helps rid of complex data is called denormalization.
Question 28. Define Ddl And Dml?
Answer :
Managing properties and attributes of database is called Data Definition Language(DDL).
Manipulating data in a database such as inserting, updating, deleting is defined as Data Manipulation Language. (DML)
Question 29. Enlist Some Commands Of Ddl?
Answer :
CREATE: Create is used in the CREATE TABLE statement.
Syntax is: CREATE TABLE [column name] ( [column definitions] ) [ table parameters]
ALTER: It helps in modification of an existing object of database.
Syntax is: ALTER objecttype objectname parameters.
DROP: It destroys an existing database, index, table or view.
Syntax is: DROP objecttype objectname.
Question 30. Define Union All Operator And Union?
Answer :
Full recordings of two tables is Union All operator.A distinct recording of two tables is Union.
Answer :
A database object which helps in manipulating data row by row representing a result set is called cursor.
Question 32. Enlist The Cursor Types?
Answer :
They are:
Dynamic: it reflects changes while scrolling.
Static: doesn’t reflect changes while scrolling and works on recording of snapshot.
Keyset: data modification without reflection of new data is seen.
Question 33. Define Sub-query?
Answer :
A query contained by a query is called Sub-query.
Question 34. Why Is Group-clause Used?
Answer :
Group-clause uses aggregate values to be derived by collecting similar data.
Question 35. Compare Non-clustered And Clustered Index?
Answer :
Both having B-tree structure, non-clustered index has data pointers enabling one table many non-clustered indexes while clustered index is distinct for every table.
Question 36. Define Aggregate Functions?
Answer :
Functions which operate against a collection of values and returning single value is called aggregate functions.
Question 37. Define Scalar Functions?
Answer :
Scalar function is depended on the argument given and returns sole value.
Question 38. What Restrictions Can You Apply When You Are Creating Views?
Answer :
Restrictions that are applied are:
Question 39. Define “correlated Sub Queries”?
Answer :
A ‘correlated subquery’ is a sort of sub query but correlated subquery is reliant on another query for a value that is returned. In case of execution, the sub query is executed first and then the correlated query.
Question 40. Define Data Warehousing?
Answer :
Storage and access of data from the central location in order to take some strategic decision is called Data Warehousing. Enterprise management is used for managing the information whose framework is known as Data Warehousing.
Question 41. Define Join And Enlist Its Types?
Answer :
Joins help in explaining the relation between different tables. They also enable you to select data with relation to data in another table.
The various types are:
INNER JOINs: Blank rows are left in the middle while more than equal to two tables are joined.
OUTER JOINs: Divided into Left Outer Join and Right Outer Join. Blank rows are left at the specified side by joining tables in other side.
Other joins are CROSS JOINs, NATURAL JOINs, EQUI JOIN and NON-EQUI JOIN.
Question 42. What Do You Mean By Index Hunting?
Answer :
Indexes help in improving the speed as well as the query performance of database. The procedure of boosting the collection of indexes is named as Index hunting.
Question 43. How Does Index Hunting Help In Improving Query Performance?
Answer :
Index hunting helps in improving the speed as well as the query performance of database. The followed measures are achieved to do that:
Question 44. Enlist The Disadvantages Of Query?
Answer :
The disadvantages of query are:
Question 45. Enlist Ways To Efficiently Code Transactions?
Answer :
Ways to efficiently code transactions:
Question 46. What Is Executive Plan?
Answer :
Executive plan can be defined as:
Answer :
A data structure in the form of tree which stores sorted data and searches, insertions, sequential access and deletions are allowed in logarithmic time.
Question 48. Differentiate Table Scan From Index Scan?
Answer :
Iterating over all the table rows is called Table Scan while iterating over all the index items is defined as Index Scan.
Question 49. What Do You Mean By Fill Factor Concept With Respect To Indexes?
Answer :
Fill Factor can be defined as being that value which defines the percentage of left space on every leaf-level page that is to be packed with data. 100 is the default value of Fill Factor.
Question 50. Define Fragmentation?
Answer :
Fragmentation can be defined as a database feature of server that promotes control on data which is stored at table level by the user.
Question 51. What Do You Mean By Query Evaluation Engine?
Answer :
Query Evaluation Engine executes the low-level instructions that are generated by the compiler.
Question 52. Define Ddl Interpreter?
Answer :
DDL statements are interpreted and recorded in tables called metadata.
Question 53. Define Database System?
Answer :
DBMS along with database is called Database system.
Question 54. Explain The Importance Of Partitioning?
Answer :
Splitting of one table which is large into smaller database entities logically is called database partitioning. Its benefits are:
Question 55. What Is Database Partitioning?
Answer :
Division of logical database into independent complete units for improving its management, availability and performance is called Database partitioning.
Question 56. Define Atomicity And Aggregation?
Answer :
Atomicity: It’s an all or none concept which enables the user to be assured of incomplete transactions to be taken care of. The actions involving incomplete transactions are left undone in DBMS.
Aggregation: The collected entities and their relationship are aggregated in this model. It is mainly used in expressing relationships within relationships.
Question 57. Enlist The Various Transaction Phases?
Answer :
The various transaction phases are:
Question 58. Define Object-oriented Model?
Answer :
Compilations of objects make up this model in which values are stored within instance variables which is inside the object. The object itself comprises bodies of object for its operation which are called methods. Objects containing same kind of variables and methods are called classes.
Answer :
It can be defined as being a ‘thing’ with an independent existence in the real world.
Question 60. Define Entity Set ?
Answer :
Compilation of all entries of any particular type of entry in the database is called Entity Set.
Database Related Tutorials |
---|
MongoDB Tutorial |
All rights reserved © 2020 Wisdom IT Services India Pvt. Ltd
Wisdomjobs.com is one of the best job search sites in India.