Upload Button Icon Add office photos

Filter interviews by

Skyach Software Solutions Interview Questions and Answers

Updated 15 Sep 2024

Skyach Software Solutions Interview Experiences

Popular Designations

8 interviews found

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

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 (211)
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

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 (211)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic question like myself
Round 2 - Coding Test 

Coding on paper😂😂 and checked and they said it was right and i come home and find that was wrong😂😂😂

Round 3 - One-on-one 

(1 Question)

  • Q1. One rude sikh man ask stupid question like all the thing written in resume are right or not

Interview Preparation Tips

Interview preparation tips for other job seekers - dont come here please
go to nvm tech they offer something good

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Pattern related questions, oops, loops

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate technical leavel interview.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Skyach Software Solutions interview questions for popular designations

 Software Engineer

 (5)

 Software Developer

 (2)

 Softwaretest Engineer

 (1)

I applied via Referral and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked about logics
  • Q2. Database without queries
  • Q3. Asked about oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for oops concepts, loops pattern, database technically.

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 (211)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Job Portal and was interviewed before Jul 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. Basics of Oops and Database
Round 3 - HR 

(1 Question)

  • Q1. Check your educational background

Interview Preparation Tips

Interview preparation tips for other job seekers - Go prepared with basics

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I applied via Walk-in and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic oops concepts and prepare for logics and database

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basic oops concepts, loops pattern,database html, css, JavaScript, jQuery and bootstrap

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 (211)

I applied via Campus Placement and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1.  OOPS-related questions such as class, object, inheritance, polymorphism with coding examples.
  • Q2. Wrote some queries of the database.
  • Q3. Give some coding questions randomly and given wrote suitable code

Interview Preparation Tips

Interview preparation tips for other job seekers - keep learning and also prepare basic knowledge of your domain and be confident and keep practice daily on the problem statements.

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 (211)

Interview questions from similar companies

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 - Technical 

(2 Questions)

  • Q1. What is struct keyword
  • Ans. 

    The struct keyword is used in programming languages to define a user-defined data type that contains multiple variables of different types.

    • Structs are used to group related data together.

    • They can have different types of variables, including other structs.

    • Structs can be used to create complex data structures.

    • They are commonly used in object-oriented programming languages.

  • Answered by AI
  • Q2. What is Class keyword
  • Ans. 

    The class keyword is used in object-oriented programming to define a blueprint for creating objects.

    • The class keyword is used in languages like Java, C++, and Python.

    • It allows the programmer to define the properties and behaviors of an object.

    • Objects created from a class are called instances.

    • Classes can have attributes (variables) and methods (functions).

    • Inheritance allows classes to inherit properties and behaviors fr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - this is a test message to test platform. Best of luck.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in 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 - Coding Test 

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

Round 3 - 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

Skyach Software Solutions Interview FAQs

How many rounds are there in Skyach Software Solutions interview?
Skyach Software Solutions interview process usually has 2-3 rounds. The most common rounds in the Skyach Software Solutions interview process are Technical, HR and Aptitude Test.
What are the top questions asked in Skyach Software Solutions interview?

Some of the top questions asked at the Skyach Software Solutions interview -

  1. find the second largest number of the arr...read more
  2. design realtional schema for shopping websi...read more
  3. print numbers like 2,4,8,32 to infini...read more

Tell us how to improve this page.

Skyach Software Solutions Interview Process

based on 5 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 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
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
View all

Skyach Software Solutions Reviews and Ratings

based on 13 reviews

3.0/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

3.0

Salary

3.1

Job security

3.0

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 13 Reviews and Ratings
Compare Skyach Software Solutions with

Bhash Software Labs

3.9
Compare

QR Crypher

4.2
Compare

HirePro Consulting

3.8
Compare

Apptunix

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