Upload Button Icon Add office photos

Filter interviews by

Wilco Source Interview Questions, Process, and Tips

Updated 6 Dec 2024

Top Wilco Source Interview Questions and Answers

View all 36 questions

Wilco Source Interview Experiences

Popular Designations

4 interviews found

Salesforce Solution Architect II Interview Questions & Answers

user image Kapil Patle

posted on 6 Dec 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Architecture, Design, Proposal and All functoonal
  • Q2. Detailed technical discussion
Round 2 - Technical 

(2 Questions)

  • Q1. Deep dive in design & architecture
  • Q2. Deep dive in technical
Round 3 - Technical 

(2 Questions)

  • Q1. Tech cum management
  • Q2. Stakeholder related

I applied via Naukri.com and was interviewed in Jan 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 

(19 Questions)

  • Q1. How do you improve web application? what are the tools you have used? (Or how do you check performance)
  • Ans. 

    To improve web application, I use tools like profiling, caching, compression, and optimization.

    • I use profiling tools like MiniProfiler and Glimpse to identify performance bottlenecks.

    • I implement caching using tools like Redis and Memcached to reduce database queries and improve response time.

    • I use compression techniques like Gzip and Brotli to reduce the size of files sent over the network.

    • I optimize images, scripts, a...

  • Answered by AI
  • Q2. What Is MVC and which is better MVC Or asp.net web form
  • Ans. 

    MVC is a design pattern used in web development. MVC is better than ASP.NET web forms for complex applications.

    • MVC separates application into Model, View, and Controller

    • MVC provides better control over HTML, CSS, and JavaScript

    • MVC is better for complex applications with multiple developers

    • ASP.NET web forms are better for simple applications with rapid development

    • MVC is more testable than ASP.NET web forms

  • Answered by AI
  • Q3. What is Razor engine. How it is differs from typical asp page, which one is fast
  • Ans. 

    Razor engine is a markup syntax used to create dynamic web pages in ASP.NET. It is faster than typical ASP pages.

    • Razor engine is a server-side markup syntax used to create dynamic web pages in ASP.NET

    • It allows developers to embed server-side code into HTML content

    • Razor pages are faster than typical ASP pages because they are compiled into C# code before being executed

    • Razor pages have a cleaner syntax and are easier to

  • Answered by AI
  • Q4. What is the LINQ equivalent of LEFT JOIN in SQL
  • Ans. 

    LINQ equivalent of LEFT JOIN is DefaultIfEmpty()

    • Use DefaultIfEmpty() method to perform LEFT JOIN in LINQ

    • Use into keyword to create a temporary variable for the join

    • Example: var result = from a in tableA

    • join b in tableB on a.Id equals b.Id into temp

    • from b in temp.DefaultIfEmpty()

    • select new { a.Id, b.Name }

  • Answered by AI
  • Q5. In Entity framework what is code first and what is DB first
  • Ans. 

    Code First and DB First are two approaches to create Entity Framework models.

    • Code First: Create classes first and generate database schema from them.

    • DB First: Create database schema first and generate classes from it.

    • Code First is more flexible and allows for easier version control.

    • DB First is useful when working with legacy databases.

    • Both approaches use Entity Framework to map database tables to classes.

  • Answered by AI
  • Q6. What tool used for create models once we created DB Tables in Entity Framework
  • Ans. 

    Scaffold tool is used to create models in Entity Framework

    • Scaffold-DbContext command in Package Manager Console

    • Visual Studio's Add New Item > ADO.NET Entity Data Model

    • Entity Data Model Wizard in Visual Studio

  • Answered by AI
  • Q7. What tool is used to create class objects from DB First
  • Ans. 

    Entity Framework is used to create class objects from DB First

    • Entity Framework is a popular ORM tool used in .NET development

    • It can generate classes based on an existing database schema

    • This process is known as Database First approach

    • The generated classes are called Entity Classes

    • Entity Framework also supports Code First and Model First approaches

  • Answered by AI
  • Q8. What is web API... explain it
  • Ans. 

    Web API is a framework for building HTTP services that can be accessed from various clients.

    • Web API is built on top of ASP.NET framework.

    • It supports HTTP verbs like GET, POST, PUT, DELETE, etc.

    • It can return data in various formats like JSON, XML, etc.

    • It can be used to build RESTful services.

    • It can be consumed by various clients like web browsers, mobile apps, etc.

  • Answered by AI
  • Q9. Explain about SOLID Principle
  • Ans. 

    SOLID is a set of principles for object-oriented programming that aims to make software more maintainable, scalable, and flexible.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes must be substitutable for their base types.

    • I - Interface Segreg...

  • Answered by AI
  • Q10. Explain Agile Process.
  • Ans. 

    Agile process is an iterative approach to software development that emphasizes flexibility and customer satisfaction.

    • Agile process involves breaking down the project into smaller, manageable chunks called sprints.

    • Each sprint typically lasts 1-4 weeks and results in a working product increment.

    • The team works closely with the customer to ensure that the product meets their needs and expectations.

    • Agile process values indi...

  • Answered by AI
  • Q11. What is Scaffolding in MVC
  • Ans. 

    Scaffolding is a code generation technique used in MVC to create basic CRUD operations for a model.

    • Scaffolding generates boilerplate code for Create, Read, Update, and Delete operations

    • It saves time and effort by generating code for repetitive tasks

    • Developers can customize the generated code to fit their specific needs

  • Answered by AI
  • Q12. What is SSRS in SQL Server
  • Ans. 

    SSRS stands for SQL Server Reporting Services, a server-based reporting platform that allows creating and managing reports.

    • SSRS is a part of Microsoft SQL Server.

    • It provides a set of tools to create, deploy, and manage reports.

    • Reports can be created using various data sources like SQL Server, Oracle, Excel, etc.

    • Reports can be exported to various formats like PDF, Excel, Word, etc.

    • SSRS also provides a web-based interfac

  • Answered by AI
  • Q13. What are all the MVC Filters
  • Ans. 

    MVC Filters are used to implement cross-cutting concerns in ASP.NET MVC applications.

    • Authorization Filters

    • Action Filters

    • Result Filters

    • Exception Filters

  • Answered by AI
  • Q14. After a page re-direct, How authorization filter is working?
  • Ans. 

    Authorization filter checks if the user has access to the requested resource after a page re-direct.

    • Authorization filter is executed after the page re-direct is completed.

    • It checks if the user has the necessary permissions to access the requested resource.

    • If the user is not authorized, the filter will redirect the user to the login page or display an error message.

    • Authorization filter can be applied globally or on spec

  • Answered by AI
  • Q15. What is MVC Routes, How to change a particular action's route? E.g., Change EmployeeDetails into Employee in URL
  • Ans. 

    MVC routes are used to map URLs to controller actions. To change a particular action's route, we can use the Route attribute.

    • MVC routes are defined in the RouteConfig.cs file in the App_Start folder.

    • To change a particular action's route, we can use the Route attribute above the action method.

    • For example, [Route('Employee')], will change the URL from /EmployeeDetails to /Employee.

    • We can also specify parameters in the ro...

  • Answered by AI
  • Q16. How do you secure your data in SQL server
  • Ans. 

    Secure data in SQL server using encryption, access control, and regular backups.

    • Encrypt sensitive data using TDE or column-level encryption

    • Implement access control using roles and permissions

    • Regularly backup data to prevent loss or corruption

    • Use strong passwords and limit access to the server

    • Monitor for suspicious activity and implement auditing

  • Answered by AI
  • Q17. Consider there are multiple database, How do you make your application to choose respective database? e.g, In Amazon, the database hosted in every country, when the user came and make an order, how do the...
  • Ans. 

    The application can choose the respective database based on the user's location or other criteria.

    • Use a load balancer to route traffic to the appropriate database server based on user location

    • Implement a database sharding strategy to distribute data across multiple databases

    • Use a master-slave replication setup to replicate data across multiple databases

    • Implement a database routing layer that can dynamically route reque...

  • Answered by AI
  • Q18. What is database concurrency
  • Ans. 

    Database concurrency refers to the ability of multiple users to access and modify the same data simultaneously.

    • Concurrency control mechanisms ensure that data remains consistent and accurate.

    • Locking, optimistic concurrency control, and transaction isolation levels are common techniques used to manage concurrency.

    • Concurrency issues can lead to data inconsistencies and conflicts, such as lost updates and dirty reads.

  • Answered by AI
  • Q19. EF: How do you decide whether to go Code First or DB First
  • Ans. 

    Choose Code First for flexibility, DB First for legacy systems.

    • Code First allows for more flexibility in designing the database schema

    • DB First is useful for working with legacy systems or pre-existing databases

    • Consider the project requirements and team expertise when making a decision

  • Answered by AI
