Upload Button Icon Add office photos
Engaged Employer

i

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

SCIKEY Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SCIKEY Interview Questions and Answers

Updated 28 Feb 2024

SCIKEY Interview Experiences

Popular Designations

3 interviews found

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Whats is oops concept?
  • Ans. 

    Object-oriented programming concept that focuses on creating objects that interact with each other.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing on

  • Answered by AI
  • Q2. Different between smoke and sanity testing?
  • Ans. 

    Smoke testing is a subset of regression testing, while sanity testing is a subset of acceptance testing.

    • Smoke testing is done to check if the software build is stable enough for further testing.

    • Sanity testing is done to check if specific functionalities are working correctly after changes.

    • Smoke testing is usually done before sanity testing.

    • Smoke testing is a shallow and wide approach, while sanity testing is a deep and...

  • Answered by AI

Skills evaluated in this interview

Associate Software Tester Interview Questions asked at other Companies

Q1. Different between smoke and sanity testing?
View answer (1)
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 - One-on-one 

(2 Questions)

  • Q1. Ask me about C# basic concepts and Mssql queries.
  • Q2. First of all they ask me about basic knowledge
Round 3 - Coding Test 

They give me bunch of questions to solve in front of Senior .

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to put your best knowledge

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between string buffer and string builder?
  • Ans. 

    String buffer and string builder are both used for manipulating strings, but string builder is faster and not thread-safe.

    • String buffer is synchronized, while string builder is not.

    • String buffer is slower due to synchronization overhead.

    • String builder is recommended for single-threaded scenarios.

    • String buffer is recommended for multi-threaded scenarios.

    • Both classes have similar methods for appending, inserting, and del

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell me about your family and educationally qualifications.

Skills evaluated in this interview

Associate Tester Interview Questions asked at other Companies

Q1. Difference between string buffer and string builder?
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

