Upload Button Icon Add office photos

Filter interviews by

Scitech Specialities Interview Questions and Answers

Updated 30 Jan 2024

Scitech Specialities Interview Experiences

Popular Designations

3 interviews found

HR Officer Interview Questions & Answers

user image Anonymous

posted on 30 Jan 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Knowledge regarding position
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation

HR Officer Interview Questions asked at other Companies

Q1. Do you have prior knowledge to work in SAP modules?
View answer (3)

QA Assistant Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Apr 2022. There were 5 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 - HR 

(4 Questions)

  • Q1. Introducing yourself
  • Q2. Tell me something about yourself
  • Q3. Which is last organization
  • Ans. 

    I worked at XYZ Corp as my last organization.

    • XYZ Corp was a software development company.

    • I was a QA Assistant at XYZ Corp.

    • I left XYZ Corp in December 2020.

  • Answered by AI
  • Q4. Your experience Salary expectations
Round 3 - HR 

(1 Question)

  • Q1. Your education What is expectations
Round 4 - HR 

(1 Question)

  • Q1. Your experience
Round 5 - HR 

(1 Question)

  • Q1. Your interest in area Your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job
But slary is to low

QA Assistant Interview Questions asked at other Companies

Q1. Atomic mass of acids and ph like that
View answer (1)

QC Officer Interview Questions & Answers

user image Anonymous

posted on 1 Aug 2022

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

Round 1 - Technical 

(3 Questions)

  • Q1. Analytical method development
  • Q2. Normality molarity defn
  • Q3. HPLC working and used
  • Ans. 

    HPLC is a high-performance liquid chromatography used for separating, identifying, and quantifying components in a mixture.

    • HPLC uses a stationary phase and a mobile phase to separate components based on their chemical properties.

    • It is commonly used in pharmaceuticals, food and beverage, and environmental testing.

    • HPLC can detect and quantify very small amounts of compounds, making it a highly sensitive analytical techni...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study analytical chemistry basics and definition

QC Officer Interview Questions asked at other Companies

Q1. What is your job responsibilities, how do you perform sampling and testing of Raw materials and finished good,which instruments you handling described theses principles, tell me about GDP, GMP, GLP, Data integrity, oos, ooT, Daviation, Chan... read more
View answer (2)

Interview questions from similar companies

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

I applied via campus placement at Vidya Jyothi Institute of Technology, Hyderabad and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Its was moderate , basic questions and can written based on the cluster

Round 2 - Aptitude Test 

It was easy its an combination of aptitude and gaming questions

Round 3 - Technical 

(11 Questions)

  • Q1. What is Java, and why is it considered platform-independent?
  • Ans. 

    Java is a programming language known for its platform independence due to its ability to run on any device with a Java Virtual Machine (JVM).

    • Java is a high-level programming language developed by Sun Microsystems.

    • It is considered platform-independent because Java programs are compiled into bytecode that can run on any device with a JVM.

    • JVM acts as an interpreter that translates the bytecode into machine code specific t...

  • Answered by AI
  • Q2. What are the differences between method overloading and method overriding?
  • Ans. 

    Method overloading involves multiple methods in the same class with the same name but different parameters. Method overriding involves a subclass providing a specific implementation of a method that is already provided by its superclass.

    • Method overloading is resolved at compile time based on the method signature, while method overriding is resolved at runtime based on the object type.

    • Method overloading is used to incre...

  • Answered by AI
  • Q3. What is the program for checking if a string is a palindrome?
  • Ans. 

    A program to check if a string is a palindrome involves comparing the string with its reverse.

    • Iterate through the string from both ends and compare characters.

    • If all characters match, the string is a palindrome.

    • Examples: 'radar' is a palindrome, 'hello' is not.

  • Answered by AI
  • Q4. Program for checking if given number is prime or not ?
  • Ans. 

    A program to check if a given number is prime or not.

    • Iterate from 2 to square root of the number and check for divisibility

    • If the number is divisible by any number other than 1 and itself, it is not prime

    • Optimization: Check divisibility only up to square root of the number

  • Answered by AI
  • Q5. What are the different types of Structured query Languages (SqL)?
  • Ans. 

    Different types of SQL include MySQL, PostgreSQL, SQLite, Oracle SQL, and Microsoft SQL Server.

    • MySQL - widely used open-source SQL database management system

    • PostgreSQL - advanced open-source SQL database management system

    • SQLite - self-contained, serverless, zero-configuration SQL database engine

    • Oracle SQL - proprietary SQL database management system by Oracle Corporation

    • Microsoft SQL Server - relational database manage

  • Answered by AI
  • Q6. Given an scenario to write sql query ?
  • Q7. An aptitude question based on time and work
  • Q8. What is the code for calculating the length of a rectangle given its breadth and area?
  • Ans. 

    The code for calculating the length of a rectangle given its breadth and area involves dividing the area by the breadth.

    • Calculate length = Area / Breadth

    • For example, if the breadth is 5 and the area is 20, then the length would be 20 / 5 = 4

  • Answered by AI
  • Q9. What are the different types of data types in Java?
  • Ans. 

    Java has primitive data types (int, double, boolean, etc.) and reference data types (arrays, classes, interfaces, etc.)

    • Primitive data types include int, double, boolean, char, etc.

    • Reference data types include arrays, classes, interfaces, etc.

    • Examples: int num = 10; double price = 19.99; boolean isTrue = true; String name = "John";

  • Answered by AI
  • Q10. What are the differences between the Java Virtual Machine (JVM), Java Runtime Environment (JRE), and Java Development Kit (JDK)?
  • Ans. 

    JVM executes Java bytecode, JRE includes JVM and libraries, JDK includes JRE and development tools.

    • JVM is responsible for executing Java bytecode and providing a runtime environment.

    • JRE includes JVM along with libraries and other components necessary to run Java applications.

    • JDK includes JRE and development tools like compilers and debuggers for creating Java applications.

    • JDK is required for developing Java application...

  • Answered by AI
  • Q11. What is a primary key in SQL?
  • Ans. 

    A primary key in SQL is a unique identifier for each record in a table.

    • Primary key ensures each record in a table is unique

    • It can be a single column or a combination of columns

    • Primary key values cannot be NULL

    • Example: 'id' column in a 'users' table

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 10 interview rounds.

