0% found this document useful (0 votes)
40 views5 pages

Interview Prep

Deloitte is a leading global provider of consulting, financial advisory, risk advisory, tax and related services with over 300,000 employees worldwide. It was founded in 1845 and is currently led by Global CEO Joseph B. Ucuzoglu. In India, Punit Renjen serves as the CEO. Deloitte is considered one of the top 4 consulting firms globally.

Uploaded by

Angelo Alexander
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views5 pages

Interview Prep

Deloitte is a leading global provider of consulting, financial advisory, risk advisory, tax and related services with over 300,000 employees worldwide. It was founded in 1845 and is currently led by Global CEO Joseph B. Ucuzoglu. In India, Punit Renjen serves as the CEO. Deloitte is considered one of the top 4 consulting firms globally.

Uploaded by

Angelo Alexander
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 5

Deloitte

Making an Impact
Deloitte is a leading global provider of consulting, financial advisory,
rish advisory, tax and related services.

Founder- 1845 by William welch deloitte

Global CEO- Joseph B. Ucuzoglu (u-ku-za-glue)


CEO INDIA- Punit Renjen

Deloitte is in the top 4 consulting firm.

C++
C++ is used to create high performance application. Control over system resorces
and memory.
int main() is a function, any code inside its curly brackets will be executed.

variables:- int, double, char, string, bool.


Data types:- The data type specifies the size and type of information the variable
will store.
Operators:- Arithemetic operators, assignment operators, comparison operators,
logical operators, bitwise operators.
Bitwise operators- &,|,^,<<,>>,~.
Ternary Operator:- variale = (condition) ? expressionTrue : expressionFalse;

Structures:- are a way to group several realted variables into one place.
By giving a name to a structure, we can treat it as a data type.

Reference and pointers are important in c++, because they give the ability to
manipulate
the date in computer's memory-
which can reduce the code and improve the performance.
Dereference in output if we use * it give the value of ptr,
if we don't use * it gives the value of memory address.

Function is a block of code which only runs when it is called.


With Function overloading, multiple functions can have the same name with different
parameters

Class is a template for objects, and an objects is an instance of a class

Constructor- A function in class that has no return data type, which will be
excecuted when the object
is created. Destructor- '~' Tidel symbol is used to
destruct
Frind keyword is used to declare another class as friend, thus it has access to
private and protected
members of the class. inside main class 'FRIEND INT FUNCTION ();'

OOPs
Abstraction: Hiding the implementation details and showing only the essential
features of an object.

Eccapsulation: Wrapping data and functions within an object to provide protection


from external
access and modification.

Inheritance: Creating a new class based on an existing class and inheriting its
properties and behaviors.

Polymorphism: The ability of objects to take on multiple forms, such as through


method overriding or
operator overloading.
Compile-Time Polymorphism (static)- done by Method overloading,
Run-time polymorphism (Dynamic)- Done by method overRiding. The method that
is executed is
determined by the object that is used to
invoke it.

SQL
SELECT column1, column2, ...
READ
FROM table_name;
//
SELECT DISTINCT Country FROM Customers;
//
SELECT * FROM Customers
WHERE (NOT) Country='Mexico'; (where condition1 AND (condition2 OR condition3))
//
SELECT column1, column2, ...
FROM table_name
ORDER BY column1, column2, ... ASC|DESC;
//
SELECT count(column_name) (COUNT, AVG,SUM)
FROM table_name
WHERE condition;
//
INSERT INTO table_name (column1, column2, column3, ...)
CREATE
VALUES (value1, value2, value3, ...);
//
CREATE DATABASE databasename;
//
CREATE TABLE Persons (
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
);
//
CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
CONSTRAINT UC_Person UNIQUE (ID,LastName)
);
//

UPDATE Customers
UPDATE
SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'
WHERE CustomerID = 1;
//
ALTER TABLE table_name
ADD column_name datatype;
//
DELETE FROM table_name WHERE condition;
DELETE
//
DROP DATABASE databasename;
//
TRUNCATE TABLE table_name;

CLOUD Computing
Cloud computing is a model for delivering information technology services in which
resources are made
available over the internet, With cloud ocmputing users can access data and
services remotely through
the internet, eliminating the need fore local harware and software.

Infrastructure as a Service (IaaS) which provides virtualized computing resources


such as virtual machine
, storage, and networking.
Platform as a Service (PaaS) which provides a platform for developing, testing, and
deploying applications
and services.
Software as a Service (SaaS) which provides end-user access to software
applications over the internet.

