Skip to main content

About Us

At Code Delhi, we are committed to protecting your privacy. This Privacy Policy outlines the types of personal data we collect, how we use it, and the steps we take to safeguard it. By using our website and services, you agree to the collection and use of information in accordance with this policy.

Please take a moment to read this policy carefully to understand how we handle your personal data.


Introduction

This Privacy Policy describes how Code Delhi (“we,” “us,” “our”) collects, uses, stores, and protects your personal information when you visit our website or use our services.

We are fully committed to complying with data protection laws, and your privacy is important to us.


Definitions

  • Account: A unique user profile created for you to access certain features of the Service.
  • Affiliate: Any entity that controls, is controlled by, or is under common control with Code Delhi.
  • Cookies: Small data files stored on your device to improve user experience on our website.
  • Company: Refers to Code Delhi, the operator of this website.
  • Device: Any device used to access our website, such as a computer, tablet, or mobile phone.
  • Personal Data: Any information that identifies or could potentially identify you as an individual.
  • Service: Refers to the Code Delhi website (https://codedelhi.blogspot.com/).
  • Usage Data: Data collected automatically when you interact with the website (e.g., IP address, browser type, etc.).

Types of Data We Collect

Personal Data

When you interact with our website, we may ask you to provide personally identifiable information. This can include, but is not limited to:

  • Name
  • Email address
  • Phone number
  • Usage Data

Usage Data

We automatically collect information about your device when you use our website. This data may include:

  • IP address
  • Browser type and version
  • Pages visited
  • Time spent on pages
  • Device information (e.g., mobile operating system, device type, etc.)

Cookies and Tracking Technologies

We use cookies and similar technologies to track website activity and improve user experience. Cookies are small files stored on your device, and they can help us personalize your experience. Some of the common types of cookies we use include:

  • Necessary Cookies: Essential for basic functionality (e.g., session management).
  • Functionality Cookies: Help us remember your preferences, like language or login details.
  • Analytics Cookies: Allow us to monitor traffic and improve the website based on usage patterns.

You can control the use of cookies through your browser settings, but please note that blocking cookies may impact your ability to use certain features of our website.


How We Use Your Data

We use your personal data for several purposes, including:

  • To provide and maintain our services: Ensuring that our website operates effectively for you.
  • To manage your account: Enabling you to access and manage features available to registered users.
  • To send updates and notifications: Communicating important information, including security updates or service-related notifications.
  • For marketing and promotional activities: Sending you special offers and updates on products or services we think you may be interested in (you can opt out at any time).
  • For business purposes: Conducting internal analysis to improve our services, products, and marketing efforts.

Sharing Your Data

We do not sell your personal data. However, we may share your information with trusted third parties in the following circumstances:

  • Service Providers: Third-party companies that help us manage our website and services.
  • Affiliates: We may share your data with entities that are part of our business group, but only in accordance with this privacy policy.
  • Business Transfers: If we undergo a merger, acquisition, or asset sale, your personal data may be transferred as part of that transaction.
  • Legal Compliance: We may disclose your personal data if required by law or in response to valid legal requests (e.g., court order, government authority).

Data Retention

We will only retain your personal data for as long as necessary to fulfill the purposes outlined in this Privacy Policy. We may retain certain information for longer periods if required by law or for legitimate business interests, such as resolving disputes or enforcing agreements.


Security of Your Data

We take appropriate measures to protect your personal data from unauthorized access, alteration, disclosure, or destruction. However, please note that no method of data transmission or storage is 100% secure, and we cannot guarantee absolute security.


Your Rights and Choices

You have the right to:

  • Access: Request a copy of the personal data we hold about you.
  • Correct: Update or correct any personal information that is inaccurate or incomplete.
  • Delete: Request the deletion of your personal data (subject to certain legal exceptions).
  • Opt-out of Marketing: Unsubscribe from marketing communications at any time by clicking the “unsubscribe” link in emails or contacting us directly.

To exercise any of these rights, please contact us using the details provided below.


Transfer of Your Data

Your personal data may be transferred to and maintained on systems located outside your country of residence. By using our services, you consent to this transfer. We ensure that any data transferred is protected in accordance with this Privacy Policy.


Children's Privacy

Our services are not intended for children under the age of 13. We do not knowingly collect personal data from children under 13. If you are a parent or guardian and believe your child has provided us with personal data, please contact us so we can take appropriate action.


Third-Party Links

Our website may contain links to third-party websites or services that are not operated by us. We have no control over and assume no responsibility for the content, privacy policies, or practices of these third-party sites. We encourage you to review the privacy policies of any third-party websites you visit.


Changes to This Privacy Policy

We may update our Privacy Policy from time to time to reflect changes in our practices or for other operational, legal, or regulatory reasons. When we update this policy, we will notify you by posting the new version on our website, and the “Last Updated” date will be revised accordingly.

We recommend you review this Privacy Policy periodically to stay informed about how we are protecting your data.


Contact Us

If you have any questions about this Privacy Policy or our data practices, please contact us:

  • By Email: engineerdelhi2022@gmail.com
  • By Website: Contact Page

Thank you for trusting Code Delhi with your personal information. We are committed to maintaining your privacy and security.

 

Popular posts from this blog

Top 10 Beginner-Friendly LeetCode Questions and Their Solutions

If you're new to solving coding problems on LeetCode, it can feel overwhelming. Where do you start? Which problems are suitable for beginners? Don’t worry! In this blog post, I’ll guide you through 10 beginner-friendly LeetCode questions that are perfect for getting started on your coding journey. These problems will help you build confidence, improve your problem-solving skills, and lay a solid foundation in data structures and algorithms. Why Start with Beginner-Friendly Problems? Before diving into advanced topics like dynamic programming or graph theory, it’s essential to: Build a strong foundation in basic programming concepts. Understand how to approach a coding problem methodically. Gain familiarity with LeetCode’s platform and its problem structure. The following problems are simple yet impactful, designed to introduce you to common techniques like loops, arrays, strings, and basic math operations. 10 Beginner-Friendly LeetCode Problems 1. Two Sum (Easy) Problem Link : Two...

LeetCode 2583: Kth Largest Sum in a Binary Tree – Solution Explained

When working with binary trees, one common task is to analyze the properties of the tree's levels. In this blog post, we'll walk through a solution to LeetCode Problem 2583: Kth Largest Sum in a Binary Tree , a problem that challenges us to compute and find specific sums from different levels of a binary tree. Problem Statement You are given the root of a binary tree and a positive integer k . Your goal is to return the k-th largest level sum in the tree. The level sum is defined as the sum of the values of all nodes at the same depth in the tree. If the number of levels in the tree is less than k , the function should return -1 . Example 1: Input: root = [5, 8, 9, 2, 1, 3, 7, 4, 6] , k = 2 Output: 13 Explanation: Level 1 sum: 5 Level 2 sum: 8 + 9 = 17 Level 3 sum: 2 + 1 + 3 + 7 = 13 Level 4 sum: 4 + 6 = 10 The 2nd largest sum is 13 . Example 2: Input: root = [1, 2, null, 3] , k = 1 Output: 3 Explanation: The largest level sum is 3 (at the third level). This problem essentia...

BCA 5th and 6th Semester Project | BCSP-064 | Synopsys and Project | Both | IGNOU BCA | 100% Accepted | July 2023 and Jan 2024

 Synopsys and Project | Both | July 2023 and Jan 2024 Title of the Project : - PRODUCT HUB Buy it from here (Synopsis + Project) : Synopsis Content :- Synopsis : An overview of the entire project, summarizing its main objectives, scope, and outcomes. Introduction : Introduce the project and provide context for the reader by explaining the problem or need that the project aims to address. Aim and Objective : Clearly state the goals and objectives of the project, outlining what you intend to achieve through its completion. Project Category : Define the domain or category to which the project belongs, helping readers understand the context and purpose of the project. Tools and Platform : List the software tools, programming languages, and platforms you'll be using to develop and implement the project. System Analysis : Discuss the preliminary analysis phase of the project, where you identify requirem...