Upload Button Icon Add office photos

Filter interviews by

Edgebricks User Interface Intern Interview Questions and Answers

Updated 3 Dec 2024

Edgebricks User Interface Intern Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected 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. Javascript Questions
  • Q2. React Questions

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via campus placement at MAEER's MIT College of Engineering, Pune and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was successful, covering various topics such as ratios and proportions, percentages, blood relations, boat and stream problems, highest common factor (HCF) and least common multiple (LCM), volume and surface area, time and work, as well as questions related to profit and loss, and speed, distance, and time.

Round 2 - Coding Test 

In the coding test 1 question for coding and another 2 for debugging were asked.

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

  • Answered by AI
  • Q2. What do you mean by polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in OOP allows a child class to override a method from its parent class, exhibiting polymo

  • Answered by AI
  • Q3. A puzzle was asked. Probably do all the puzzles from geeks for geeks.

Interview Preparation Tips

Interview preparation tips for other job seekers - For interviews do the basic computer concepts. Do practice projects as project related questions might be asked. Oops concepts, sql, Dbms, OS, Cn.

Intern Interview Questions & Answers

Jio user image Harshita Krishna naik

posted on 30 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test was very easy to clear

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

  • Answered by AI
  • Q2. About educational Background

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepared well
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Golden rule of accounting
  • Ans. 

    The golden rule of accounting states that debit what comes in and credit what goes out.

    • Debit what comes in and credit what goes out

    • Helps maintain the balance in accounting records

    • Used to ensure accuracy in financial transactions

  • Answered by AI
  • Q2. Explain requirements of LFAR
  • Ans. 

    LFAR stands for Long Form Audit Report, which is a detailed report prepared by auditors to provide a comprehensive analysis of a company's financial statements and internal controls.

    • LFAR is a regulatory requirement for banks and financial institutions in India, mandated by the Reserve Bank of India (RBI).

    • It includes detailed information on the financial position of the company, compliance with regulatory requirements, ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Data Structures and Algorithms
Round 2 - Technical 

(1 Question)

  • Q1. Memory management
Round 3 - HR 

(1 Question)

  • Q1. Projects and Code executions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Graphic Era University, Dehradun and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 Questions of Medium leetcode difficulty.

Round 2 - Group Discussion 

The topic was given to 8-10 people and starting from a random person the GD starts.

Round 3 - Technical 

(2 Questions)

  • Q1. SQL query to get 3rd largest element.
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to get 3rd largest element.

    • Use ORDER BY clause to sort the elements in descending order.

    • Use LIMIT 2,1 to skip the first two largest elements and get the 3rd largest element.

  • Answered by AI
  • Q2. Programme to swap two objects (deep copy).
  • Ans. 

    Program to swap two objects (deep copy)

    • Create a temporary object to store one of the objects

    • Copy the values of the second object into the first object

    • Copy the values from the temporary object into the second object

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Topics to prepare for Genpact Intern interview:
  • DBMS
  • SQL
  • Programming
  • OS
Interview preparation tips for other job seekers - Read basics of OS, DBMS (especially SQL) and little bit of Leetcode.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Ist I gave a aptitude + Technical questions + 1 coding question
Coding question was based on sorting

Round 2 - Technical 

(5 Questions)

  • Q1. Academic project explanation, java basic questions
  • Q2. What is class, object
  • Ans. 

    Class is a blueprint for creating objects, while object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is a specific instance of a class.

    • Classes can inherit properties and behaviors from other classes.

    • Objects can interact with each other by calling methods on each other.

    • Example: Class 'Car' may have properties like 'color' and 'model', while an object of class 'Car' could be

  • Answered by AI
  • Q3. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation refers to bundling data and methods that operate on the data into a single unit.

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q4. What is method overloading, method overiding
  • Ans. 

    Method overloading is when multiple methods have the same name but different parameters. Method overriding is when a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Method overloading allows a class to have multiple methods with the same name but different parameters.

    • Method overriding occurs in a subclass when a method has the same name and parameters as a method in it...

  • Answered by AI
  • Q5. What is inheritance, encapsulation, access modifiers
  • Ans. 

    Inheritance, encapsulation, and access modifiers are key concepts in object-oriented programming.

    • Inheritance allows a class to inherit properties and behaviors from another class.

    • Encapsulation is the concept of bundling data and methods that operate on the data within a single unit.

    • Access modifiers control the visibility and accessibility of class members.

    • Examples: public, private, protected

    • Inheritance example: class D...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2023. There were 2 interview rounds.

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 

(6 Questions)

  • Q1. What is your name ?, What is your qualifications? , What is your current location?, Where do you belonge from?, why you want to do job ?, Why you choose this company to do job ?, What aspect about sallar...
  • Ans. 

    Interview questions and answers

    • My name is [Name].

    • I have completed my [Qualifications] from [University/Institute].

    • I am currently located in [Current Location].

    • I belong to [Hometown/City].

    • I am interested in this job because [Reasons].

    • I chose this company because [Reasons].

    • Salary is an important aspect for me, but not the only one.

  • Answered by AI
  • Q2. Why you choose this company to do work ?, What aspect about sallry ?
  • Ans. 

    I chose this company because of its reputation for innovation and growth. The salary offered is competitive and fair.

    • The company has a strong track record of developing cutting-edge technology

    • I am impressed by the company's commitment to employee growth and development

    • The salary offered is in line with industry standards and reflects my experience and qualifications

  • Answered by AI
  • Q3. What is your current locatuon? My current location is Varanasi, Lanka, Uttar Pradesh
  • Ans. 

    I am currently located in Varanasi, Lanka, Uttar Pradesh.

    • I am residing in the historic city of Varanasi, also known as Kashi.

    • Lanka is a locality within Varanasi, situated on the banks of the river Ganges.

    • Uttar Pradesh is a state in northern India, known for its rich cultural heritage.

  • Answered by AI
  • Q4. What is your highest qualification ?
  • Ans. 

    I have a Master's degree in Computer Science.

    • Master's degree in Computer Science

    • GPA of 3.8

    • Thesis on Machine Learning

    • Internship at Google

  • Answered by AI
  • Q5. Where do you belong from?
  • Ans. 

    I belong to India, a diverse and culturally rich country.

    • I was born and brought up in a small town in the northern part of India.

    • India is known for its diverse culture, languages, and traditions.

    • I have traveled to different parts of India and have experienced the beauty of its landscapes and people.

    • I am proud to be a part of a country that has a rich history and is constantly evolving.

  • Answered by AI
  • Q6. Why you want to do job ?
  • Ans. 

    I want to do a job to gain experience, learn new skills, and contribute to the growth of the company.

    • I am eager to learn and grow professionally

    • I want to contribute my skills and knowledge to the company

    • I am excited about the opportunity to work with a team

    • I am motivated by the prospect of financial stability and security

  • Answered by AI

Interview Preparation Tips

Topics to prepare for BYJU'S Intern interview:
  • Candidate name
  • Candidate current loaction
  • Candidate parmanent addres
  • Reason to join their company
  • Reason to do work
  • Candidate highest qualification
Interview preparation tips for other job seekers - Be aware from fake Jobs and don't give any information or document bithout perfect knowledge and Information about company, and don't pay any charge for job security or document varification ....whatever pay scale ....never pay them,
Don't give document for varification, first of all you check about company go through company's original website and talk them about your job mails are text related to this company and after geting conform, you can join
Be safe , be aware and be happy thanku so much this opportunitys

Intern Interview Questions & Answers

Capgemini user image Rewa Parashar

posted on 30 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Easy aptitude test. Simple questions and easy to answer.

Round 3 - Technical 

(2 Questions)

  • Q1. Implementing the logic for Bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

    • Start by comparing the first two elements of the array and swap them if necessary.

    • Continue comparing adjacent elements and swapping them until the array is sorted.

    • Repeat this process for each element in the array until no more swaps are needed.

  • Answered by AI
  • Q2. Software development lifecycle and its uses
  • Ans. 

    Software development lifecycle is a process used to design, develop, and test software applications.

    • It includes phases like planning, design, development, testing, deployment, and maintenance.

    • Each phase has specific goals and deliverables to ensure the quality and success of the software.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

    • SDLC helps in managing the project effectively, reducing risks, and deli

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Mainly on english and aptitude

Round 2 - Coding Test 

Java coding questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. One to one discussion
  • Q2. Where do you want to see after 5 years

Edgebricks Interview FAQs

How many rounds are there in Edgebricks User Interface Intern interview?
Edgebricks interview process usually has 1 rounds. The most common rounds in the Edgebricks interview process are One-on-one Round.
What are the top questions asked in Edgebricks User Interface Intern interview?

Some of the top questions asked at the Edgebricks User Interface Intern interview -

  1. Javascript Questi...read more
  2. React Questi...read more

Tell us how to improve this page.

Edgebricks User Interface Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Compare Edgebricks with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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