i
Cloud Assert Technologies
Filter interviews by
Clear (1)
I applied via Campus Placement and was interviewed before Sep 2023. There were 5 interview rounds.
Maximum element in an array
I am a software developer with a passion for coding and problem-solving. In my free time, I enjoy hiking, playing guitar, and reading.
Experienced in Java, Python, and JavaScript
Worked on projects involving web development and data analysis
Active participant in coding competitions like Hackerrank and LeetCode
Enjoy outdoor activities like hiking and camping
Play guitar in a local band and enjoy reading science fiction nov
Top trending discussions
I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.
I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.
I am open to discussing salary based on the responsibilities and opportunities offered by the position.
I am flexible and open to negotiation.
I am looking for a competitive salary that reflects my skills and experience.
I am more interested in the overall compensation package, including benefits and growth opportunities.
I would like to learn more about the company's salary range for this position.
I am confident that we c
My family background is diverse and multicultural.
My parents are from different countries, which has exposed me to different cultures and perspectives.
I have relatives who work in various industries, including technology and healthcare.
Growing up, my family encouraged me to pursue my interests in computer science and supported my education in the field.
I worked as a Software Developer at XYZ Company.
Developed and maintained software applications using Java and Python.
Collaborated with a team of developers to design and implement new features.
Participated in code reviews and debugging sessions to ensure high-quality code.
Worked closely with clients to gather requirements and provide technical support.
Implemented unit tests and performed software testing to identify an...
I have a strong background in software development and a proven track record of delivering high-quality projects on time and within budget.
I have a deep understanding of various programming languages and frameworks, allowing me to adapt quickly to new technologies.
I am highly skilled in problem-solving and troubleshooting, which enables me to identify and resolve issues efficiently.
I am a team player and have excellent...
Looking for new challenges and growth opportunities.
Seeking a more challenging role to enhance my skills and knowledge.
Interested in working on cutting-edge technologies and projects.
Want to be part of a dynamic and innovative team.
Desire to expand my professional network and learn from industry experts.
In 5 years, I see myself as a senior software developer leading a team and working on complex projects.
Leading a team of developers
Working on complex projects
Continuously learning and staying updated with new technologies
Contributing to the growth and success of the company
My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.
Strengths: problem-solving, attention to detail, teamwork
Weaknesses: time management, public speaking
I am a software developer with experience in various programming languages and a passion for creating innovative solutions.
Experienced in Java, C++, and Python
Developed a mobile app using React Native
Worked on a team to create a web application using Angular
Strong problem-solving and analytical skills
I am a software developer with experience in web development and a passion for problem-solving.
Experienced in web development using HTML, CSS, and JavaScript
Proficient in programming languages such as Java and Python
Familiar with frameworks like React and Angular
Strong problem-solving and analytical skills
Excellent teamwork and communication abilities
My strength is problem-solving and my weakness is sometimes overthinking.
Strength: Problem-solving
Weakness: Overthinking
In 5 years, I see myself as a senior software developer leading a team and working on complex projects.
Leading a team of developers
Working on complex projects
Continuously learning and improving my skills
Contributing to the growth and success of the company
Seeking new opportunities for professional growth and challenges.
Looking for a more challenging role
Want to expand my skill set
Seeking better career prospects
Interested in working with new technologies
Want to work in a more collaborative environment
I worked as a Software Developer at XYZ Company.
Developed and maintained web applications using Java and Spring framework
Collaborated with cross-functional teams to gather requirements and design solutions
Implemented unit tests and performed code reviews to ensure code quality
Participated in Agile development process and attended daily stand-up meetings
Troubleshooted and resolved software defects reported by users
My family background is diverse and multicultural, with members from different professions and cultural backgrounds.
My father is a doctor and my mother is a teacher.
I have two siblings, one is an engineer and the other is a lawyer.
We celebrate various cultural festivals and traditions together.
My family values education and encourages continuous learning.
I am open to discussing salary based on the responsibilities and opportunities offered by the position.
I am flexible and open to negotiation.
I am looking for a fair and competitive salary based on my skills and experience.
I am more interested in the overall compensation package, including benefits and growth opportunities.
I am confident that we can come to a mutually beneficial agreement.
I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.
C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.
Abstraction: hiding implementation details
Interface: defining a contract for behavior
Abstract method: method without implementation
Abstract class: class with one or more abstract methods
Polymorphism: ability of objects to take on multiple forms
Encapsulation: bundling data and behavi...
I applied via Company Website and was interviewed in Mar 2021. There were 6 interview rounds.
Searching techniques are methods used to find specific data or information within a larger set of data.
Linear search
Binary search
Hashing
Depth-first search
Breadth-first search
I was interviewed before Sep 2020.
Round duration - 45 Minutes
Round difficulty - Easy
The round was conducted at 12 in the college campus. It was a pen and paper based coding round and had 2 coding questions for which we had to write the best approach.
Given an array Arr
consisting of N integers, your task is to find the equilibrium index of the array.
An index is considered as an equilibrium index if the sum of elem...
Find the equilibrium index of an array where sum of elements on left equals sum on right.
Iterate through the array and calculate the total sum of all elements.
Then iterate again and keep track of the left sum and right sum, checking for equilibrium.
Return the index when left sum equals right sum, or -1 if no equilibrium index found.
You are given a singly linked list of integers. Your task is to sort the linked list using the merge sort algorithm.
Merge Sort is a divide and conq...
Implement merge sort algorithm to sort a singly linked list of integers.
Divide the linked list into two halves using slow and fast pointers.
Recursively sort the two halves.
Merge the sorted halves using a merge function.
Handle base cases like empty list or single node list.
Ensure the termination of the linked list with -1 at the end.
Round duration - 45 Minutes
Round difficulty - Easy
There were 2 coding questions and we had to write the best approach for the questions.
Convert a given string 'S' into its equivalent representation based on a mobile numeric keypad sequence. Using the keypad layout shown in the reference, output the seque...
Convert a given string into its equivalent representation based on a mobile numeric keypad sequence.
Create a mapping of characters to their corresponding numeric keypad sequences.
Iterate through the input string and append the numeric sequence for each character to the output.
Handle lowercase characters only, ignore special characters, capital letters, and spaces in the input string.
You are provided with a string 'STR'
that consists of lowercase English letters ranging from 'a' to 'z'. Your task is to determine all non-empty possible subsequen...
Generate all possible subsequences of a given string.
Use recursion to generate all possible subsequences by including or excluding each character in the string.
Maintain a current index to keep track of the characters being considered.
Append the current character to each subsequence generated so far.
Recursively call the function with the next index to include the next character in subsequences.
Round duration - 40 minutes
Round difficulty - Easy
The interviewer asked me questions from arrays, strings and linked list.
Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...
Find the length of the longest strictly increasing subsequence in an array of integers.
Use dynamic programming to keep track of the longest increasing subsequence ending at each element.
Initialize an array to store the lengths of the longest increasing subsequences.
Iterate through the array and update the lengths based on the previous elements.
Return the maximum length found in the array.
Given an integer N
, determine whether its binary representation is a palindrome.
The first line contains an integer 'T' representing the number of test cases.
The next 'T'...
Check if the binary representation of a given integer is a palindrome.
Convert the integer to binary representation.
Check if the binary representation is a palindrome by comparing it with its reverse.
Return true if it is a palindrome, false otherwise.
Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.
Tip 1 : Keep your resume short, try to make it one pager only.
Tip 2 : Mention only position specific projects, and if you have got a good academic score mention it on top.
I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.
based on 1 interview
Interview experience
based on 4 reviews
Rating in categories
Software Development Engineer
13
salaries
| ₹0 L/yr - ₹0 L/yr |
Softwaretest Engineer
13
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Development Engineer II
12
salaries
| ₹0 L/yr - ₹0 L/yr |
Devops Engineer
9
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Development Engineer Test
8
salaries
| ₹0 L/yr - ₹0 L/yr |
Accenture
Wipro
Cognizant
Capgemini