Upload Button Icon Add office photos

Filter interviews by

Live Cristle Interview Questions and Answers

Updated 2 Apr 2023

8 Interview questions

A Web Design Developer was asked
Q. What is the purpose of HTML?
Ans. 

HTML is a markup language used to create the structure of web pages.

  • HTML stands for HyperText Markup Language.

  • It is used to create the structure of web pages by using tags.

  • Tags are enclosed in angle brackets, like <tag>.

  • HTML elements are used to define the different parts of a webpage, such as headings, paragraphs, images, links, etc.

  • Attributes can be added to HTML elements to provide additional information ...

View all Web Design Developer interview questions
A Web Design Developer was asked
Q. What is an element in HTML?
Ans. 

An element in HTML is a building block of a webpage, defined by tags and used to structure content.

  • Elements are defined by tags such as <p> for paragraphs or <img> for images

  • Elements can have attributes that provide additional information or functionality

  • Elements can be nested within each other to create a hierarchy of content

View all Web Design Developer interview questions
A Web Design Developer was asked
Q. How do you center a div element?
Ans. 

To center a div element, use CSS properties like display: flex, text-align: center, margin: 0 auto, etc.

  • Use display: flex and justify-content: center for horizontal centering

  • Use text-align: center for centering inline elements inside the div

  • Use margin: 0 auto for centering block elements with a specific width

View all Web Design Developer interview questions
A Web Design Developer was asked
Q. What are the differences between var, let, and const?
Ans. 

Var is function scoped, let and const are block scoped. Var can be redeclared and updated, let can be updated but not redeclared, const cannot be updated or redeclared.

  • Var is hoisted to the top of its scope, let and const are not.

  • Var can be declared without being initialized, let and const cannot.

  • Var can be used before it is declared, let and const cannot.

  • Example: var x = 5; let y = 10; const z = 15;

  • Example: funct...

View all Web Design Developer interview questions
A Web Design Developer was asked
Q. How can we add a JavaScript file to HTML?
Ans. 

You can add a Javascript file to HTML by using the <script> tag with the src attribute pointing to the file's location.

  • Use the <script> tag in the HTML file.

  • Add the src attribute to the <script> tag with the path to the Javascript file.

  • Place the <script> tag in the <head> or <body> section of the HTML file.

View all Web Design Developer interview questions
A Web Design Developer was asked
Q. What are the features of JavaScript?
Ans. 

Javascript features include dynamic typing, event-driven programming, and object-oriented programming.

  • Dynamic typing allows for flexibility in variable types

  • Event-driven programming allows for interactive web applications

  • Object-oriented programming allows for modular and reusable code

  • Supports functional programming

  • Can manipulate HTML and CSS

  • Can handle asynchronous programming with callbacks and promises

View all Web Design Developer interview questions
A Web Design Developer was asked
Q. What are the semantic tags in HTML?
Ans. 

Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

  • Semantic tags help search engines and screen readers understand the structure of a webpage.

  • Examples of semantic tags include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

  • Using semantic tags improves SEO and accessibility of a webs...

View all Web Design Developer interview questions
Are these interview questions helpful?
A Web Design Developer was asked
Q. What is the Difference between Block and inline elements.Can you give some example of inline Elements.
Ans. 

Block elements take up the full width available, while inline elements only take up as much width as necessary.

  • Block elements start on a new line and take up the full width available (e.g. <div>, <p>, <h1>).

  • Inline elements do not start on a new line and only take up as much width as necessary (e.g. <span>, <a>, <strong>).

View all Web Design Developer interview questions

Live Cristle Interview Experiences

1 interview found

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

I applied via Hirect and was interviewed before Jan 2022. There was 1 interview round.

Round 1 - One-on-one 

