Upload Button Icon Add office photos
Engaged Employer

i

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

Newrise Technosys Verified Tick

Compare button icon Compare button icon Compare
4.6

based on 49 Reviews

Filter interviews by

Newrise Technosys PHP Wordpress Developer Interview Questions, Process, and Tips

Updated 28 Apr 2021

Newrise Technosys PHP Wordpress Developer Interview Experiences

1 interview found

Interview Questionnaire 

8 Questions

  • Q1. How do you proceed for plugins development in WordPress
  • Ans. 

    Plugins development in WordPress involves creating custom functions and hooks to extend the functionality of the platform.

    • Identify the need for a plugin

    • Create a new folder in the 'wp-content/plugins' directory

    • Create a PHP file with a unique name and add plugin header information

    • Define plugin functions and hooks

    • Test and debug the plugin

    • Submit the plugin to the WordPress plugin repository

  • Answered by AI
  • Q2. What are hooks in WordPress.
  • Ans. 

    Hooks are functions that allow developers to modify the behavior of WordPress without modifying the core files.

    • Hooks are divided into two types: actions and filters.

    • Actions are triggered at specific points in the execution of WordPress, while filters allow developers to modify data before it is displayed.

    • Hooks are added using the add_action() and add_filter() functions.

    • Hooks can be removed using the remove_action() and...

  • Answered by AI
  • Q3. What are various tables in WordPress.
  • Ans. 

    WordPress has various tables to store different types of data.

    • wp_users - stores user information

    • wp_posts - stores all posts, pages, and custom post types

    • wp_comments - stores all comments

    • wp_terms - stores all taxonomy terms

    • wp_options - stores all site options

    • wp_postmeta - stores all post meta data

    • wp_usermeta - stores all user meta data

  • Answered by AI
  • Q4. In PHP how do we submit a form data.
  • Ans. 

    Form data in PHP can be submitted using the POST or GET method.

    • Use the $_POST or $_GET superglobal variable to retrieve form data

    • Specify the method attribute in the form tag as either POST or GET

    • Use the submit button to trigger the form submission

  • Answered by AI
  • Q5. Datatypes in PHP
  • Ans. 

    PHP supports various datatypes including string, integer, float, boolean, array, object, and null.

    • String: a sequence of characters

    • Integer: a whole number

    • Float: a number with a decimal point

    • Boolean: true or false

    • Array: a collection of values

    • Object: an instance of a class

    • Null: a variable with no value

  • Answered by AI
  • Q6. SQL query for insert data into database.
  • Ans. 

    SQL query for inserting data into database.

    • Use INSERT INTO statement followed by table name and column names.

    • Values to be inserted should be enclosed in parentheses.

    • Use single quotes for string values.

    • Example: INSERT INTO users (name, age) VALUES ('John', 25);

  • Answered by AI
  • Q7. What are the various selector in CSS.
  • Ans. 

    CSS selectors are used to target HTML elements and apply styles to them.

    • Type selectors target elements based on their tag name (e.g. h1, p, div)

    • Class selectors target elements with a specific class attribute (e.g. .my-class)

    • ID selectors target elements with a specific ID attribute (e.g. #my-id)

    • Attribute selectors target elements with a specific attribute value (e.g. [href='https://www.example.com'])

    • Pseudo-class selecto...

  • Answered by AI
  • Q8. What is flexbox and how it work.
  • Ans. 

    Flexbox is a CSS layout module that allows for flexible and responsive web design.

    • Flexbox is short for 'Flexible Box Layout'.

    • It allows for easy alignment and distribution of elements within a container.

    • Flexbox uses a set of properties to define the layout, such as 'display: flex', 'flex-direction', 'justify-content', and 'align-items'.

    • It is commonly used for creating responsive navigation menus, grids, and card layouts...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your core knowledge about WordPress and PHP alongwith html, css javascript and MySQL

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

Assignment for the development of WordPress themes and plugins.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript , html , css , php questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Diff btw vite and webpack
  • Q2. What is currying in js
Round 2 - Technical 

(2 Questions)

  • Q1. What is currying in javascript?
  • Q2. Diff btw webpack and vite

Interview Preparation Tips

Interview preparation tips for other job seekers - Just cover the basics of javascript. Learn about polyfills.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was relatively straightforward, consisting of both aptitude and technical questions, with a difficulty level ranging from easy to medium.

Round 2 - Technical 

(2 Questions)

  • Q1. Was asked to write a code on basic DSA concept
  • Q2. Then was asked basic questions on DSA and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have good understanding of everything you mentioned on your resume
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
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test was of moderate level.

Round 2 - Coding Test 

It checked on the concepts of oops

Round 3 - HR 

(1 Question)

  • Q1. How will you deal with tight delivery time.
  • Ans. 

    I will prioritize tasks, communicate effectively with team members, and utilize time management techniques to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Break down tasks into smaller manageable chunks

    • Communicate effectively with team members to coordinate efforts

    • Utilize time management techniques such as Pomodoro technique or Agile methodologies

    • Identify and eliminate any potential roadblocks or bott...

  • Answered by AI
Interview experience
3
Average
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. What is the difference between classes and struct
  • Ans. 

    Classes are reference types while structs are value types.

    • Classes support inheritance while structs do not.

    • Classes have default access modifier as internal while structs have it as private.

    • Classes have a destructor while structs do not.

    • Classes are allocated on heap while structs are allocated on stack.

    • Classes can be null while structs cannot.

  • Answered by AI
  • Q2. Dispatch Queue vs operations
  • Ans. 

    Dispatch Queue is a thread-safe way to execute tasks asynchronously, while Operations are a way to encapsulate tasks.

    • Dispatch Queue is a high-level API for managing concurrent operations.

    • Operations are objects that encapsulate a single task or multiple tasks.

    • Dispatch Queue is simpler to use and recommended for most use cases.

    • Operations provide more control over task dependencies and cancellation.

    • Both can be used togeth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and problem-solving and is tested.

Skills evaluated in this interview

Newrise Technosys Interview FAQs

What are the top questions asked in Newrise Technosys PHP Wordpress Developer interview?

Some of the top questions asked at the Newrise Technosys PHP Wordpress Developer interview -

  1. How do you proceed for plugins development in WordPr...read more
  2. What are the various selector in C...read more
  3. What are various tables in WordPre...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
View all
React Native Developer
6 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Software Developer
4 salaries
unlock blur

₹1.6 L/yr - ₹4.7 L/yr

HR Manager
4 salaries
unlock blur

₹3.3 L/yr - ₹8 L/yr

Software Tester
3 salaries
unlock blur

₹2.1 L/yr - ₹4.5 L/yr

Senior PHP Developer
3 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Explore more salaries
Compare Newrise Technosys with

Infosys

3.7
Compare

TCS

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