Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Wissen Infotech Team. If you also belong to the team, you can get access from here

Wissen Infotech Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 457 Reviews

Filter interviews by

Wissen Infotech SQL Server Developer Interview Questions and Answers

Updated 31 Jan 2023

Wissen Infotech SQL Server Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions about stored Procedures, Nested Stored Procedures, Dynamic Sql, Row level Aggregations, Count of male or female as new column along with existing columns, Recursive CTE, Difference between Temp D...
  • Q2. Some concepts about DWH and Datamarts, Cube creation, Dimension and facts, Mdx queries,
Round 2 - Technical 

(1 Question)

  • Q1. Technical round 2 will be of describing about the workflow in a day to day business in agile methodologies, non technical questions relating to team environment, How you get the daily tasks from whom and w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Basically prepare all fundamentals of SQL about what DDL, DML,DQL stands for and where to use them theoretical knowledge of all the concepts we use in sql, differences of each concept relating to other and mostly T-SQL concepts to crack the 2 technical rounds of interview and then Hr Round to discuss about salary negotiation, Reporting date all other documents and related discussions will be done with HR.

Good Luck

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the join
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Window functions, optimization, normalization
  • Q2. Index and types, constraints
Round 2 - Technical 

(1 Question)

  • Q1. 3 SYNTAX TESTS, CONSTRAINTS, INDEX, OPTIMIZATION, NORMALIZATION
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about ur self
  • Q2. And some sql queries and questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They informed me through call that i cleared first round . but no further response from them .for follow up also no reply ..citiustech Pune
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. I was received a call directly from Talent Acquisition of Cybage . Then a Technical round was scheduled. I was interviewed for SQL developer role. All basics from SQL was asked and a scenario question w...
Round 3 - HR 

(2 Questions)

  • Q1. HR discussion about Company, salary etc
  • Q2. Why do you want to join Cybage?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and speak what you know, dont lie 😊
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain locks and latches
  • Ans. 

    Locks and latches are mechanisms used in database management systems to control access to data and ensure data integrity.

    • Locks are used to control access to data by preventing multiple users from modifying the same data simultaneously.

    • Latches are lightweight synchronization mechanisms used to protect data structures in memory.

    • Locks can be of different types such as shared locks, exclusive locks, and update locks.

    • Latche...

  • Answered by AI
  • Q2. Isolation level in DB
  • Ans. 

    Isolation level determines how transactions interact with each other in a database.

    • Isolation levels include Read Uncommitted, Read Committed, Repeatable Read, Serializable.

    • Higher isolation levels provide more data consistency but may lead to more locking and potential performance issues.

    • Example: Using Read Uncommitted isolation level allows reading uncommitted data, while Serializable ensures data integrity but may lea...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain MVVM architecture
  • Ans. 

    MVVM is an architectural pattern that separates the UI, business logic, and data layers in an Android app.

    • Model: Represents the data and business logic of the application.

    • View: Represents the UI components of the application.

    • ViewModel: Acts as a mediator between the Model and View, handling communication and logic.

    • Data binding: MVVM uses data binding to synchronize the View and ViewModel.

    • Example: In an Android app, the...

  • Answered by AI
  • Q2. Explain Java Basic concept
  • Ans. 

    Java is a high-level programming language known for its simplicity and versatility.

    • Java is an object-oriented language

    • It is platform-independent due to its 'write once, run anywhere' principle

    • Java uses a virtual machine (JVM) to execute code

    • It supports multithreading for concurrent programming

    • Java has automatic memory management through garbage collection

  • Answered by AI
  • Q3. Explain Kotlin modifiers
  • Ans. 

    Kotlin modifiers are keywords used to modify classes, properties, functions, and other elements in Kotlin programming language.

    • Kotlin modifiers include 'public', 'private', 'protected', 'internal', 'open', 'final', 'abstract', 'override', 'lateinit', 'const', 'companion', 'inline', 'data', 'sealed', 'inner', etc.

    • Modifiers like 'public', 'private', 'protected', and 'internal' control the visibility of classes, functions...

  • Answered by AI
  • Q4. Explain RXJava networking library
  • Ans. 

    RXJava is a popular Java library for composing asynchronous and event-based programs using observable sequences.

    • RXJava provides a powerful way to handle asynchronous operations by using observables and subscribers.

    • It simplifies complex asynchronous code by allowing developers to chain operations and handle errors more easily.

    • RXJava is commonly used in Android development for handling network requests and background tas...

  • Answered by AI
  • Q5. Explain Git commit , merge and rebase command
  • Ans. 

    Git commit records changes to the repository, merge combines changes from different branches, and rebase moves changes to a new base commit.

    • Git commit saves changes to the local repository with a message describing the changes made.

    • Git merge combines changes from different branches into the current branch.

    • Git rebase moves changes from one branch to another by applying each commit from the source branch to the target br

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Ask questions on Android and java

Round 3 - Coding Test 

Given small easy project for test given in few hours.

Interview Preparation Tips

Interview preparation tips for other job seekers - Never join this organisation recommend. No work only bug fix.

Interview Questionnaire 

2 Questions

  • Q1. Backup and restore strategy?
  • Ans. 

    A backup and restore strategy is essential for ensuring data recovery in case of system failure or disaster.

    • Regularly schedule full and incremental backups

    • Store backups in a secure offsite location

    • Test backups regularly to ensure data integrity

    • Have a documented restore plan in place

    • Consider using third-party backup and restore tools

  • Answered by AI
  • Q2. Performance tuning and query optimization

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Threading kotlin
  • Q2. Play services security

Wissen Infotech Interview FAQs

How many rounds are there in Wissen Infotech SQL Server Developer interview?
Wissen Infotech interview process usually has 3 rounds. The most common rounds in the Wissen Infotech interview process are Technical and Resume Shortlist.

Tell us how to improve this page.

Wissen Infotech SQL Server Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 797 Interviews
CitiusTech Interview Questions
3.4
 • 266 Interviews
View all
Software Engineer
366 salaries
unlock blur

₹3.5 L/yr - ₹14 L/yr

Junior Software Engineer
238 salaries
unlock blur

₹2.4 L/yr - ₹6.3 L/yr

Senior Software Engineer
184 salaries
unlock blur

₹5.9 L/yr - ₹24.2 L/yr

Associate Software Engineer
182 salaries
unlock blur

₹2.8 L/yr - ₹8.5 L/yr

Junior Engineer
86 salaries
unlock blur

₹2.4 L/yr - ₹5.9 L/yr

Explore more salaries
Compare Wissen Infotech with

Wissen Technology

3.9
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview