Upload Button Icon Add office photos

Filter interviews by

Live Cristle Interview Questions, Process, and Tips

Updated 2 Apr 2023

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 Live Cristle Web Design Developer Interview Questions and Answers

Q1. What is the Difference between Block and inline elements.Can you give some example of inline Elements.
View answer (1)

Web Design Developer Interview Questions asked at other Companies

Q1. What is the Difference between Block and inline elements.Can you give some example of inline Elements.
View answer (1)

Interview questions from similar companies

I applied via Walk-in and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself and technical knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm you will achieve it.

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About my previous work experience
  • Q2. About achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good. I was asked everything in detail and the managers make you comfortable enough so that answer each and evry question

I applied via Naukri.com and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Online technical MCQ exam you have to clear..
  • Q2. After online technical MCQ telephonic round approx 30min.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge will be asked at technical round.
Be confident while giving answer.


Based on prior experience they will ask questions.

Interview Questionnaire 

1 Question

  • Q1. Ques related to spring, rest web services

Interview Preparation Tips

Interview preparation tips for other job seekers - Average difficulty, smooth process

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

2 coding questions and 20 mcq
 

  • Q1. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Find the minimum time required to rot all fresh oranges in a grid.

    • Use Breadth First Search (BFS) to simulate the rotting process.

    • Track the time taken to rot all oranges and return -1 if any fresh oranges remain.

    • Handle edge cases like no fresh oranges or all oranges already rotten.

    • Consider using a queue to efficiently process adjacent oranges.

    • Ensure to update the grid with the new state of oranges after each second.

  • Answered by AI
  • Q2. 

    Calculate Sum of Proper Divisors

    Given a natural number N, return the sum of all its proper divisors.

    A proper divisor of Y is defined as a number X such that X < Y and Y % X = 0.

    Example:

    Input:
    T...
  • Ans. 

    Calculate the sum of proper divisors of a given natural number.

    • Iterate from 1 to sqrt(N) and check for divisors

    • If a divisor is found, add it to the sum and also add N/divisor if it is not the same as divisor

    • Return the sum as the result

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

Technical interview

  • Q1. 

    Rearrange Array to Form Largest Number

    Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible number. The digits within each number cannot be changed.

    ...

  • Ans. 

    Rearrange the array elements to form the largest possible number by concatenating them.

    • Sort the array elements in a custom comparator function to get the largest number.

    • Convert the sorted array elements to strings and concatenate them to form the final number.

    • Handle cases where the numbers have the same prefix by comparing the concatenated forms.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in DelhiEligibility criteriaCriteria not revealed to candidateAmazon interview preparation:Topics to prepare for the interview - Array, Linkedlist, Tree, Graph, Stack, OOPS, Geeksforgeeks archives, coding ninjas interview experience blogsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Be clear about whatever you have mentioned in resume, don't mention buzz words, because interviewer can go in depth
Tip 2 : Along with DS and Algo, if you have 3-4 months experience or internship experience, then be ready to answer scenario based technical questions like scaling the application that you developed and design concepts that can be used for improving
Tip 3 : Last but most important tip is to be calm through out the whole process ,don't loose hope if any round didn't go well ,if you have explained your thought process there is still chance to procees to next round so keep preparating for next rounds.

Application resume tips for other job seekers

Tip 1 : Keep it one page resume and mention keywords which align with your technical and personal competencies.
Tip 2 : Mention 3-4 projects in the order that , project which you can explain best should be at top,then the next, and so on.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Round 1 is quit easy , only verbal ability is little bit difficult. So anyone can easy to qualify round.

Round 2 - Technical 

(1 Question)

  • Q1. Round 2 is also easy. They will about your self, 2-3 basic technical questions and about project that you have done previously.
Round 3 - HR 

(1 Question)

  • Q1. Round 3 is basically non- eliminating round.They will ask basic questions just like your job preferance, ambitions etc.

Interview Preparation Tips

Topics to prepare for Capgemini Analyst interview:
  • Programing language
  • DBMS
  • OOPS
Interview preparation tips for other job seekers - Prepared with basic of programming questions. Have a clear understanding of your that you worked.

I applied via Referral and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic concept question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear. Some scenario based questions based on business rules and FDMEE data load

I applied via Recruitment Consultant and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Java based questions
  • Q2. Tool based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and straightforward

Interview Questionnaire 

2 Questions

  • Q1. Tell me your roles and responsibility currently handling in your organization.
  • Q2. Why do you looking for change?

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Prepare and attend the interview
2.Be always in calm and relaxed mode even you not prepared anything for interview.
3.Answer slowly and clearly.
4.If you are not able to answer for some questions, tell that you are not sure about that concept and try to give an answer.
5.Have a smile in face. Don't get panic.
6.Take a long breath b4 attending the interview.

Contact me on XXXXX if you have more questions and need help.

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.

Live Cristle Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Amazon Interview Questions
4.0
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
View all

Live Cristle Reviews and Ratings

based on 8 reviews

4.2/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

4.2

Salary

4.1

Job security

4.0

Company culture

4.1

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.7
Compare

Accenture

3.8
Compare

Infosys

3.6
Compare

Wipro

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