Round 3 - Technical 

(11 Questions)

  • Q1. What is your current role and about your project
  • Q2. How do you authenticate WebApi
  • Ans. 

    WebApi authentication can be done using various methods such as JWT, OAuth, Basic Authentication, etc.

    • JWT authentication involves generating a token that is sent with each request

    • OAuth authentication involves obtaining an access token from a third-party provider

    • Basic Authentication involves sending a username and password with each request

    • Other methods include API keys, client certificates, and custom authentication sc

  • Answered by AI
  • Q3. What is Triggers and its types
  • Ans. 

    Triggers are database objects that execute automatically in response to certain events.

    • Triggers are used to maintain the integrity of data in a database.

    • There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) events like INSERT, UPDATE, and DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) events like CREATE, ALTER,

  • Answered by AI
  • Q4. Why triggers are used
  • Ans. 

    Triggers are used to automatically execute a set of actions when a specific event occurs in a database.

    • Triggers can be used to enforce business rules and data integrity.

    • They can be used to audit changes made to the database.

    • Triggers can also be used to replicate data across multiple tables or databases.

    • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

  • Answered by AI
  • Q5. What is Magic Tables in SQL Server
  • Ans. 

    Magic Tables are temporary tables created by SQL Server during DML operations.

    • Magic Tables are used to access the data before and after a DML operation.

    • They are created automatically by SQL Server and cannot be accessed directly.

    • They are useful for auditing and logging changes to a table.

    • The inserted and deleted tables are examples of Magic Tables.

  • Answered by AI
  • Q6. What is Temporary tables in SQL.
  • Ans. 

    Temporary tables are tables that exist temporarily in the database and are used to store intermediate results.

    • Temporary tables are created using the CREATE TABLE statement with the # symbol before the table name.

    • They are useful for storing intermediate results during complex queries or procedures.

    • Temporary tables are automatically dropped when the session that created them ends or when the connection is closed.

    • They can...

  • Answered by AI
  • Q7. What is common table expression (CTE) in SQL Server and its purpose
  • Ans. 

    CTE is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTE is defined using the WITH keyword followed by a name and a SELECT statement.

    • It can be used to simplify complex queries and improve performance.

    • CTE can be recursive, allowing a query to reference itself.

    • Example: WITH sales AS (SELECT * FROM orders WHERE status = 'completed') SELECT * FROM sales;

    • Example: WITH rec...

  • Answered by AI
  • Q8. What is Unit Testing and its purpose, What is code coverage
  • Ans. 

    Unit testing is a software testing technique to test individual units or components of a software application.

    • Unit testing is done to ensure that each unit/component of the software application is working as expected.

    • It helps in identifying and fixing bugs early in the development cycle.

    • Unit testing is usually automated and can be run frequently to ensure that changes made to the code do not break existing functionalit...

  • Answered by AI
  • Q9. What source control you have used (GIT/ TFS)
  • Ans. 

    I have used both GIT and TFS for source control.

    • I have used GIT for personal projects and TFS for enterprise-level projects.

    • I am familiar with branching, merging, and pull requests in both GIT and TFS.

    • I have experience with using GIT and TFS in conjunction with continuous integration and deployment tools.

    • I have also used tools like SourceTree and Visual Studio Team Explorer for managing source control.

  • Answered by AI
  • Q10. Difference between TFS and GIT
  • Ans. 

    TFS is a centralized version control system while GIT is a distributed version control system.

    • TFS is tightly integrated with Microsoft products while GIT is more flexible and can be used with any platform.

    • TFS has a more complex branching and merging system while GIT has a simpler and more efficient system.

    • TFS has a centralized repository while GIT has a distributed repository.

    • TFS has a more comprehensive set of feature...

  • Answered by AI
  • Q11. Have you been worked with Token based authorization?
  • Ans. 

    Yes, I have experience with Token based authorization.

    • I have implemented token based authentication using JWT (JSON Web Tokens) in several projects.

    • I have used OAuth 2.0 to generate access tokens for API authentication.

    • I have integrated token based authorization with ASP.NET Identity for user authentication and authorization.

    • I have also worked with refresh tokens to extend the validity of access tokens.

    • I am familiar wi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Wilco Source Senior ASP.NET Developer interview:
  • Asp.Net Vs MVC
  • MVC Razor Engine
  • Web Api
  • LINQ
Interview preparation tips for other job seekers - Keep well prepared. Your experience will also help!
All the best

Skills evaluated in this interview

Top Wilco Source Senior ASP.NET Developer Interview Questions and Answers

Q1. Consider there are multiple database, How do you make your application to choose respective database? e.g, In Amazon, the database hosted in every country, when the user came and make an order, how do the application choose the database to ... read more
View answer (1)

Senior ASP.NET Developer Interview Questions asked at other Companies

Q1. Consider there are multiple database, How do you make your application to choose respective database? e.g, In Amazon, the database hosted in every country, when the user came and make an order, how do the application choose the database to ... read more
View answer (1)

I applied via Naukri.com and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What are the hooks available in WordPress
  • Ans. 

    Hooks in WordPress are actions and filters that allow developers to modify or add functionality to WordPress.

    • Actions are hooks triggered at specific points in WordPress, such as when a post is published or a user logs in.

    • Filters allow developers to modify data before it is displayed, such as changing the content of a post or the title of a page.

    • Examples of hooks include 'wp_head', 'wp_footer', 'the_content', and 'the_t

  • Answered by AI
  • Q2. How to customize child theme
  • Ans. 

    Customizing a child theme involves modifying its CSS and PHP files to override the parent theme's styles and functionality.

    • Create a new directory for the child theme in the wp-content/themes/ directory

    • Create a style.css file in the child theme directory and add the necessary header information

    • Enqueue the parent theme's stylesheet in the child theme's functions.php file

    • Override parent theme's styles and functionality by...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

