Upload Button Icon Add office photos

Filter interviews by

Shri Harini Media Interview Questions and Answers

Updated 21 Sep 2017

Shri Harini Media Interview Experiences

1 interview found

Copy Editor Interview Questions & Answers

user image Anonymous

posted on 21 Sep 2017

I was interviewed before Sep 2016.

Interview Questionnaire 

2 Questions

  • Q1. What is the difference between content writing and copy editing?
  • Ans. 

    Content writing focuses on creating original and engaging content, while copy editing involves reviewing and improving existing content.

    • Content writing involves creating original content for various platforms such as websites, blogs, and social media.

    • Copy editing involves reviewing and improving existing content for clarity, grammar, style, and consistency.

    • Content writers focus on storytelling, engaging the audience, a...

  • Answered by AI
  • Q2. Subject knowledge or attitude in office: what weighs more?
  • Ans. 

    Subject knowledge is more important than attitude in office for a Copy Editor.

    • Subject knowledge is essential for ensuring accuracy and quality in editing.

    • Having a strong understanding of grammar, punctuation, and style guidelines is crucial for a Copy Editor.

    • Attitude in the office can impact teamwork and communication, but it cannot compensate for lack of subject knowledge.

    • Examples: Knowing AP Stylebook rules vs. havin

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Writing test to check articulation of thought, subject knowledge and grammar.
Tips: Read the questions properly before answering
Duration: 2 hours
Total Questions: 10

Round: Resume Shortlist
Tips: Resume should include achievements that are relevant for the job profile.

Round: Behavioural Interview
Experience: Subject knowledge gets you the job, but attitude keeps you there.
Tips: Listen carefully

Round: Technical + HR Interview
Experience: Made a table and listed out the job roles
Tips: Speak clearly, with confidence

Copy Editor Interview Questions asked at other Companies

