Posts

Showing posts from November, 2022

How are career development opportunities at Bharti Airtel?

Image
Bharti Airtel Limited is one of the world’s biggest and popularly known telecommunications companies. It has been working around eighteen countries in the Asian and African continent.  With its main office located at India’s capital city, they house 32,000+ employees and are still welcoming more. If you’re planning to bag a job at Bharti Airtel and be one of the employees, it is a great idea. Because, their perks and benefits are immense. Additionally, Bharti Airtel is widely known for career growth opportunities. Yes!  In fact, even the Airtel interview experience is itself a great career growth opportunity as you will have to be extremely knowledgeable to pass the interview. That said, let us have a quick glance at how Bharti Airtel has been hiring candidates and what opportunities the employers get to enhance their career. Recruitment Process The Airtel interview experience of yours will comprise four major rounds. Firstly, to ace all those rounds, you have to prepare real...

Print Shortest Common Supersequence in Python

Image
Have you ever been confused about the various functions Python has to offer? Despite having learned several of these terms in school, we are still rather uneducated on the wonders of the world of programming. There is a lot to learn, a bank of knowledge that never ends when it comes to coding and programming. Most coding beginners will start with Python when starting to learn how to code. This is because Python is perhaps one of the simplest coding languages out there.  Python is an object-oriented programming language with built-in data structures and several libraries.  It was first introduced in 1991 by the Python Software Foundation. It presently works on nearly all operating systems, including Windows, macOS Linux, Android and more. It is also one of the most widely used programming languages in the present day and time.   What are the uses of Python? There are several everyday applications of Python. These include, but are not limited to: Web and internet developmen...

How to Become a Deutsche Bank Employee?

Image
Many graduates who seek employment at Deutsche Bank must undergo two interviews. I have compiled a list of potential interview questions based on what we know about the bank and what applicants have mentioned.  You can use these questions to prepare for your interview, but there is no assurance that the bank will ask them.  After the interview, you should be prepared to answer questions about your  Deutsche Bank interview experience , education, and relevant employment history. To fill available positions, Deutsche Bank employs a four- to five-round approach. Typically, a school employs candidates through group activities, online assessments, and numerous interviews. The same procedure applies to direct applicants. Several of the interviews will likely be conducted through telephone.  Here is a glimpse of my  interview experience with Deutsche Bank . I have created this guide to give a sneak peek on the interview process and how I cleared my interview.  Int...

Goldman Sachs Interview Process and Timeline for Software Engineers

Image
To gauge the best candidates, Goldman Sachs conducts challenging interview rounds! The bigger the company, the more advanced its interview process. Accordingly, the interview process at Goldman Sachs is quite complex and long-winded for countless candidates.  Although there is no ‘beating the system’ at a company as big as theirs, it is possible to develop specific strategies and plans that will help you gain an edge over your competitors.  Most importantly, whether you are selected or not, the most important thing is to learn something from the Goldman Sachs interview experience .  Since their company is one of the biggest companies out there, their talent recruiters make sure that they only hire the best for their company. Because of this, their hiring process is rather rigorous and made to test us, the candidates, to the maximum level.   What is Goldman Sachs? Goldman Sachs is one of the world’s biggest investment banking and management as well as securities firms...

All You Need To Know About Intuit Interview Experience

Image
Introduction Did you get shortlisted for Intuit’s interview? Well, if you really want to bag a job at this prestigious organization, you need to prepare yourself well before you go to the interview.  In this post, I will share my  Intuit interview experience   and hopefully this will help you to get a better picture about the interview process at  Intuit.    About Intuit  Intuit is a multinational company that provides software solutions to small and medium-sized businesses (SMBs) worldwide. It has offices in over 40 countries and employs more than 10,000 people worldwide. The company's technology solutions include QuickBooks, TurboTax, Mint, and Primavera P6 Project Management Software etc. Getting into big companies like Intuit is not everyone’s cup of tea. Hence, you need to perform really well in order to bag a job here.  Few weeks ago, I gave my Intuit interview and in the following article, I will be sharing the procedure as well as my perso...

What Is Count Inversions In An Array?

Image
While looking for your favorite cereal in the grocery shop, having a sorted shelf is a must. However, how do you know that cereal is sorted alphabetically? You can observe the naming on the shelf!  But would that be possible if there are more than 10,000 types of cereals on that shelf? Not really!  Similarly while dealing with huge arrays, you need to check how far an array is from getting sorted completely.  The only way to know how long it will take to sort an array accurately is through the count inversions .  The count inversions may vary with different operations like an addition to an array, removal of elements, merging of arrays, and much more.  Even if you try to remove duplicates from a string or an array, the parameter for sorting the arrays get changed.  But what do the count inversions m ean and indicate? This article revolves around this concept in detail along with approaches to resolve this problem statement. We will also discuss the meth...

How can we sort a stack using recursion?

Image
  Whereas if we look at it from a technical perspective, you must have heard the word "stack" Quite a lot while dealing with different types of data and appropriately placing them. Are these two terms different? Yes! A stack is a linear data structure used by the system to store data one after the other. Stack uses the LIFO approach for data storage and extraction. LIFO stands for last in first out. It means the element entering the last will leave the stack first. For example the crowd of people stacked in an elevator.  One of the major concepts associated with stacks is the sorting of a stack. Can you imagine how inconvenient it will be if the stock at the grocery shop is not well categorized or sorted?  Similarly, to access the data easily it is important to  sort stack . In this piece, we will discuss how to sort the stack through recursion. The method is quite similar to the one used to reverse a stack using recursion.  Before discussing this topic in detai...