I applied via Recruitment Consultant and was interviewed in Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Lightning requirement WRT mobile friendly design . How to show as many as columns in single page
  • Ans. 

    To show many columns in a single page for mobile-friendly design in Lightning, use responsive design and consider using horizontal scrolling.

    • Use responsive design to ensure the layout adjusts to different screen sizes

    • Consider using horizontal scrolling to allow users to view more columns without taking up too much vertical space

    • Prioritize the most important columns to display first

    • Use filters or collapsible sections to...

  • Answered by AI
  • Q2. Web service scenario.Best approach to handle bulk callouts over button click
  • Ans. 

    Use batch Apex to handle bulk callouts over button click

    • Implement the Database.Batchable interface to process records in batches

    • Use the @future annotation to make asynchronous callouts

    • Consider using a queueable Apex job to handle large volumes of data

    • Use the Limits.getCallouts() method to monitor callout limits

    • Handle any errors or exceptions that may occur during the callout process

  • Answered by AI
  • Q3. Can an email message from a trigger be sent after logic gets into Adderror method
  • Ans. 

    Yes, an email message can be sent from a trigger even after logic gets into AddError method.

    • Email messages are sent asynchronously and are not affected by the AddError method.

    • The AddError method only prevents the record from being saved and rolls back any changes made in the transaction.

    • To send an email from a trigger, use the Messaging.SingleEmailMessage class and the Messaging.sendEmail method.

  • Answered by AI
  • Q4. Order of execution in Salesforce
  • Ans. 

    Order of execution in Salesforce determines the sequence of events that occur when a record is saved.

    • Triggers are executed first

    • Validation rules are checked next

    • Before triggers are executed

    • Custom validation logic is checked

    • Record is saved to the database

    • After triggers are executed

    • Assignment rules are executed

    • Auto-response rules are executed

    • Workflow rules are executed

    • Escalation rules are executed

    • Roll-up summary fields a...

  • Answered by AI
  • Q5. How to optimize SOQL and DML in a Apex transaction
  • Ans. 

    Optimizing SOQL and DML in Apex transactions

    • Use selective SOQL queries to limit the number of records retrieved

    • Avoid using SOQL queries inside loops

    • Use bulkified DML operations to process records in batches

    • Minimize the number of DML statements by grouping similar operations

    • Use @future or Queueable Apex for long-running operations

    • Consider using Database methods for DML operations to handle errors

    • Use System.debug() to mo

  • Answered by AI