12 Questions

  • Q1. Given a no K and an array. Find pair of elements whose sum is equal to given no K
  • Ans. 

    Find pair of elements in an array whose sum is equal to a given number K.

    • Iterate through the array and for each element, check if K minus the element exists in the array.

    • Use a hash table to store the elements and their indices for faster lookup.

    • If multiple pairs exist, return any one of them.

    • If no pair exists, return null or an appropriate message.

  • Answered by AI
  • Q2. If there is a website run by 2 servers. These 2 servers balances the load using Load Balancer. So, if 1 session is created on 1 server and say load is shift to another server immediately, then how session ...
  • Ans. 

    Session is maintained using session affinity or sticky sessions.

    • Session affinity ensures that a user's session is always directed to the same server.

    • Load balancer uses a unique identifier to route requests to the same server.

    • Sticky sessions can be implemented using cookies or URL rewriting.

    • Session replication can also be used to maintain session data across multiple servers.

  • Answered by AI
  • Q3. WAP to implement some basic Design Patterns like Singleton?
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety by using synchronized keyword or static initialization block

    • Examples: Logger, Configuration Manager, Database Connection

  • Answered by AI
  • Q4. Abstract class? How it is different from interface? Is multiple inheritance possible in php? How?
  • Ans. 

    Explaining abstract class, interface and multiple inheritance in PHP.

    • Abstract class is a class that cannot be instantiated and can have abstract methods.

    • Interface is a collection of abstract methods and constants that can be implemented by a class.

    • Multiple inheritance is not possible in PHP, but can be achieved using interfaces.

    • Interfaces can be implemented by multiple classes, allowing for multiple inheritance-like be

  • Answered by AI
  • Q5. Write a stored procedure from a given set of tables and conditions. Simple one
  • Ans. 

    Write a stored procedure from given tables and conditions

    • Identify the tables and their relationships

    • Determine the conditions to be used in the stored procedure

    • Write the SQL code for the stored procedure

    • Test the stored procedure to ensure it returns the desired results

  • Answered by AI
  • Q6. How to increase php memory at run time, if it exhausts?
  • Ans. 

    To increase PHP memory at run time, modify the php.ini file or use ini_set() function.

    • Edit the memory_limit value in php.ini file

    • Use ini_set('memory_limit', '256M') function to increase memory limit at run time

    • Check for memory leaks in the code

    • Use unset() function to free up memory after use

  • Answered by AI
  • Q7. What all we can do with php.ini?
  • Ans. 

    php.ini is a configuration file for PHP that allows users to customize various settings.

    • Change PHP settings such as memory limit, file upload size, and error reporting

    • Enable or disable extensions and modules

    • Set timezone and language settings

    • Configure email settings

    • Control caching and session settings

  • Answered by AI
  • Q8. Session and cookies?
  • Q9. Javascript clausers?
  • Q10. Jquery function to get domain from a url?
  • Ans. 

    Use window.location to get domain from a url in jQuery.

    • Use window.location to get the full url

    • Use .hostname to get the domain name

    • Use .replace() to remove 'www.' if present

  • Answered by AI
  • Q11. WAP to get smallest plindron number larger than the given no?
  • Ans. 

    WAP to find smallest palindrome number larger than given number.

    • Convert the given number to string and check if it is already a palindrome.

    • If not, increment the number and check if it is a palindrome.

    • Repeat until a palindrome number larger than the given number is found.

    • Use a while loop to implement the above steps.

  • Answered by AI
  • Q12. WAP to check if linked list elements is a palindrome without using any extra space?
  • Ans. 

    WAP to check if linked list elements is a palindrome without using any extra space.

    • Traverse the linked list and reverse the second half of the list

    • Compare the first half with the reversed second half

    • Use two pointers to traverse the list, one at normal speed and other at double speed

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, JQuery, Javascript
College Name: na

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. Find the first non repetitive character in a string?
  • Ans. 

    Find the first non-repeating character in a string.

    • Create a hash table to store the frequency of each character in the string.

    • Iterate through the string and check the frequency of each character.

    • Return the first character with a frequency of 1.

  • Answered by AI
  • Q2. What is connection pooling
  • Ans. 

    Connection pooling is a technique of reusing database connections to improve performance.

    • Connection pooling helps to reduce the overhead of creating and destroying database connections.

    • It maintains a pool of connections that can be reused by multiple clients.

    • Connection pooling is commonly used in web applications to handle multiple requests simultaneously.

    • It can be configured with parameters like maximum number of conn...

  • Answered by AI
  • Q3. Write a singleton class in php?
  • Ans. 

    A singleton class in PHP is a class that can only be instantiated once.

    • Create a private constructor to prevent direct instantiation

    • Create a private static variable to hold the instance of the class

    • Create a public static method to get the instance of the class

    • Ensure that the public static method always returns the same instance

  • Answered by AI
  • Q4. How to write a Connection class to MySQL database using PHP?
  • Ans. 

    To connect to MySQL database using PHP, create a Connection class.

    • Use mysqli_connect() function to establish a connection

    • Pass the database credentials as parameters to the function

    • Create a constructor method to initialize the connection

    • Create a query method to execute SQL queries

    • Close the connection using mysqli_close() method

  • Answered by AI
  • Q5. What are the different types of error in php?
  • Ans. 

    There are three types of errors in PHP: syntax errors, runtime errors, and logical errors.

    • Syntax errors occur when the code is not written correctly, such as missing semicolons or parentheses.

    • Runtime errors occur during the execution of the code, such as trying to access an undefined variable.

    • Logical errors occur when the code runs without errors, but produces unexpected results, such as a miscalculation in a formula.

  • Answered by AI
  • Q6. How session works in php?
  • Ans. 

    Session in PHP allows to store user data on the server for later use.

    • Session starts when a user logs in and ends when the user logs out or the session expires.

    • Session data is stored on the server and identified by a unique session ID.

    • Session variables can be set and accessed using the $_SESSION superglobal array.

    • Session can be destroyed using the session_destroy() function.

    • Session can be used to store user-specific dat...

  • Answered by AI
  • Q7. Find missing element in an array of elements from 0 to n-1?
  • Ans. 

    Find missing element in an array of elements from 0 to n-1

    • Calculate sum of all elements in array and subtract from sum of n natural numbers

    • Use XOR operation on all elements and n natural numbers

    • Sort the array and find the missing element

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: You have been given stack of documents that have already been processed and some that have not. your task is to classify these documents into one of the eight categories: [1,2,3..8]. However you notice that there are already large amount of documents which have already been correctly processed(training data). you decide to use machine learning on this data in order to categorize.First line of the input file contain T number of documents. T lines will follow each containing a series of space separated words which represents the processed word.

Skills: PHP, data base, data structure
College Name: NA

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Very easy questions. Practice R.S Agarwal aptitude and verbal books.
Duration matters. Solve the questions fast.Skip the questions if you think you don't know dont kill time on them.

In verbal most of the questions on subject verb agrement-wikipedia links are enough to practice on them.

It's easy just try to solve as many as u can and dont leave the questions unanswered,no negative marking.
Duration: 80 minutes
Total Questions: 120

Skill Tips: Talk in english. Be confident. smile in face.
Skills: c Language, Thinking ability, English fluency
College Name: K L University
Funny Moments: Im very bad in solving puzzles. The HR over there asking puzzles to every one.
It's my turn the 1st question he asked me was what are you bad at?
no 2nd thought I said solving puzzles...In that way he didnt ask me any puzzles. He checked my confidence, english fluency...e.t.c.

Interview Questionnaire 

