Open in app

Sign In

Write

Sign In

Srinimf
Srinimf

22 Followers

Home

About

Aug 18

10 Exclusive Python Projects for Interviews

Here are ten Python projects along with code and possible solutions for your practice. 01. Palindrome Checker: Description: Write a function that checks if a given string is a palindrome (reads the same backward as forward). def is_palindrome(s): s = s.lower().replace(" ", "") return s == s[::-1] #…

Python Projects

4 min read

10 Exclusive Python Projects for Interviews
10 Exclusive Python Projects for Interviews
Python Projects

4 min read


Jun 27

5 Python Pandas Tricky Examples for Data Analysis

Here are five tricky examples that showcase some advanced techniques for data analysis using pandas. #1 Dealing with datetime data import pandas as pd # Convert a column to datetime format data[‘date_column’] = pd.to_datetime(data[‘date_column’]) # Extract components from datetime (e.g., year, month, day) data[‘year’] = data[‘date_column’].dt.year data[‘month’] = data[‘date_column’].dt.month # Calculate the time difference between…

Python

2 min read

Python

2 min read


Jun 19

The Pandas in Python and Key Data Types to Know

Here are the prime concepts on Python Pandas and the key data types. Pandas is a mix of Python and SQL. By the end of the day, you’ll be able to analyze and work with tabular data in a more efficient way than other traditional methods. The Pandas is written…

Python

2 min read

The Pandas in Python and Key Data Types to Know
The Pandas in Python and Key Data Types to Know
Python

2 min read


May 6

10 Must-read Interview Questions on Scikit-Learn

Looking for interview questions on Scikit-learn? Check out our list of 10 commonly asked questions and answers, covering topics such as key features, building a machine learning model, pipelines, cross-validation, overfitting, regularization, hyperparameters, evaluation metrics, and handling missing data in Scikit-learn. Whether you’re a job seeker or a hiring manager…

Scikit Learn

3 min read

10 Must-read Interview Questions on Scikit-Learn
10 Must-read Interview Questions on Scikit-Learn
Scikit Learn

3 min read


Apr 14

15 DB2 Admin Responsibilities: What You Need to Know

DBA is responsible for product upgrades, patches, access control, reviews, Server admin activities, Interface teams, Storage, performance, and maintaining database objects. DBA Responsibilities Responsible for DB/2 products in production and test environments. TMON monitoring tool, and the Platinum tools (RC Query, RC Migrator, Plan Analyzer, and Database Analyzer). Monitor DB/2 production servers…

Db2

2 min read

15 DB2 Admin Responsibilities: What You Need to Know
15 DB2 Admin Responsibilities: What You Need to Know
Db2

2 min read


Apr 3

The Quick and Easy Way to Fix Python UnboundLocalError

UnboundLocalError While the variable in the function has already been defined, during execution, the result prints with an error of UnboundLocalError. Below, you will find an example that explains the issue and resolution. Error: file ‘example.txt’ not found Traceback (most recent call last): File “main.py”, line 16, in <module> open_file(“example.txt”) File “main.py”, line 11, in…

Python

2 min read

The Quick and Easy Way to Fix Python UnboundLocalError
The Quick and Easy Way to Fix Python UnboundLocalError
Python

2 min read


Mar 15

How to Use Conditions in Python IF Logic

The condition is a variable you can use in the IF logic whether to continue the logic or to skip the logic in python. Here’s the best example for your reference. Python logic that uses condition statement # Python logic shows how to use condition statement password = "admIn" condition = (password == "admin") # if…

Python

2 min read

How to Use Conditions in Python IF Logic
How to Use Conditions in Python IF Logic
Python

2 min read


Jan 12

2 Top SQL Queries to Create Temp Table in Oracle

Here’re SQL queries that create a temp table from another in Oracle. The first SQL query creates a temp table’s structure. The second one creates a temp table with data. Temporary table structure Here I have created the customer table and inserted rows. --create table customer (name char(20), cust_id number); --insert into customer values('SRINI'…

Oracle

2 min read

2 Top SQL Queries to Create Temp Table in Oracle
2 Top SQL Queries to Create Temp Table in Oracle
Oracle

2 min read


Oct 27, 2022

5 Must-read Professional Success Tips Now

Here are five tips every professional must read to have success in their life. Keeping boss happy Do you know exactly what your boss expects of you? If so: how do you know? Have you and your boss discussed these expectations? Here’s something you could do: write down the ten things that you…

Professional Development

2 min read

5 Must-read Professional Success Tips Now
5 Must-read Professional Success Tips Now
Professional Development

2 min read


Jul 26, 2022

DevOps CI and CD Interview Questions

Beyond the waterfall model and Agile model, you can see DevOps is a powerful model. Its functionality is powerful, and you can find Continuous integration and continuous delivery. So the deployment you can do seamlessly. DevOps CI CD Interview Questions 1.What is DevOps? DevOps, Continuous Practices, or DevOps Practices! DevOps is a culture transformation! …

DevOps

3 min read

DevOps CI and CD Interview Questions
DevOps CI and CD Interview Questions
DevOps

3 min read

Srinimf

Srinimf

22 Followers

Sr.Software Developer - Technology @srinimf.com

Following
  • Сергей Карелов

    Сергей Карелов

  • Deepak Babu P R

    Deepak Babu P R

  • United Nations

    United Nations

  • Medium

    Medium

  • Brian Fanzo | Digital Futurist, Speaker, Ai Artist

    Brian Fanzo | Digital Futurist, Speaker, Ai Artist

See all (83)

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech

Teams