Skills evaluated in this interview

Senior Salesforce Developer Interview Questions asked at other Companies

Q1. What are best practices to write trigger? What are execution order in salesforce? What are deployment techniques used in salesforce? What is min code coverage required while deployment? What is azure dev ops?
View answer (1)

Wilco Source interview questions for popular designations

 Senior ASP.NET Developer

 (1)

 Senior Salesforce Developer

 (1)

 Software Engineer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Assignment 

Based on my CV, they assigned me a task related to data migration.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project reviews
  • Q2. Attendance regarding
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(3 Questions)

  • Q1. Asked about my self
  • Q2. What experience I had earlier
  • Q3. If I could commit to this job
Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked about my previous experience
  • Q2. Asked if I could commit to this job

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to be calm.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions were easy and basics

Round 2 - Technical 

(2 Questions)

  • Q1. They asked about projects, SQL basics, oops concepts and about java concepts
  • Q2. It was an easy and average interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Take home assessment to build an OTP generating service

Round 2 - Coding Test 

URL parser for websites

Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with Product owner
Round 4 - One-on-one 

(1 Question)

  • Q1. Interview with hiring manager
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Project Management and scrum-related questions. 2. Scenario-based questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. 1. Technical-related questions about the project deliverables. 2. Client interaction-related questions.
Round 3 - HR 

(1 Question)

  • Q1. 1. Self-introduction. 2. Previous work experience. 3. HR. clearly Explained about the company's work culture and growth opportunities.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Tech questions asked by non tech interviewers
Round 2 - Behavioral 

(1 Question)

  • Q1. Management related questions
Round 3 - HR 

(1 Question)

  • Q1. Ask Salary expectations which you tell to HR during initial conversations
Round 4 - Final Tech round 

(1 Question)

  • Q1. Repetitive Tech questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company and waste your time. If they select you then also they will not release offer. Make you beg for the offer letter and at the end they reject you for no reason. They lack negotiation skill. If they offer you position and If you join the org, You will end up regretting. they may bribe you and offer lucrative package. But genuinely telling don't join. Many employees like me are planning to leave the company soon. Company has no projects they are faking. They follow Hire and Fire policy

Wilco Source Interview FAQs

How many rounds are there in Wilco Source interview?
Wilco Source interview process usually has 3 rounds. The most common rounds in the Wilco Source interview process are Technical and Resume Shortlist.
How to prepare for Wilco Source interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Wilco Source. The most common topics and skills that interviewers at Wilco Source expect are Salesforce, Apex, Visualforce, Salesforce Integration and CRM.
What are the top questions asked in Wilco Source interview?

Some of the top questions asked at the Wilco Source interview -

  1. Consider there are multiple database, How do you make your application to choos...read more
  2. How do you improve web application? what are the tools you have used? (Or how d...read more
  3. What is MVC Routes, How to change a particular action's route? E.g., Change Emp...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Wilco Source interviews
Job Portal
Recruitment Consultant
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
NexTurn Interview Questions
4.2
 • 25 Interviews
View all

Wilco Source Reviews and Ratings

based on 41 reviews

3.5/5

Rating in categories

3.6

Skill development

3.6

Work-Life balance

3.5

Salary & Benefits

3.3

Job Security

3.6

Company culture

3.3

Promotions/Appraisal

3.5

Work Satisfaction

Explore 41 Reviews and Ratings
Software Engineer
52 salaries
unlock blur

₹3.5 L/yr - ₹15 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Salesforce Developer
19 salaries
unlock blur

₹2.2 L/yr - ₹13.9 L/yr

Technical Lead
8 salaries
unlock blur

₹13.5 L/yr - ₹25 L/yr

QA Engineer
8 salaries
unlock blur

₹3.5 L/yr - ₹7.4 L/yr

Explore more salaries
Compare Wilco Source with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview