Skip to main content

Privacy Policy

Privacy Policy

Privacy Policy for Job Alerts Search Zone 

Last Updated: 11 April 2023


Job Alerts Search Zone is committed to protecting the privacy and rights of our users. This Privacy Policy outlines how we collect, use, and safeguard the information you provide to us through our job alert website. Please read this Privacy Policy carefully to understand our practices regarding your personal information and how we comply with the California Consumer Privacy Act (CCPA) Privacy Rights and the General Data Protection Regulation (GDPR) Data Protection Rights.


Information We Collect

We may collect various types of information from our users, including:

a. Personal Information: When you sign up for our job alerts, you may be asked to provide personal information such as your name, email address, and job preferences. We collect this information only with your explicit consent and use it solely for the purpose of providing you with job alerts and related services.

b. Log Data: Our website automatically collects certain information when you access or use it, including your IP address, browser type, operating system, referring URLs, and other usage details. We use this information to analyze trends, administer the website, and gather demographic information about our user base as a whole.

c. Cookies and Tracking Technologies: We may use cookies and similar tracking technologies to enhance your browsing experience, personalize content, and collect information about how you use our website. You can disable cookies through your browser settings, but please note that certain features of our website may not function properly without cookies.


How We Use Your Information

We use the information we collect from you for the following purposes:

a. Job Alerts: We use your personal information to send you job alerts based on your job preferences and to provide you with related services, such as updates on job opportunities and relevant information.

b. Website Improvement: We use log data, cookies, and tracking technologies to understand how our website is used, diagnose technical issues, and improve its functionality and performance.

c. Compliance with Legal Obligations: We may use your information to comply with applicable laws, regulations, and legal processes, and to protect our rights, privacy, safety, and property, as well as those of our users and the public.


How We Share Your Information

We do not sell, rent, or lease your personal information to third parties. However, we may share your information with trusted third-party service providers who assist us in operating our website, conducting business, or servicing you, as long as they agree to keep your information confidential and use it only for the purposes for which it was provided. We may also share your information when required by law or to protect our rights, privacy, safety, or property, as well as those of our users and the public.


CCPA Privacy Rights (Do Not Sell My Personal Information)

If you are a California resident, you have the right to opt out of the sale of your personal information under the CCPA. We do not sell your personal information, as "sale" is defined under the CCPA.


GDPR Data Protection Rights

If you are a resident of the European Economic Area (EEA), you have certain rights under the GDPR, including:

a. Right to Access: You have the right to request access to your personal information and receive a copy of the information we hold about you.

b. Right to Rectification: You have the right to request the correction of any inaccurate or incomplete personal information we hold about you.

c. Right to Erasure: You have the right to request the deletion of your personal information in certain circumstances, such as when it is no longer necessary for the purposes for which it was collected.

d. Right to Restriction of Processing: You have the right to request the restriction of processing of your personal information in certain situations, such as when you contest the accuracy of the information or when the processing is unlawful.

e. Right to Data Portability: You have the right to receive a copy of your personal information in a structured, commonly used, and machine-readable format, and to transmit that information to another controller, where technically feasible.

f. Right to Object: You have the right to object to the processing of your personal information in certain circumstances, such as when the processing is based on legitimate interests or for direct marketing purposes.

g. Right to Withdraw Consent: If you have provided your consent for the processing of your personal information, you have the right to withdraw that consent at any time, without affecting the lawfulness of processing based on consent before its withdrawal.

To exercise any of these rights, please contact us using the information provided in the "Contact Us" section below. We will respond to your request within the timeframe required by applicable law.


Security Measures

We take appropriate technical and organizational measures to protect your personal information from unauthorized access, use, disclosure, alteration, or destruction. However, please note that no method of transmission over the internet or electronic storage is completely secure, and we cannot guarantee the absolute security of your information.


Links to Third-Party Websites

Our website may contain links to third-party websites that are not owned or controlled by us. We are not responsible for the privacy practices or content of those websites. We recommend reviewing the privacy policies of those websites before providing any personal information.


