Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

How to Show Data Science Project in Resume Correctly

The data scientist resume should have mentioned the project correctly. Here are my ideas on how to show the project in the resume.

Resume: How to Show Data Science Project


How to Show Data Science Project?

1. Preparation of Resume

The first step for an interview for any project is you need Resume. You need to tell clearly about your resume. 


2. Answering about Project. 

In interviews, you will be asked questions about your project. So the second step is you need to be in a position to explain the project.


3. Answering your Project Role. 

The third point is you need to explain the roles you performed in your data science project. If you mention the roles correctly, then, you will have a 100% chance to shortlist your resume.

Based on your experience your resume can be 1 page or 2 pages

4. Technologies in the Resume.

In interviews, again they will be asked how you used different tools to complete your data science project. So, you need to be in a position to explain how you used different options present in the tools. 

Sometimes, in interviews, they may ask about the specific role in Tools specifically you used. You should be in a position to answer these questions too.

How to Prepare Resume. 

  1. Write a clear description.
  2. Write a specific role.
  3. Explain Tools. 
  4. Write about data flow.

1. Write a Clear Description.  In any data science project, you will find a few things like Client name, the expectation of the client, and what you are going to deliver. These things you need to present clearly in your Resume. 


2. Write Specific Roles. Roles. To convince your interviewer, you need to tell about your team roles and your specific role. In general, you can find the following roles:
  • Architect.
  • Data scientist.
  • Business Analyst.
  • Development team.
  • Testing Team.
  • Integration testing team.
  • Production release team.

3. Explain Tools. You need to present all the Tools your project is using and your specific tools. Then, in the face-to-face interview, you need to tell what options you used to achieve what.

For example, I used some integration tool, to receive data to the development region, and to send out after unit testing. If you explain, these key points, I can say, 100% sure, you will be selected.

4. Write about data flow. You need to explain how data is coming, is it in the sequential data set or document data. Something you need to tell clearly.

You also need to tell, after unit testing, which forms you will send the data to the next region. If you know this flow correctly, then you can convince easily your interviewer.

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers