Upload Button Icon Add office photos

Filter interviews by

Sketch Web Solutions Associate Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Quantitative Aptitude, Logical Reasoning, English Comprehension, Computer Science, Versant

Round 2 - Technical 

(10 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    I am a dedicated and experienced professional with a background in finance and a passion for problem-solving.

    • Experienced in financial analysis and reporting

    • Strong problem-solving skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Can you describe your project?
  • Ans. 

    I developed a mobile app for tracking daily water intake and setting hydration goals.

    • Designed user-friendly interface for easy input of water consumption

    • Implemented reminder notifications to encourage regular hydration

    • Included visual graphs to track daily, weekly, and monthly water intake

    • Integrated with wearable devices to sync water intake data

  • Answered by AI
  • Q3. What technologies did you utilize in your project?
  • Ans. 

    I utilized technologies such as Python, SQL, and Tableau in my project.

    • Python

    • SQL

    • Tableau

  • Answered by AI
  • Q4. What is the process for creating and submitting code on GeeksforGeeks?
  • Ans. 

    The process for creating and submitting code on GeeksforGeeks involves writing code, testing it, and then submitting it on the platform.

    • Create an account on GeeksforGeeks website.

    • Write the code for the problem statement provided.

    • Test the code locally to ensure it works correctly.

    • Submit the code on the GeeksforGeeks platform for evaluation.

    • Receive feedback and improve the code if necessary.

  • Answered by AI
  • Q5. What do you know about cloud computing?
  • Ans. 

    Cloud computing is the delivery of computing services over the internet, including storage, servers, databases, networking, software, and more.

    • Cloud computing allows users to access resources on-demand without the need for physical hardware.

    • It offers scalability, flexibility, and cost-efficiency for businesses.

    • Examples of cloud computing services include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Plat

  • Answered by AI
  • Q6. What can you tell me about Kubernetes?
  • Ans. 

    Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes allows for automatic scaling of applications based on resource usage.

    • It provides self-healing capabilities by automatically restarting containers that fail.

    • Kubernetes enables easy deployment and management of microservices architecture.

    • It supports various cloud pr...

  • Answered by AI
  • Q7. What is orchestration?
  • Ans. 

    Orchestration is the automated arrangement, coordination, and management of complex computer systems, services, and workflows.

    • Orchestration involves automating tasks and workflows to streamline processes.

    • It helps in coordinating multiple systems and services to work together seamlessly.

    • Examples include orchestrating the deployment of applications across different servers or managing the workflow of a data pipeline.

  • Answered by AI
  • Q8. How can you create programs in Java?
  • Ans. 

    Programs in Java can be created by writing code in a text editor or an IDE, compiling the code, and running it using a Java Virtual Machine (JVM).

    • Write Java code using classes, methods, variables, and control structures.

    • Compile the code using a Java compiler like javac.

    • Run the compiled code using a Java Virtual Machine (JVM) like java.

    • Use an Integrated Development Environment (IDE) like Eclipse or IntelliJ IDEA for eas...

  • Answered by AI
  • Q9. What is the process for setting the path in Java?
  • Ans. 

    Setting the path in Java involves adding directories to the classpath to locate external libraries or resources.

    • Use the 'java -cp' command to set the classpath for a specific Java program.

    • You can also set the classpath using the CLASSPATH environment variable.

    • To add a JAR file to the classpath, use the '-cp' or '-classpath' option followed by the path to the JAR file.

    • For example, to set the classpath to include a JAR f...

  • Answered by AI
  • Q10. Do you have any questions for me?
Round 3 - HR 

(4 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    Experienced Associate with a background in finance and strong analytical skills.

    • Background in finance with X years of experience

    • Strong analytical skills demonstrated through successful projects

    • Proven ability to work well in a team environment

  • Answered by AI
  • Q2. What additional hobbies do you engage in?
  • Ans. 

    I enjoy hiking, photography, and cooking in my free time.

    • Hiking: I love exploring new trails and being in nature.

    • Photography: I enjoy capturing moments and landscapes through my camera lens.

    • Cooking: I like experimenting with new recipes and cooking for friends and family.

  • Answered by AI
  • Q3. Are you willing to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am open to exploring new locations for career growth

    • I am willing to relocate for the right job offer

    • I have experience moving for previous job opportunities

  • Answered by AI
  • Q4. Do u have any questions for me?

Associate Interview Questions & Answers

Wipro user image Narendra Patil

posted on 3 Jan 2025

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

About the marketing tge job details in summary

Round 2 - Assignment 

About the topic of the associate with the topic

Round 3 - Technical 

(2 Questions)

  • Q1. How to operate a operations
  • Ans. 

    Operations can be operated by following established processes and procedures.

    • Understand the goals and objectives of the operations

    • Follow standard operating procedures

    • Utilize technology and tools to streamline operations

    • Monitor performance and make adjustments as needed

  • Answered by AI
  • Q2. How to do the handle a excel
  • Ans. 

    Handling Excel involves organizing data, performing calculations, and creating visualizations.

    • Use formulas and functions to perform calculations.

    • Organize data into tables for easier manipulation.

    • Create charts and graphs to visualize data.

    • Use filters and sorting to analyze data efficiently.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Give With the confidence
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 May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Good questions Everything Went Well

Round 2 - Technical 

(2 Questions)

  • Q1. DataFrames and DatasetsHow do you create a DataFrame in PySpark?Explain the difference between a DataFrame and a Dataset in Spark.How can you perform joins in PySpark DataFrames? Give examples.What are som...
  • Ans. 

    Creating and working with DataFrames in PySpark

    • To create a DataFrame in PySpark, you can use the createDataFrame() method from the SparkSession object.

    • DataFrames are structured and immutable collections of data, while Datasets are distributed collections of data with additional features like type-safety.

    • To perform joins in PySpark DataFrames, you can use the join() method with the appropriate join type (inner, outer, l...

  • Answered by AI
  • Q2. From pyspark.sql import DataFrame, SparkSession from pyspark.sql.functions import col, explode_outer from pyspark.sql.types import ArrayType, StructType def flatten(df: DataFrame) -> DataFrame: # Init...

Skills evaluated in this interview

Associate Interview Questions & Answers

Infosys user image Gaming Fever

posted on 16 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introducing yourself, experience, project
  • Q2. Python list tuple
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yoourself

Associate Interview Questions & Answers

eClerx user image ishan kanere

posted on 26 Nov 2024

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

AI- boom or a bane was the topic given

Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was the easy round to clear they ask basic quans which include DBMS and grammar over all the round was easy

Round 2 - Communication 

(1 Question)

  • Q1. The test was condected by AI overall the round is easy
Round 3 - Technical 

(1 Question)

  • Q1. They asked questions about my project and basic question in java
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at BNM Institute of Technology, Bangalore and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Swap two numbers without using temp variable
  • Ans. 

    Swap two numbers without using a temp variable

    • Use arithmetic operations like addition and subtraction to swap the numbers

    • Example: a = 5, b = 10. a = a + b (a = 15), b = a - b (b = 5), a = a - b (a = 10)

    • Another example: a = 3, b = 7. a = a + b (a = 10), b = a - b (b = 3), a = a - b (a = 7)

  • Answered by AI
  • Q2. What is waterfall model
  • Ans. 

    Waterfall model is a linear sequential software development process.

    • It follows a step-by-step approach where progress flows in one direction, like a waterfall.

    • Each phase must be completed before moving on to the next phase.

    • Examples of phases in waterfall model: requirements, design, implementation, testing, deployment.

  • Answered by AI
  • Q3. Explain about gradient descent algorithm
  • Ans. 

    Gradient descent is an optimization algorithm used to minimize a function by iteratively moving towards the direction of steepest descent.

    • Gradient descent is commonly used in machine learning to optimize the parameters of a model by minimizing the cost function.

    • It works by calculating the gradient of the cost function with respect to each parameter and updating the parameters in the opposite direction of the gradient.

    • T...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple programs problems using c++ language

Round 2 - HR 

(2 Questions)

  • Q1. General discussion on the resume and project work
  • Q2. Some HR related questions be confident while answering

Interview Preparation Tips

Interview preparation tips for other job seekers - Good process and all the best
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Quantitative Aptitude, Logical Reasoning, English Comprehension, Versant, and Computer Skills.

Round 2 - Technical 

(3 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    Experienced professional with a background in finance and a proven track record of driving business growth through strategic planning and analysis.

    • Background in finance

    • Proven track record of driving business growth

    • Skilled in strategic planning and analysis

  • Answered by AI
  • Q2. Can you provide details about your project?
  • Ans. 

    I led a team in developing a mobile app for tracking fitness goals and progress.

    • Responsible for project planning, design, and implementation

    • Collaborated with developers, designers, and stakeholders

    • Utilized Agile methodology for project management

  • Answered by AI
  • Q3. What queries do you have regarding the project?
  • Ans. 

    I would like to know more about the timeline, budget, and key stakeholders of the project.

    • Timeline for project completion

    • Budget allocation and resources

    • Key stakeholders involved in the project

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    Experienced professional with a background in finance and a proven track record of exceeding targets.

    • Over 5 years of experience in finance industry

    • Strong analytical skills and attention to detail

    • Consistently met or exceeded sales targets at previous company

  • Answered by AI
  • Q2. Are you open to relocating for this position?
  • Ans. 

    Yes, I am open to relocating for this position.

    • I am willing to relocate for the right opportunity

    • I have relocated for previous positions and am comfortable with the process

    • I understand the benefits of being open to relocation for career growth

  • Answered by AI

Tell us how to improve this page.

Associate Interview Questions from Similar Companies

Wipro Associate Interview Questions
3.7
 • 142 Interviews
TCS Associate Interview Questions
3.7
 • 59 Interviews
View all
Content Writer
4 salaries
unlock blur

₹1.3 L/yr - ₹2.4 L/yr

Senior Web Developer
4 salaries
unlock blur

₹3.2 L/yr - ₹5 L/yr

Team Lead
3 salaries
unlock blur

₹4.8 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Sketch Web Solutions with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

LTIMindtree

3.9
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