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
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They ask generally about yourself and your experience background
Round 2 - Technical 

(3 Questions)

  • Q1. Most of the question related to NLP.
  • Q2. What is the order of efficiency among MobileNet, DenseNet, and EfficientNet?
  • Ans. 

    EfficientNet is the most efficient, followed by MobileNet and then DenseNet.

    • EfficientNet is the most efficient among the three models due to its use of compound scaling and efficient building blocks.

    • MobileNet is less efficient than EfficientNet but more efficient than DenseNet, as it uses depthwise separable convolutions to reduce computational cost.

    • DenseNet is the least efficient among the three models, as it has a hi...

  • Answered by AI
  • Q3. Did they request me to write a lambda function in python? How handle the files using pandas
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you provide a brief introduction about yourself?
  • Q2. Have you reviewed the VAYUZ website?
Round 2 - One-on-one 

(1 Question)

  • Q1. Why are you interested in that specific profile?

Interview Preparation Tips

Interview preparation tips for other job seekers - VAYUZ is the great place to work , learn and grow .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It includes multiple-choice questions for the field you are applying to.

Round 2 - Coding Test 

Some basic data structure and algorithm questions; you can choose your preferred language to code.

Round 3 - HR 

(2 Questions)

  • Q1. What type of company do you prefer to work for?
  • Q2. What is JIT in Java?
Round 4 - One-on-one 

(2 Questions)

  • Q1. What is time complexity, and how can it be reduced?
  • Q2. What are the advantages and disadvantages of different search methods?

Interview Preparation Tips

Topics to prepare for Relinns Technologies Software Engineer Trainee interview:
  • Java
  • OOPS
  • DSA
Interview preparation tips for other job seekers - Ensure you have a comprehensive understanding of your field for which you are applying. Additionally, prepare for Data Structures and Algorithms (DSA); while advanced coding may not be necessary, it is essential to know all DSA concepts thoroughly.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(12 Questions)

  • Q1. Rate yourself in js, node js, react, MongoDB (separately)
  • Q2. Typeof null, typeof undefined, typeof {}, typeof NaN
  • Q3. What changes came in es6
  • Ans. 

    ES6 introduced several new features and improvements to JavaScript, making it more powerful and efficient.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for easier object-oriented programming

    • Template literals for easier string interpolation

    • Default parameters and rest parameters for function arguments

    • Destructuring assignment for easier data extraction

    • Promises for asynchronous prog

  • Answered by AI
  • Q4. This keyword, closures, hoisting
  • Q5. Are let and cont variables hoisted?
  • Ans. 

    Yes, let and const variables are hoisted but not initialized.

    • let and const variables are hoisted to the top of their block scope, but they are not initialized until the actual line of code is executed.

    • This means that you cannot access a let or const variable before it is declared in the code.

    • For example, trying to access a let variable before it is declared will result in a ReferenceError.

  • Answered by AI
  • Q6. What is global context
  • Ans. 

    Global context refers to the overall environment or setting in which something exists or operates.

    • Global context encompasses all variables, functions, and objects that are accessible throughout an entire program.

    • It can be thought of as the 'big picture' view of a program's execution.

    • In web development, global context includes the window object in JavaScript.

  • Answered by AI
  • Q7. What is temporal deadzone
  • Ans. 

    Temporal dead zone is a period during the variable creation process where accessing the variable results in a ReferenceError.

    • Occurs when trying to access a variable before it has been declared with let or const

    • Happens due to the variable being in the temporal dead zone until it is declared

    • Example: accessing a variable before its declaration will result in a ReferenceError

  • Answered by AI
  • Q8. What is modules? types of modules in nodejs
  • Ans. 

    Modules in Node.js are reusable blocks of code that encapsulate related functionality.

    • Modules in Node.js can be built-in modules like fs (file system) or third-party modules like express.

    • Modules help in organizing code into separate files for better maintainability and reusability.

    • Modules can be imported using the require() function in Node.js.

  • Answered by AI
  • Q9. Index in mongodb, why we need index, is index good or bad?
  • Ans. 

    Indexes in MongoDB improve query performance by allowing the database to quickly locate and retrieve specific documents.

    • Indexes help to speed up query performance by allowing the database to quickly locate specific documents based on the indexed fields.

    • Without indexes, MongoDB would have to perform a collection scan, which can be slow and resource-intensive.

    • Indexes can be created on single fields or compound fields to ...

  • Answered by AI
  • Q10. What are hooks , use of useRef
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. useRef is a hook that allows you to create a mutable object that persists for the lifetime of the component.

    • Hooks are used to add state and lifecycle methods to functional components in React

    • useRef is used to create a mutable reference that persists between renders

    • useRef can be used to access DOM elements directl

  • Answered by AI
  • Q11. Fs module, http module, worker thread?
  • Q12. Why we use mongoose not mongodb driver?
  • Ans. 

    Mongoose is an Object Data Modeling (ODM) library for MongoDB that provides a higher level of abstraction and simplifies interactions with the database.

    • Mongoose provides schema validation which helps maintain data integrity.

    • Mongoose simplifies querying and data manipulation with built-in functions.

    • Mongoose supports middleware functions for pre and post processing of data operations.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Mvvm and Mvc architectures
  • Q2. Gave Code snippets to find the output
  • Q3. Swift basics and concepts like memory management
  • Q4. Oops concepts and solid principles
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test was basically asking about debugging codes related to java used in selenium & other SDLC cycle basic questions related to testing.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Mobile testing questions
  • Q2. Real life logical questions
  • Q3. OOPs concept relating to testing

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, Salesforce Integration, Visualforce 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.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 812 Interviews
NexTurn Interview Questions
4.2
 • 26 Interviews
View all

Wilco Source Reviews and Ratings

based on 46 reviews

3.6/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.6

Salary

3.2

Job security

3.7

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 46 Reviews and Ratings
Software Engineer
51 salaries
unlock blur

₹3 L/yr - ₹13.5 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Salesforce Developer
18 salaries
unlock blur

₹2.2 L/yr - ₹12.8 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.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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