Companywise Interview Questions
Zensar Interview Questions - 1
- Explain your roles and responsibilities in your project?
- Explain Scenario in your project?
- How the data load into the fact table in your project ?
- Which types of transformations you have used to load data in fact table in your project?
- Which types of indexes you have used in fact table?
- What is the difference between Fact table and Dimension table ?
- Can we create a primary key on table having clustered index already?
- How to improve performance of existing procedures?
- Which types of transformations you have used in your project?
- Explain different types of join?
- For below tables what will be the output of below joins:
INNER JOIN
LEFT JOIN
RIGHT JOIN
FULL JOIN
CROSS JOIN
Table A Table B
1 1
1 1
1 1
0 1
NULL
- What will be the output of below query?
Table 1 Table2
1 1
1 1
1 1
0 1
4 NULL
5
6
SELECT Table1.ID FROM Table1
WHERE Table1.ID NOT IN (SELECT Table2.ID FROM Table2)
- What is the difference between Drill Through and SubReports?
- Have you used Subscriptions in your project? Explain it?
Post a Comment
0 Comments