Upload Button Icon Add office photos
Engaged Employer

i

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

InfoAxon Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

InfoAxon Technologies Web Developer Trainee Interview Questions, Process, and Tips

Updated 26 Jan 2024

InfoAxon Technologies Web Developer Trainee Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(14 Questions)

  • Q1. Tell me about yourself.
  • Q2. Explain about your projects.
  • Q3. Why do we use doctype in Html? What will happen if we remove it?
  • Ans. 

    Doctype defines the version of HTML being used and helps browsers render the page correctly.

    • Doctype declaration is used to specify the version of HTML being used in the document.

    • It helps browsers to render the web page correctly by triggering standards mode.

    • If the doctype is removed, browsers may render the page in quirks mode which can lead to inconsistent display.

    • For example, without a doctype, some CSS styles may no

  • Answered by AI
  • Q4. What are meta tags? Explain different types of meta tags.
  • Ans. 

    Meta tags are HTML tags that provide metadata about a webpage. They are used to provide information about the page to search engines and browsers.

    • Meta tags are placed in the head section of an HTML document.

    • Common types of meta tags include meta description, meta keywords, and meta viewport.

    • Meta description provides a brief summary of the webpage's content.

    • Meta keywords are used to specify keywords relevant to the webp...

  • Answered by AI
  • Q5. What is z-index?
  • Ans. 

    z-index is a CSS property that controls the stacking order of elements on a webpage.

    • z-index determines which elements appear in front or behind other elements

    • Higher z-index values bring elements to the front

    • z-index only works on positioned elements (position: absolute, position: relative, or position: fixed)

    • z-index can be positive, negative, or zero

    • Elements with higher z-index values will overlap elements with lower va

  • Answered by AI
  • Q6. What is viewport?
  • Ans. 

    Viewport is the visible area of a web page in a web browser.

    • Viewport determines how much content can be seen without scrolling.

    • It is defined by the size of the browser window.

    • Viewport can be adjusted using meta tags in HTML.

    • Responsive web design uses viewport to optimize layout for different devices.

  • Answered by AI
  • Q7. What are the different ways to link css? Which has the highest priority?
  • Ans. 

    There are three ways to link CSS: inline, internal, and external. Inline has the highest priority.

    • Inline CSS is applied directly to an HTML element using the 'style' attribute.

    • Internal CSS is defined within the 'style' tags in the head section of an HTML document.

    • External CSS is linked to an HTML document using the 'link' tag with the 'rel' attribute set to 'stylesheet'.

    • Inline CSS has the highest priority, followed by

  • Answered by AI
  • Q8. What do you understand by CSS box model?
  • Ans. 

    CSS box model is a design concept that describes how elements are rendered on a web page.

    • The CSS box model consists of four main components: content, padding, border, and margin.

    • The content area is where the actual content of the element is displayed.

    • Padding is the space between the content and the border.

    • Border is a line that surrounds the padding and content.

    • Margin is the space between the border and other elements o...

  • Answered by AI
  • Q9. What is the difference between margin and padding?
  • Ans. 

    Margin is the space outside an element, while padding is the space inside an element.

    • Margin is used to create space between elements, while padding is used to create space within an element.

    • Margin affects the positioning of an element in relation to other elements, while padding affects the content within an element.

    • Negative margin can be used to overlap elements, while negative padding is not possible.

    • Margin is transp...

  • Answered by AI
  • Q10. How do you include bootstrap into a html document?
  • Ans. 

    To include Bootstrap into an HTML document, link the Bootstrap CSS and JavaScript files in the head section.

    • Download the Bootstrap CSS and JavaScript files from the official website.

    • Place the CSS file link inside the head section using the link tag.

    • Place the JavaScript file link at the end of the body section using the script tag.

    • Ensure the file paths are correct and relative to the HTML document.

  • Answered by AI
  • Q11. What is meant by bootstrap grid system?
  • Ans. 

    Bootstrap grid system is a responsive grid system that allows developers to create responsive layouts for web pages.

    • Bootstrap grid system is based on a 12-column layout.

    • It uses CSS classes to define the layout structure.

    • Developers can easily create responsive designs by utilizing the grid system.

    • The grid system provides different classes for different screen sizes, such as 'col-sm' for small screens and 'col-lg' for la

  • Answered by AI
  • Q12. What are containers?
  • Ans. 

    Containers are lightweight, isolated environments that package software and its dependencies for easy deployment and scalability.

    • Containers provide a consistent and reproducible environment for running applications.

    • They encapsulate an application and its dependencies, including libraries, binaries, and configuration files.

    • Containers are portable and can run on any system that supports containerization.

    • They offer effici...

  • Answered by AI
  • Q13. How do you declare a variable in javascript?
  • Ans. 

    To declare a variable in JavaScript, use the 'var', 'let', or 'const' keyword followed by the variable name.

    • Use 'var' to declare a variable with function scope

    • Use 'let' to declare a variable with block scope

    • Use 'const' to declare a constant variable

    • Example: var age = 25; let name = 'John'; const PI = 3.14;

  • Answered by AI
  • Q14. How to achieve responsiveness in web page?
  • Ans. 

    Achieve responsiveness in web page by using media queries, flexible layouts, and fluid images.

    • Use CSS media queries to apply different styles based on screen size

    • Create flexible layouts using CSS Grid or Flexbox

    • Use relative units like percentages and ems instead of fixed pixels

    • Optimize images for different screen sizes using srcset and sizes attributes

    • Test responsiveness across different devices and browsers

  • Answered by AI

Interview Preparation Tips

Topics to prepare for InfoAxon Technologies Web Developer Trainee interview:
  • HTML
  • CSS
  • Javascript
  • Bootstrap
Interview preparation tips for other job seekers - The interview is fairly easy, you just need to have basic knowledge about html, css and javascript. (I couldn't clear the interview, as my basics weren't clear).

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

I applied via Campus Placement and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First question in hr interview is tell about yourself then the hr asked questions what I mentioned in my resume. So put the information in resume what you known well. My unique talent is I'm a stage spea...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, be confident, don't put irrelevant information in your resume update yourself relating to your studies

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Campus Placement and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. 1.Tell me about yourself.
  • Q2. 2. Some basic questions from DBMS, iot and cloud.
  • Q3. 3. Explain your project ( technology u have used and what is it).
  • Q4. 4. Are you willing to relocate.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR was nice and friendly. Overall it was a NYC experience.
All the best guys.

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me aboit yourself
  • Q2. Why mechatronics? Why infosys?

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowbyour projects inside out. Prepare your basic hr questions from the beginning.

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The questions were on front end web development questions with managerial interview

Interview Preparation Tips

Interview preparation tips for other job seekers - The overall experience was good. The interview was on technical and managerial skills based on the experience gained.

InfoAxon Technologies Interview FAQs

How many rounds are there in InfoAxon Technologies Web Developer Trainee interview?
InfoAxon Technologies interview process usually has 1 rounds. The most common rounds in the InfoAxon Technologies interview process are Technical.
What are the top questions asked in InfoAxon Technologies Web Developer Trainee interview?

Some of the top questions asked at the InfoAxon Technologies Web Developer Trainee interview -

  1. Why do we use doctype in Html? What will happen if we remove ...read more
  2. What are the different ways to link css? Which has the highest priori...read more
  3. What are meta tags? Explain different types of meta ta...read more

Tell us how to improve this page.

InfoAxon Technologies Web Developer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k 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
 • 788 Interviews
View all
Solution Developer
87 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Solution Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI Developer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare InfoAxon Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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