Children's Privacy

Our website is not intended for children under the age of 18. We do not knowingly collect or solicit personal information from anyone under the age of 18. If we learn that we have collected personal information from a child under the age of 18, we will promptly delete that information.


Changes to this Privacy Policy

We may update this Privacy Policy from time to time, and the updated version will be posted on our website with the effective date. We encourage you to review this Privacy Policy periodically for any changes.


Contact Us

If you have any questions or concerns about this Privacy Policy or our privacy practices, please contact us at placementlelo@gmail.com .


By using our website, you acknowledge and agree to the terms of this Privacy Policy.

Comments

Popular posts from this blog

TechGig Code Gladiators 2023 Coding Solutions

TechGig Open Coding Round Code Gladiators 2023 Answers Round 1  - Problem 1 Forest Fire Coding Solution Figure out the minimum energy level P such that they can get exactly X animals to transport.  Test Case: 5 4  1 3 2 4 5 Output: 2 Coding Solution in Python 3: from bisect import bisect_left #Telegram - @PLACEMENTLELO n, m = map ( int , input ().split()) a = list ( map ( int , input ().split())) a.sort() #Telegram - @PLACEMENTLELO if n - bisect_left(a, a[n-m]) != m: print ( -1 ) else : print (a[n - m]) #Telegram - @PLACEMENTLELO ------------------------------------------- Round 2  - Problem 2 The Magic Coding Solution The cost of using wand for operation on element equal to absolute difference between value of element and desired value after operation. Test Case: 5 3 1 2 3 4 5 5 2 1 Output: 10 7 10 Coding Solution in Python 3: from bisect import bisect_left #Telegram - @PLACEMENTLELO n, m = map ( int , input ().split()) A = list ( map ( int , input ().split())) Q = list

The Divisibility Dilemma Code Techgig Geek Goddess Solution

The Divisibility Dilemma Code Techgig Geek Goddess Solution 100% Working Code uploaded on Youtube: https://youtu.be/6cn7nNtSiKo 100% Working Code uploaded on Telegram: https://telegram.me/PLACEMENTLELO The Divisibility Dilemma (100 Marks) In the picturesque village of Numeropolis, the annual "Divisibility Day" is celebrated with great enthusiasm. This day is marked by various mathematical challenges and games that put the villagers' arithmetic skills to the test. This year, the villagers are embarking on a quest to explore the distinctive properties of subarrays within integer arrays. The village's renowned mathematician, Professor Arithmo, has crafted an intriguing challenge. He has provided the villagers with an integer array nums`and two additional integers, K and P. Professor Arithmo's challenge revolves around discovering and counting distinct subarrays from the array nums. The uniqueness of these subarrays is determined by their divisibility characteristics.

Google Girl Hackathon 3 June 2023 Solutions

Google Girl Hackathon 3 June 2023 Solutions Google Girl Hackathon 2023   Maximize equal numbers Code in Python Task Determine the maximum length of the subsequence of array a, such that all numbers in that subsequence are equal after applying the given operation. Code in Python def MaximizeEqualNumber(n, k, a):     #Telegram - @PLACEMENTLELO     max_length = 0     for i in range(n):     #Telegram - @PLACEMENTLELO         count = 1          for x in range(-k, k+1):     #Telegram - @PLACEMENTLELO             if a[i] + x in a[i+1:]:                 count += 1     #Telegram - @PLACEMENTLELO         max_length = max(max_length, count)     return max_length n = 4 k = 1 a = [2, 5, 1, 2] # Output: 3 n = 4 k = 0 a = [2, 2, 5, 6] # Output: 2 n = 3 k = 2 a = [1,5,6] # Output: 2 That is Perfection Code in Python  def is perfect number (n):      divisors_sum = sum(i for i in range(1, n) if n % i == 0)      return divisors_sum == n Balanced Brackets You are given a string S of length N. It consists