Q1. What is the difference between content writing and copy editing?
View answer (3)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Sharing my Interview experience "Amol Ruikar" was the interviewer for me I was his LinkedIn Profile and I was Surprised, this kind of senior person gave wrong comments about my interview to HR. My Inte...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Shine and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(22 Questions)

  • Q1. What is SDLC and STLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is the process of developing software from planning to deployment. STLC stands for Software Testing Life Cycle, which is the process of testing software to ensure quality.

    • SDLC involves phases like planning, analysis, design, implementation, and maintenance.

    • STLC involves phases like test planning, test design, test execution, and test closure.

    • SDLC focuses on the ove...

  • Answered by AI
  • Q2. Defect Life Cycle
  • Q3. What are the Testing types?
  • Ans. 

    Testing types refer to different approaches and techniques used to validate software functionality.

    • Functional Testing - testing the functionality of the software

    • Non-Functional Testing - testing aspects like performance, usability, etc.

    • Manual Testing - testing done manually by testers

    • Automated Testing - testing done using automation tools

    • Regression Testing - testing to ensure new code changes do not affect existing func...

  • Answered by AI
  • Q4. How will you tackle if you found any issues just before the release?
  • Ans. 

    I will prioritize and address critical issues first, communicate with stakeholders, and work with the team to resolve the issues efficiently.

    • Prioritize critical issues that could potentially block the release

    • Communicate with stakeholders about the issues and potential impact on the release timeline

    • Work closely with the development team to quickly identify and resolve the issues

    • Perform thorough testing and validation po

  • Answered by AI
  • Q5. Agile model and water fall model?
  • Q6. Smoke testing, Unity Testing, White box testing and Black box testing?
  • Q7. Retesting and Regression testing difference?
  • Ans. 

    Retesting is testing the same functionality again to ensure the defect has been fixed, while regression testing is testing the entire application to ensure new changes have not affected existing functionality.

    • Retesting focuses on verifying that a specific defect has been fixed.

    • Regression testing focuses on ensuring that new changes have not affected existing functionality.

    • Retesting is usually done by the QA analyst who...

  • Answered by AI
  • Q8. Challenges for the QA lead during testing?
  • Ans. 

    Challenges for QA lead include managing resources, prioritizing tasks, communication with stakeholders, and ensuring thorough testing.

    • Managing resources effectively to meet deadlines

    • Prioritizing tasks based on criticality and impact on project

    • Communicating effectively with stakeholders to align expectations

    • Ensuring thorough testing coverage across all functionalities

    • Coordinating with development team for timely bug fix

  • Answered by AI
  • Q9. Selenium 4 new things?
  • Ans. 

    Selenium 4 introduces new features like Relative Locators, Chrome DevTools Protocol, and improved W3C WebDriver support.

    • Relative Locators allow testers to locate elements based on their relationship with other elements.

    • Chrome DevTools Protocol integration enables better debugging capabilities.

    • Improved W3C WebDriver support ensures better compatibility with modern browsers.

    • New APIs for better handling of browser windows...

  • Answered by AI
  • Q10. Found x path for element on flipkart web app
  • Ans. 

    To find x path for element on Flipkart web app, use browser developer tools

    • Open Flipkart web app in browser

    • Right click on the element you want to find x path for

    • Select 'Inspect' to open developer tools

    • Locate the element in the HTML code

    • Right click on the element in the HTML code

    • Select 'Copy' -> 'Copy XPath' to get the x path

  • Answered by AI
  • Q11. Mouse operation in selenium , syntax
  • Ans. 

    Mouse operations in Selenium involve actions like click, double click, right click, drag and drop, etc.

    • Mouse click: driver.findElement(By.xpath("//elementXPath")).click();

    • Double click: Actions action = new Actions(driver); action.doubleClick(element).perform();

    • Right click: Actions action = new Actions(driver); action.contextClick(element).perform();

    • Drag and drop: Actions action = new Actions(driver); action.dragAndDrop

  • Answered by AI
  • Q12. New locators in selenium 4 ?
  • Ans. 

    Selenium 4 introduces new locators for more efficient web element identification.

    • Selenium 4 introduces Relative Locators for finding elements based on their relationship with other elements.

    • The 'findElement' method now supports 'withTagName', 'above', 'below', 'toLeftOf', 'toRightOf', and 'near' methods.

    • Relative locators help in writing more robust and readable test scripts.

    • Example: driver.findElement(withTagName("inpu

  • Answered by AI
  • Q13. How to get data from excel file in selenium?
  • Ans. 

    Data from Excel file can be retrieved in Selenium using Apache POI library.

    • Use Apache POI library to read data from Excel files in Selenium

    • Create a FileInputStream object to read the Excel file

    • Create a Workbook object using the FileInputStream

    • Get the desired sheet from the Workbook

    • Iterate through rows and cells to retrieve data

    • Close the Workbook and FileInputStream after use

  • Answered by AI
  • Q14. How to upload file in selenium?
  • Ans. 

    To upload a file in Selenium, you can use the sendKeys() method on the file input element.

    • Locate the file input element on the webpage using appropriate locator strategies

    • Use the sendKeys() method to send the file path to the file input element

    • Ensure the file path is correct and accessible by the browser

  • Answered by AI
  • Q15. How to get iFrame in web page?
  • Ans. 

    To get an iFrame in a web page, you can use the <iframe> tag in HTML.

    • Use the <iframe> tag in HTML to embed another webpage within the current webpage

    • Specify the source URL of the webpage to be displayed in the iFrame using the 'src' attribute

    • Adjust the height and width of the iFrame using the 'height' and 'width' attributes

    • Add a border around the iFrame using the 'frameborder' attribute

  • Answered by AI
  • Q16. How to switch iFrame one to another?
  • Ans. 

    To switch iFrame one to another, you can use the switchTo() method in Selenium WebDriver.

    • Locate the iFrame using its locator

    • Switch to the iFrame using switchTo() method

    • Perform actions within the iFrame

    • Switch back to the default content when done

  • Answered by AI
  • Q17. Return type of iFrames in web page ?
  • Ans. 

    iFrames in web pages have a return type of HTML elements.

    • iFrames are used to embed another document within the current HTML document.

    • They are represented as HTML elements with a src attribute pointing to the URL of the embedded document.

    • iFrames can be manipulated using JavaScript to interact with the embedded content.

  • Answered by AI
  • Q18. How to automate mobile app without having a mobile device?
  • Ans. 

    Use emulators or cloud-based testing services to automate mobile app testing without physical devices.

    • Utilize emulators such as Android Studio's emulator or Genymotion for Android apps

    • Leverage cloud-based testing services like AWS Device Farm or BrowserStack for testing on various devices and OS versions

    • Implement Appium or Selenium for cross-platform mobile app automation

  • Answered by AI
  • Q19. Java coding questions like change date format 12 hours to 24 hours without using time and date from selenium?
  • Q20. TestNG annotations and It's sequences?
  • Ans. 

    TestNG annotations are used to control the flow of test methods and define the sequence in which they should be executed.

    • Annotations like @BeforeSuite, @BeforeTest, @BeforeClass, @BeforeMethod are used to set up preconditions before executing test methods.

    • Annotations like @Test are used to define test methods.

    • Annotations like @AfterMethod, @AfterClass, @AfterTest, @AfterSuite are used to clean up after executing test m...

  • Answered by AI
  • Q21. How to copy data from one tab and paste it another tab where both tab are already opened?
  • Ans. 

    To copy data from one tab and paste it in another tab, use keyboard shortcuts or right-click options.

    • Use Ctrl + C to copy data from the source tab

    • Switch to the target tab

    • Use Ctrl + V to paste the copied data in the target tab

    • Alternatively, right-click on the selected data and choose 'Copy', then right-click in the target tab and choose 'Paste'

  • Answered by AI
  • Q22. How to drag any object one place to another place using actions class?
  • Ans. 

    Use Actions class in Selenium to drag an object from one place to another.

    • Create an instance of Actions class

    • Use dragAndDrop() method to drag the object to the desired location

    • Perform() method to execute the action

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nirvana Solutions Lead QA Analyst interview:
  • Manual Tesitng
  • Automation Testing
  • Testng
  • JIRA
  • Testing Methodology
  • Selenium
  • Core Java
  • API
Interview preparation tips for other job seekers - Please be ready for the interview.
You should be have good knowledge in Manual testing and Automation testing.
Ready for write the java code.
Ready for found the x path , drag and drop object, fetch the data from excel file, upload file via selenium code etc.
Prepare basic questions related to the Manual testing.

Skills evaluated in this interview

MLE Intern Interview Questions & Answers

HyperVerge user image Anonymous

posted on 17 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(4 Questions)

  • Q1. Describe projects?
  • Ans. 

    I have worked on various projects ranging from data analysis to machine learning models.

    • Developed a sentiment analysis model using natural language processing techniques

    • Implemented a recommendation system based on collaborative filtering algorithm

    • Worked on a predictive maintenance project for optimizing equipment performance

  • Answered by AI
  • Q2. Explain architecture of Efficient-nets
  • Ans. 

    EfficientNets are a family of convolutional neural networks that have been designed to achieve state-of-the-art accuracy with fewer parameters and FLOPS.

    • EfficientNets use a compound scaling method to balance network depth, width, and resolution for optimal performance.

    • They are based on a baseline network architecture called EfficientNet-B0, which is then scaled up to create larger models like EfficientNet-B1, Efficient...

  • Answered by AI
  • Q3. Explain transformers architecture
  • Ans. 

    Transformers architecture is a deep learning model that uses self-attention mechanism to process sequential data.

    • Transformers consist of an encoder and a decoder, each composed of multiple layers of self-attention and feed-forward neural networks.

    • Self-attention mechanism allows the model to weigh the importance of different input tokens when making predictions.

    • Transformers have achieved state-of-the-art performance in ...

  • Answered by AI
  • Q4. Longest sub array question in python.
  • Ans. 

    Find the longest subarray of strings in a given array.

    • Iterate through the array and keep track of the current subarray length.

    • Reset the subarray length when encountering a non-string element.

    • Return the length of the longest subarray found.

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. About family and past life
  • Q2. Past internships and learnings
  • Q3. College life and what they expect.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. What is react why it's used?
Round 2 - Technical 

(1 Question)

  • Q1. What is virtual DOM in react?
Round 3 - Assignment 

Filter and shot the filter block based on title using redux?

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Coding Test 

2 coding questions,20 mcq-from coderbyte

Round 2 - One-on-one 

(1 Question)

  • Q1. They told selected, but still not scheduled 1:1 round, never wait, they gave mail also selected, but not scheduled 1:1 , its having 2 months
Round 3 - HR 

(1 Question)

  • Q1. Still now not scheduled
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Q2. Question based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do agile methodologies function in B2B projects?
  • Ans. 

    Agile methodologies in B2B projects involve frequent communication, adaptability, and collaboration with stakeholders.

    • Agile methodologies in B2B projects prioritize customer collaboration and responding to change over following a strict plan.

    • Regular feedback from stakeholders helps in adjusting project scope and priorities in real-time.

    • Cross-functional teams work together closely to deliver incremental value to the B2B...

  • Answered by AI
  • Q2. What is your experience with barcode scanners?
  • Ans. 

    I have extensive experience working with barcode scanners in various automation projects.

    • Implemented barcode scanning functionality in warehouse management system to track inventory

    • Integrated barcode scanners with automated testing tools for regression testing

    • Utilized barcode scanners in manufacturing processes to improve efficiency and accuracy

  • Answered by AI

VC++ MFC developere Interview Questions & Answers

Samsung Electro-Mechanics user image pawan mishra

posted on 16 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. OOPs basics questions like inheritance, smart pointers, diamond problem etc.
  • Q2. MFC basic questions like sending data from one window to other, sendmessage post message etc.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

  • Answered by AI

Shri Harini Media Interview FAQs

How to prepare for Shri Harini Media 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 Shri Harini Media. The most common topics and skills that interviewers at Shri Harini Media expect are Android, Angular, Cold Calling, IOS and Ionic Framework.

Tell us how to improve this page.

Interview Questions from Similar Companies

Zeus Learning Interview Questions
3.4
 • 34 Interviews
HyperVerge Interview Questions
4.3
 • 25 Interviews
MulticoreWare Interview Questions
4.2
 • 23 Interviews
GfK MODE Interview Questions
3.3
 • 22 Interviews
Contus Interview Questions
4.3
 • 21 Interviews
View all

Shri Harini Media Reviews and Ratings

based on 9 reviews

4.0/5

Rating in categories

3.9

Skill development

4.5

Work-life balance

4.2

Salary

3.5

Job security

3.9

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 9 Reviews and Ratings
Tele Sales Executive
6 salaries
unlock blur

₹1.4 L/yr - ₹3.5 L/yr

Business Development Executive
4 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Senior Editor
4 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Associate Editor
4 salaries
unlock blur

₹10.6 L/yr - ₹12 L/yr

HR Manager
3 salaries
unlock blur

₹9 L/yr - ₹9 L/yr

Explore more salaries
Compare Shri Harini Media with

Magus Customer Dialog

3.7
Compare

Shah Technical Consultants

3.6
Compare

GfK MODE

3.3
Compare

Avontix

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