Round 1 - Aptitude Test 

Any ideas for an aptitude test?

Round 2 - Technical 

(2 Questions)

  • Q1. You have a good network connection.
  • Q2. Which individuals are currently employed?
Round 3 - Case Study 

What is education in place?

Round 4 - Coding Test 

What is a SQL Server?

Round 5 - Group Discussion 

Effective communication and any suggestion.

Round 6 - HR 

(2 Questions)

  • Q1. What is your name?
  • Q2. What is your educational background?
Round 7 - HR 

(2 Questions)

  • Q1. What type of work does the Deloitte company engage in?
  • Q2. What type of work does Deloitte engage in?
Round 8 - HR 

(2 Questions)

  • Q1. What is your father's name?
  • Q2. What is your father's name?
Round 9 - Assignment 

Engage with any assignment provided.

Round 10 - Assignment 

Please provide any assignments you have.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes I am interested in this job
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. When is my interview time?
  • Q2. What documents should I prepare to bring with me?
  • Q3. What would be good for the company?
  • Q4. Will the company be with me forever?
  • Q5. Will the company be with me in my ups and downs?

Interview Preparation Tips

Interview preparation tips for other job seekers - I have to your ITI with electrician rate and I done 1year computer diploma with DOAP course
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I have given 4 rounds of WNS and was selected. They congratulated me for being selected and then asked me the documents. But later HR and Interviewer both stopped picking my call and then told me after 15-20 days we are putting you on hold and not proceeding with your application

Round 2 - Technical 

(1 Question)

  • Q1. Why you are taking less salary
Round 3 - One-on-one 

(2 Questions)

  • Q1. Why are you leaving your current job
  • Q2. NA
Round 4 - HR 

(1 Question)

  • Q1. Why are you not satisfied by your current job
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic question on the tool I use in previous company and ask question on the components of it.
Round 2 - Technical 

(1 Question)

  • Q1. More on what is my role and managerial round.
Round 3 - Technical 

(1 Question)

  • Q1. 2 hour long interview with a panel of 4. Possibly every single question that can be asked and repeatedly same things. They tried understanding the process and functions elaborately way too much which was ...
Round 4 - Technical 

(1 Question)

  • Q1. Everything was already asked. But they need to drench and waste time of the candidate and themselves so they set up another round of technical to ask the same questions again and again.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't waste your time and energy with this company. They are not serious about hiring good candidates. They just want to know what their Peer banks are doing by setting up interviews with potential candidates. And after getting all the info they can take they will ghost you by not picking up your call or answering your mail.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The Aptitude Test session accesses mathematical and logical reasoning abilities

Round 2 - Technical 

(6 Questions)

  • Q1. What is Vlookup
  • Q2. Some IF else Question in Excel
  • Q3. What does your day in your previous organization look like?
  • Q4. Could you share the technical skills you possess?
  • Q5. Can you explain what a Pivot Table is?
  • Q6. Find the Highest-paid employee in each department along with their salary and department name.

Interview Preparation Tips

Topics to prepare for Nagarro Data Analyst interview:
  • SQL
  • Excel
  • Problem Solving
  • PowerBI
  • SQL Queries
Interview preparation tips for other job seekers - Practice common interviews and scenarios, especially for your role.
Be prepared to discuss past challenges and how did you overcome.

Scitech Specialities Interview FAQs

How many rounds are there in Scitech Specialities interview?
Scitech Specialities interview process usually has 2-3 rounds. The most common rounds in the Scitech Specialities interview process are HR, Technical and Resume Shortlist.
How to prepare for Scitech Specialities 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 Scitech Specialities. The most common topics and skills that interviewers at Scitech Specialities expect are Lead Generation, Marketing, Business Development, Client Relationship Management and Cold Calling.
What are the top questions asked in Scitech Specialities interview?

Some of the top questions asked at the Scitech Specialities interview -

  1. Which is last organizat...read more
  2. HPLC working and u...read more
  3. Analytical method developm...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Scitech Specialities interviews
WalkIn
Referral
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Aarti Industries Interview Questions
4.2
 • 275 Interviews
Atul Interview Questions
3.9
 • 78 Interviews
Indo Amines Interview Questions
3.0
 • 13 Interviews
Vinati Organics Interview Questions
3.9
 • 12 Interviews
Bodal Chemicals Interview Questions
3.7
 • 12 Interviews
View all

Scitech Specialities Reviews and Ratings

based on 28 reviews

3.2/5

Rating in categories

3.1

Skill development

3.2

Work-Life balance

2.8

Salary & Benefits

2.8

Job Security

2.6

Company culture

2.6

Promotions/Appraisal

2.8

Work Satisfaction

Explore 28 Reviews and Ratings
Production Officer
10 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

QA Officer
7 salaries
unlock blur

₹1.2 L/yr - ₹2.2 L/yr

QC Officer
6 salaries
unlock blur

₹2 L/yr - ₹2.6 L/yr

Microbiologist
4 salaries
unlock blur

₹1.9 L/yr - ₹3.3 L/yr

QA Executive
4 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Explore more salaries
Compare Scitech Specialities with

Chemspec Chemicals

3.4
Compare

Aarti Industries

4.2
Compare

Vinati Organics

3.9
Compare

Atul

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