Filter interviews by
Be the first one to contribute and help others!
I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.
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.
It enables a single interface to be used for different data types or classes.
Examples include method overloading and method overriding in object-oriented programming.
Find missing number from nth number array.
Iterate through the array and calculate the sum of all numbers
Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2
Subtract the sum of array from the sum of numbers from 1 to n to find the missing number
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Inheritance allows a class to reuse code from another class.
Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.
Example: Class B inherits from Class A, so Class B can access
Find 2nd max element from array of strings
Sort the array in descending order
Skip the first element (max element)
Return the second element
I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.
Coding Test consists of 3 Problem Question (2 Logical questions and 1 SQL Query ) and Around 20 MCQS
Platform - CoderByte
30 Aptitude Question
3 Mail Writing Question
Solved a sorting problem by implementing quicksort algorithm.
Implemented quicksort algorithm to efficiently sort the array.
Used recursion to divide the array into smaller subarrays and sort them individually.
Optimized the algorithm by choosing a pivot element strategically to minimize comparisons.
The 3rd question based on SQL query likely refers to a specific query or scenario related to SQL.
Understand the context of the query being asked about
Analyze the structure and purpose of the SQL query
Explain the expected output or result of the query
Code to reverse digits of a number
Use modulo operator to extract the last digit of the number
Multiply the result by 10 and add the next digit until all digits are reversed
Handle negative numbers separately by converting to positive before reversing
I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.
I am a passionate software engineering student with experience in web development and a strong desire to learn and grow.
Currently pursuing a degree in Computer Science
Proficient in programming languages such as Java, Python, and JavaScript
Experience with front-end technologies like HTML, CSS, and React
Completed internships at tech companies like XYZ Inc.
Interested in exploring machine learning and artificial intelligen
I have strong skills in programming languages such as Java, Python, and C++, as well as experience with web development and database management.
Proficient in Java, Python, and C++ programming languages
Experience with web development using HTML, CSS, and JavaScript
Familiarity with database management systems like MySQL and MongoDB
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
The Hiring team and the trial team is very supportive, and the trial assignment was challenging and enjoyable. At First round the assignment is for design the Ai chat to Human chat process, that was very challenging, and I think best lesson I get from the assignment. and 2nd assignment to design and case study of the helplama website and i give best from my side and the team was very supportive and the work environment also best.
posted on 2 Sep 2024
I applied via Walk-in
I am a dedicated and experienced Virtual Relationship Manager with a passion for building strong connections and providing excellent customer service.
Over 5 years of experience in virtual relationship management
Skilled in communication, problem-solving, and relationship-building
Proven track record of exceeding customer satisfaction goals
Proficient in CRM software and virtual communication tools
I am passionate about leveraging technology to enhance customer relationships and provide personalized solutions.
Passionate about using technology to improve customer relationships
Excited about providing personalized solutions
Believe in the importance of virtual communication in today's digital world
posted on 22 Nov 2024
I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.
Reasoning , maths , coding, english
Java python css c programming sql, html.
posted on 14 Oct 2024
I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.
Wifi AC is the 5th generation of wifi technology, while Wifi Ax is the 6th generation with improved speed and efficiency.
Wifi AC operates on the 5 GHz band, while Wifi Ax operates on both 2.4 GHz and 5 GHz bands.
Wifi Ax supports MU-MIMO (Multi-User, Multiple Input, Multiple Output) technology for better performance in crowded networks.
Wifi Ax offers higher data rates and improved efficiency compared to Wifi AC.
Wifi Ax ...
DTIM stands for Delivery Traffic Indication Message, used in Wi-Fi networks to inform clients about the presence of buffered broadcast and multicast frames.
DTIM is a parameter in the Wi-Fi beacon frame that indicates to clients how often they should wake up to receive broadcast and multicast traffic.
It helps in saving battery life for devices by allowing them to sleep for longer periods of time.
Clients can set their po...
posted on 2 Nov 2024
I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.
SEO stands for Search Engine Optimization, which is the practice of increasing the quantity and quality of traffic to your website through organic search engine results.
SEO involves optimizing your website to improve its visibility on search engines like Google.
It includes keyword research, on-page optimization, link building, and content creation.
The goal of SEO is to drive more organic traffic to your website and imp...
Domain is the address of a website, hosting is the service that stores the website's files and makes it accessible online.
Domain is the unique address of a website on the internet, like www.example.com
Hosting is the service that stores the website's files and data on a server, making it accessible online
Domain registration is the process of purchasing and owning a domain name
Web hosting providers offer different types ...
Some main SEO tools include Google Analytics, SEMrush, Ahrefs, Moz, and Screaming Frog.
Google Analytics for tracking website traffic and user behavior
SEMrush for keyword research and competitive analysis
Ahrefs for backlink analysis and site auditing
Moz for SEO insights and rank tracking
Screaming Frog for website crawling and technical SEO analysis
Google Adwords is an online advertising platform developed by Google, where advertisers pay to display brief advertisements, service offerings, product listings, video content, and generate mobile application installs within the Google ad network to web users.
Online advertising platform by Google
Advertisers pay to display ads
Can display various types of ads like text, display, video, etc.
Helps in reaching target audien
Organic search refers to the unpaid search results generated by search engines based on relevance to the user's query.
Organic search results are not influenced by paid advertising.
Websites can improve their organic search rankings through search engine optimization (SEO) techniques.
Examples of organic search results include links to websites, blogs, and articles that are deemed relevant to the user's search query.
Keywords are specific words or phrases that describe the content of a webpage and are used in SEO to help search engines understand the topic of the page.
Keywords are used to optimize a website's content for search engines.
They help search engines match a webpage to relevant search queries.
Examples of keywords include 'SEO tips', 'best digital marketing agency', 'how to increase website traffic'.
Keywords analysis is the process of researching and identifying the most relevant keywords for a website to improve its search engine rankings.
Keywords analysis involves identifying popular search terms related to a website's content.
It helps in understanding what keywords users are searching for and how competitive those keywords are.
Tools like Google Keyword Planner can be used for keywords analysis.
The goal is to se...
OOPs concept is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.
Encapsulation: bundling data and methods that operate on the data into a single unit. Example: a car object with properties like color and methods like start() and stop().
Inheritance: allows a class to inherit properties and behavior from another class. Example: a class...
A real life scenario example of OOPs is modeling a car as an object with properties and methods.
Create a Car class with attributes like make, model, year, color
Define methods like start(), accelerate(), brake()
Instantiate multiple car objects and perform actions on them
Collections in Java are classes and interfaces that provide a way to store and manipulate groups of objects.
Collections provide a way to work with groups of objects in Java
They include classes like ArrayList, LinkedList, HashMap, etc.
Collections framework provides interfaces like List, Set, Map, etc.
Collections offer methods for adding, removing, and accessing elements in a group
I am a passionate Java developer with 5 years of experience in developing web applications and implementing software solutions.
5 years of experience in Java development
Strong knowledge of web application development
Experience in implementing software solutions
Passionate about coding and problem-solving
Developed a web application for online shopping with user authentication and payment gateway integration.
Used Java Spring framework for backend development
Implemented RESTful APIs for communication between frontend and backend
Integrated Stripe API for secure payment processing
posted on 9 Dec 2024
MCQ - 20 (aptitude), 20(c+ and sql)
Pattern, array and sql questions
based on 11 reviews
Rating in categories
Technical Support Engineer
4
salaries
| ₹2.7 L/yr - ₹3.3 L/yr |
Senior Software Developer
4
salaries
| ₹5 L/yr - ₹7.8 L/yr |
Senior IOS Developer
4
salaries
| ₹6 L/yr - ₹9.8 L/yr |
Sales Manager
3
salaries
| ₹2 L/yr - ₹2 L/yr |
Network Engineer
3
salaries
| ₹2.3 L/yr - ₹5.5 L/yr |
Baoiam Innovations
GrapplTech
Busibud
Plada Infotech Services