GO THROUGH RESUME

As Analyst Intern in SRMTECH, I had the opportunity to use Google Analystic on the
webstite named
THEFEDRAL, I learnt to use MS EXCEL for DATA entry, Data cleaning, data Analysis,
Data Visulazation.
I also conducted research on costumer engagment and helped supporting their
decision making processes.

Raspberry PI is a popular low cost computer that is used for IOT projects, In NSIC
I learnt to use
raspberry Pi and made little project to learn the implimentation, And I had a
project to be done in
college and I applied the knowledge I learnt from there in this project to make
Fire detection using
Arduino UNO and GSM module.

Antenna project, We are trying to create an antenna that can simultaneously tranfer
energy (power) and
information, currently there are proposal for Micro drone that can charge by never
coming to the ground,
and electric vechiles, in my project we are trying to do it for vechile to
everything ie (Network,
vechile, infrastructure, pedestrian). 2x2 matric microstrip patch array antenna.
and FR4 as base material
5.85-5.95 GHz, C band, s parameter nearly 25.

Appsmith is a low-code platform that allows developers to build and deploy web
application quickly
and easily.
Docker is an open source platform for automating the deployment, scaling and
managemenet of containerized
application.
A container is a lightweight, stand alone, executable package of a piece of
software that includes
everthing needed to run it: Code, runtime, system tools, libraries and setting.
docker containers consist of applications and all their dependencies.

Docker containers provide a consistent and reproducible environment for


applications, making it easier
to develop, test and deploy application across different environments, Efficiency,
reduce cost, speed.

Docker image is a per built and packaged version of a software application and its
dependencies that
can run in a docker container. It acts as a blueprint for creating a docker
container, and stored in a
registry, such as docker hub, for distribution and deployment.

A Docker image is composed of layers, each representing a change to the application


or its dependencies.
This allows for efficient storage and distribution, as only the changes between
layers need to be
transmitted, rather than the entire image.

Kubernetes is an open-source platform for automating the deployment, scaling, and


management of
containerized applications.

HR

Tell me about myself?


My name is Angelo Alexander, I am a student in SathyabamaIST. I have a CGPA of 8.78
till 7th semester.
I am currently doing an Internship in ABB, as a software intern, here I have the
opportunity to
work on latest technologies such as (Docker, appsmith and kubernates) and also I am
I able to have
the office experience and being able to work with highly skillfull people and also
being mentored
by them.

1st 2 week- software training (HTML, LINUX, DOCKER, KUBERNETERS, APPSMITH, SQL)
3rd week- In ubuntu Linux, installing docker. In Windows Installing docker.
4 and 5th week- Using docker to run appsmith.
5th week- Integrating MS SQL with appsmith.
6th week- Integrating MS SQL using ngrok with appsmith which is running on docker.
8th week- Port issue

Why do you apply for this company? (role intrest)


Deloitte's values and mission aligns with my personal values that is MAKING AN
IMPACT!
And deloitte's reputaion for quality, innovation in consulting has impressed me.
My passaion for learning software combined with deloittes career growth
opportunites has given me
genuine interest in joinning deloitte.

Your strength and weakness! with a little story


While working in ABB, my mentors have said that I'm really good at learning
technical stuff, and recently
While working in docker and appsmith with ngrok we had a issue ... attention to
details so
I would say that my strength is my learning abilites, and adaptability.
And they also mentioned that my communiaction needs improvement, And I have been
working to improve
my communication by learning new words and talking more frequently.

Where do you see yourself in 5 years!


In five years, I will be making significant contribution to the company and
improved my skillset
to take more responsibilities, and I would have made strong relationships with my
colleagues and
clients. I would also like to have a reputation for delivering high-quality
results.
So finally my goal is to be an invaluble asset to the company and continue to be
with deloitte initssucess.

Why should I hire you? skill, adapt, time


You should Hire me because I have work experience in a reputed company, and I have
gained lot
of skills and I have lot of passion for this job. I work effectively with my
collegues and clients.
And I am eager to work in deloitte to make a positive impact for the company and
the world.

Attenstion to detail.

Are you willing to relocate.


yes sir. I would be happy to relocate to work in deloitte.

Do you have any question? expectation, oragization culture.


Can you tell me more about the day to day responsibilities for this role?

Thank you so much for the opportunity to have this interview. I am truly greateful
for
the time you took to meet and learn more about my background and experience. I am
excited about the
possibility of joining your team. Thank you sir/madam.

You might also like