(8 Questions)

  • Q1. What is the work of the Html.
  • Ans. 

    HTML is a markup language used to create the structure of web pages.

    • HTML stands for HyperText Markup Language.

    • It is used to create the structure of web pages by using tags.

    • Tags are enclosed in angle brackets, like <tag>.

    • HTML elements are used to define the different parts of a webpage, such as headings, paragraphs, images, links, etc.

    • Attributes can be added to HTML elements to provide additional information or fu...

  • Answered by AI
  • Q2. What are the Features of Javascript.
  • Ans. 

    Javascript features include dynamic typing, event-driven programming, and object-oriented programming.

    • Dynamic typing allows for flexibility in variable types

    • Event-driven programming allows for interactive web applications

    • Object-oriented programming allows for modular and reusable code

    • Supports functional programming

    • Can manipulate HTML and CSS

    • Can handle asynchronous programming with callbacks and promises

  • Answered by AI
  • Q3. How can we add Javascript file to Html.
  • Ans. 

    You can add a Javascript file to HTML by using the <script> tag with the src attribute pointing to the file's location.

    • Use the <script> tag in the HTML file.

    • Add the src attribute to the <script> tag with the path to the Javascript file.

    • Place the <script> tag in the <head> or <body> section of the HTML file.

  • Answered by AI
  • Q4. Difference between Var,let and const.
  • Ans. 

    Var is function scoped, let and const are block scoped. Var can be redeclared and updated, let can be updated but not redeclared, const cannot be updated or redeclared.

    • Var is hoisted to the top of its scope, let and const are not.

    • Var can be declared without being initialized, let and const cannot.

    • Var can be used before it is declared, let and const cannot.

    • Example: var x = 5; let y = 10; const z = 15;

    • Example: function e...

  • Answered by AI
  • Q5. What are the Semantic tags in html.
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

    • Examples of semantic tags include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

    • Using semantic tags improves SEO and accessibility of a website.

  • Answered by AI
  • Q6. What is the Difference between Block and inline elements.Can you give some example of inline Elements.
  • Ans. 

    Block elements take up the full width available, while inline elements only take up as much width as necessary.

    • Block elements start on a new line and take up the full width available (e.g. <div>, <p>, <h1>).

    • Inline elements do not start on a new line and only take up as much width as necessary (e.g. <span>, <a>, <strong>).

  • Answered by AI
  • Q7. How to center a div element.
  • Ans. 

    To center a div element, use CSS properties like display: flex, text-align: center, margin: 0 auto, etc.

    • Use display: flex and justify-content: center for horizontal centering

    • Use text-align: center for centering inline elements inside the div

    • Use margin: 0 auto for centering block elements with a specific width

  • Answered by AI
  • Q8. What is a element in Html
  • Ans. 

    An element in HTML is a building block of a webpage, defined by tags and used to structure content.

    • Elements are defined by tags such as <p> for paragraphs or <img> for images

    • Elements can have attributes that provide additional information or functionality

    • Elements can be nested within each other to create a hierarchy of content

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They didn't ask any depth question.Your basic knowledge should be clear.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Live Cristle?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

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

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

I applied via Approached by Company and was interviewed before May 2018. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. This is face to face interview... They are observing our behaviour... Attitude... Etc
  • Q2. Introduce u r self....
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have 3 years of experience working in marketing and sales roles.

    • I am proficient in Microsoft Office Suite and have strong communication skills.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q3. U r carrier objections
  • Ans. 

    My career objectives focus on continuous growth, contributing to team success, and making a positive impact in my field.

    • Aim to develop expertise in my field, such as becoming a certified project manager.

    • Seek leadership opportunities to guide and mentor junior team members.

    • Aspire to work on innovative projects that challenge my skills and creativity.

    • Desire to contribute to a company's mission, like improving customer sa...

  • Answered by AI
  • Q4. About TCS
  • Q5. Why should u select TCS
  • Ans. 

    TCS is a global leader in IT services with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality services to clients worldwide.

    • TCS offers a wide range of opportunities for career growth and development.

    • TCS values diversity and inclusion, creating a supportive work environment for employees.

    • TCS invests in cutting-edge technologies and training programs to kee...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Any kind of topic u cn select... Sales, accounts, service

Round: Test
Experience: Aptitude test... Mathematic and problem solving... General knowledge is very important

Round: Telephonic
Experience: This is final round... BH directly interact with us...

General Tips: Be confident... Be clam.... Keep smiling face... That is the way to win
Skills: Communication, Body Language, Leadership, Presentation Skills, Time Management
Duration: <1 week
Are these interview questions helpful?

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Company Website and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. GL related questions
  • Q2. Comfortable for night shifts
  • Ans. 

    Yes, I am comfortable with night shifts and have experience working during those hours.

    • I have worked night shifts in my previous job and have adapted to the schedule

    • I am a night owl and prefer working during those hours

    • I understand the importance of being alert and focused during night shifts

    • I am willing to adjust my sleep schedule to accommodate night shifts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about GL and accounting policies

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

Live Cristle Interview FAQs

How many rounds are there in Live Cristle interview?
Live Cristle interview process usually has 2 rounds. The most common rounds in the Live Cristle interview process are Resume Shortlist and One-on-one Round.
How to prepare for Live Cristle 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 Live Cristle. The most common topics and skills that interviewers at Live Cristle expect are Excel and multisite.
What are the top questions asked in Live Cristle interview?

Some of the top questions asked at the Live Cristle interview -

  1. What is the Difference between Block and inline elements.Can you give some exam...read more
  2. What are the Semantic tags in ht...read more
  3. What are the Features of Javascri...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

Live Cristle Reviews and Ratings

based on 8 reviews

4.3/5

Rating in categories

4.4

Skill development

4.4

Work-life balance

4.3

Salary

4.2

Job security

4.1

Company culture

4.2

Promotions

4.1

Work satisfaction

Explore 8 Reviews and Ratings
Web Developer
3 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Full Stack Developer
3 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Live Cristle with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview