Upload Button Icon Add office photos
Engaged Employer

i

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

AscenWork Technologies Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 8 Reviews

Filter interviews by

AscenWork Technologies Software Engineer Interview Questions and Answers

Updated 17 Aug 2023

AscenWork Technologies Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is primary key and foreign key in SQL
  • Ans. 

    Primary key uniquely identifies each record in a table, while foreign key establishes a link between two tables.

    • Primary key ensures each record is unique and not null

    • Foreign key establishes a relationship between tables

    • Primary key can be a single column or a combination of columns

    • Foreign key references the primary key of another table

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Conditional statements in jQuery
  • Ans. 

    Conditional statements in jQuery are used to execute different blocks of code based on specified conditions.

    • Use if statement to execute a block of code if a specified condition is true.

    • Use else statement to execute a block of code if the same condition is false.

    • Use else if statement to specify a new condition to test if the first condition is false.

  • Answered by AI
  • Q2. What is variable and it's data type
  • Ans. 

    A variable is a container that holds a value, and its data type defines the type of value it can store.

    • Variables are used to store data in a program.

    • Data types define the type of value a variable can hold, such as integer, string, boolean, etc.

    • Examples: int age = 25; // integer variable, String name = 'John'; // string variable

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What about your academic project and your role in that?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answer

Skills evaluated in this interview

Interview questions from similar companies

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

Normal questions are there

Round 2 - Coding Test 

Printing star pattern

Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Family introduction
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Jul 2024.

Round 1 - Aptitude Test 

Directions, sitting arrangement, blood relations, etc

Round 2 - JAM 

(2 Questions)

  • Q1. Self introduction
  • Q2. JAM about any topic that we choose
  • Ans. 

    The topic I will be discussing is the impact of artificial intelligence on the future of work.

    • AI is revolutionizing industries by automating tasks and increasing efficiency

    • Concerns about AI replacing human jobs and the need for upskilling and reskilling

    • Opportunities for new job creation in AI-related fields such as data science and machine learning

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was held by some other third party other then the Zithara. The interview went well but recruited few members only like 12 members.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Digital vs non digital

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
-

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

Round 1 - Coding Test 

Write a code for HTML DOM

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

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Few basic question on python
  • Q2. Some coding questions
Round 2 - Coding Test 

Based on your CV and basic python questions and coding test and few HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

ONLINE LINK FOR THE INTERVIEW

Round 2 - Coding Test 

THEY WILL PROVIDE YOU WITH SOME TEST LINK WHICH YOU HAVE TO PASS

Round 3 - One-on-one 

(1 Question)

  • Q1. SOME BASIC RELATED TO PYTHON LIKE LIST, TUPLES ETC.

Interview Preparation Tips

Topics to prepare for AppSuccessor Software Engineer interview:
  • Python

I applied via campus placement at Manipal Institute of Technology (MIT) and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Coding on python programming, any language is used in in coding.

Round 2 - Technical 

(2 Questions)

  • Q1. Good ask simple question and simple program
  • Q2. Python programming string reverse the string
  • Ans. 

    Python provides a simple way to reverse a string using slicing.

    • Use slicing to reverse the string: string[::-1]

    • Assign the reversed string to a new variable or print it directly

    • Alternatively, use the reversed() function to create a reversed iterator and join it back into a string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study oops concepts, algorithm , logical questions , -----

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on data structures likes stack, binary trees etc. Few questions of git and underlying concepts, and in depth questions on Javascript and few questions of dockers and AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall the interview was decent, but the focus was on basics of CS and JS.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Print numbers like 2,4,8,32 to infinity?
  • Ans. 

    Use a loop to print numbers by multiplying the previous number by 2.

    • Start with the number 2

    • Multiply the previous number by 2 to get the next number

    • Continue this pattern to print numbers like 2, 4, 8, 32, ...

    • Example: 2, 4, 8, 16, 32, 64, ...

  • Answered by AI
  • Q2. Find the second largest number of the array?
  • Ans. 

    Find the second largest number in an array of strings.

    • Convert the array of strings to an array of integers for comparison.

    • Sort the array in descending order to easily find the second largest number.

    • Return the second element in the sorted array as the second largest number.

  • Answered by AI
  • Q3. Design realtional schema for shopping website?
  • Ans. 

    Design relational schema for a shopping website.

    • Create tables for products, customers, orders, and payments

    • Use foreign keys to establish relationships between tables

    • Include attributes like product ID, customer ID, order ID, etc.

    • Consider additional tables for categories, reviews, and discounts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepARE with logics

Skills evaluated in this interview

AscenWork Technologies Interview FAQs

How many rounds are there in AscenWork Technologies Software Engineer interview?
AscenWork Technologies interview process usually has 4 rounds. The most common rounds in the AscenWork Technologies interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in AscenWork Technologies Software Engineer interview?

Some of the top questions asked at the AscenWork Technologies Software Engineer interview -

  1. What is primary key and foreign key in ...read more
  2. What is variable and it's data t...read more
  3. Conditional statements in jQu...read more

Tell us how to improve this page.

AscenWork Technologies Software Engineer Salary
based on 13 salaries
₹1.8 L/yr - ₹4.1 L/yr
68% less than the average Software Engineer Salary in India
View more details

AscenWork Technologies Software Engineer Reviews and Ratings

based on 2 reviews

1.9/5

Rating in categories

1.9

Skill development

1.9

Work-Life balance

1.4

Salary & Benefits

1.0

Job Security

1.4

Company culture

1.0

Promotions/Appraisal

1.4

Work Satisfaction

Explore 2 Reviews and Ratings
Software Engineer
13 salaries
unlock blur

₹1.8 L/yr - ₹4.1 L/yr

Software Developer
7 salaries
unlock blur

₹1.1 L/yr - ₹4.2 L/yr

Sharepoint Developer
4 salaries
unlock blur

₹0.9 L/yr - ₹3.8 L/yr

Software Analyst
3 salaries
unlock blur

₹3.3 L/yr - ₹6.8 L/yr

Power BI Developer
3 salaries
unlock blur

₹4.1 L/yr - ₹4.1 L/yr

Explore more salaries
Compare AscenWork Technologies with

TCS

3.7
Compare

Infosys

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