3 Questions

  • Q1. Questions from hobbies etc mentioned in cv
  • Q2. Things i learned during my summer training
  • Ans. 

    During my summer training, I learned various programming languages, software development methodologies, and practical application of theoretical concepts.

    • Learned programming languages such as Java, Python, and SQL

    • Gained knowledge of software development methodologies like Agile and Waterfall

    • Applied theoretical concepts in real-world projects, enhancing problem-solving skills

  • Answered by AI
  • Q3. Questions from dbms,c,c++,java

Interview Preparation Tips

Round: Resume Shortlist
Experience: generally the questions were asked from the hobbies which i mentioned in the resume,so be honest
Tips: never over do things write what you are

Round: Test
Duration: 70 min minutes

General Tips: be positive never give up and take one step at a time
Skills: presence of mind, spoken skills specially english, body language
College Name: KIIT UNIVERSITY
Motivation: brand and working environment
Funny Moments: once u r placed every moment is happy and funny...

I was interviewed in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. Question on specific language
  • Q2. Based on company

Interview Preparation Tips

Round: Test
Experience: There was 7 sections. And each section has a 60% sectional cutoff
Tips: Attempt questions which you know and you are confident about
Duration: 50 minutes
Total Questions: 70

Round: Story writing
Experience: Write a story based on picture
Tips: No grammatical errors must be there

Round: Technical Interview
Experience: 1 hour interview but based on technical and daily life
Tips: Be confident

Round: HR Interview
Experience: Just a simple round..bcoz u are almost selected
Tips: Be positive

Skills: Communication And Confidence

I was interviewed before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Where do you see yourself in 5 years from now.
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills through ongoing learning and certifications

    • Taking on more leadership responsibilities within the team

    • Contributing to the company's growth and success through my expertise

    • Mentoring junior team members to help them grow in their careers

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was just a basic aptitude test.
Tips: You need to speed up things.
Duration: 1 hour
Total Questions: 120

Round: Email Round
Experience: We just had to write and Email in 5 mins.
Tips: Check your grammar.

Round: Technical + HR Interview
Experience: Just checking the communication skills.
Tips: Just need to be confident.

Skills: Written Communication Skills
College Name: Global Institute of Technology

I applied via Shine and was interviewed in Dec 2017. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about your self
  • Ans. 

    I am a results-driven sales professional with 5+ years of experience in exceeding sales targets and building strong client relationships.

    • Experienced in B2B sales and account management

    • Proven track record of meeting and exceeding sales targets

    • Strong communication and negotiation skills

    • Ability to build and maintain strong client relationships

    • Proficient in CRM software and sales analytics

  • Answered by AI
  • Q2. What do you mean by Customer serive
  • Ans. 

    Customer service refers to the assistance and support provided to customers before, during, and after a purchase.

    • Customer service involves addressing customer inquiries, concerns, and complaints.

    • It includes providing information about products or services, helping customers make purchasing decisions, and resolving issues.

    • Customer service can be provided through various channels such as phone, email, live chat, or in-pe...

  • Answered by AI
  • Q3. Tell me How to sales Our product
  • Ans. 

    To sell our product, we need to understand the customer's needs and show them how our product can solve their problems.

    • Research and understand the target market

    • Identify the customer's pain points and needs

    • Highlight the unique features and benefits of our product

    • Provide excellent customer service and follow-up

    • Offer promotions or discounts to incentivize purchase

    • Use persuasive language and storytelling to create an emoti...

  • Answered by AI

Interview Preparation Tips

General Tips: I have no good feedback my experience is not good
Skills: Communication, Body Language, Presentation Skills
Duration: <1 week

SCIKEY Interview FAQs

How many rounds are there in SCIKEY interview?
SCIKEY interview process usually has 2 rounds. The most common rounds in the SCIKEY interview process are One-on-one Round, Resume Shortlist and Coding Test.
How to prepare for SCIKEY 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 SCIKEY. The most common topics and skills that interviewers at SCIKEY expect are Web Services, API Testing, Android, Asterisk and Automation Testing.
What are the top questions asked in SCIKEY interview?

Some of the top questions asked at the SCIKEY interview -

  1. Difference between string buffer and string build...read more
  2. Different between smoke and sanity testi...read more
  3. Whats is oops conce...read more

Tell us how to improve this page.

SCIKEY Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
Team Lease Interview Questions
3.9
 • 201 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
MagicPin Interview Questions
3.0
 • 50 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
Indeed Interview Questions
4.1
 • 28 Interviews
Foundit Interview Questions
3.5
 • 26 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
View all

SCIKEY Reviews and Ratings

based on 41 reviews

3.6/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

3.4

Salary

3.3

Job security

3.1

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 41 Reviews and Ratings
Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Tester
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Automation Test Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SCIKEY with

Foundit

3.5
Compare

Timesjobs.com

1.6
Compare

Indeed

4.0
Compare

LinkedIn

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