Skip to main content

Privacy Policy

Who We Are:
Our blog address is www.blogoncode.com This is my personal blog where I share about Java, JavaScript and Programming Concept.
We don't charge anything to the reader for reading our articles.

What personal data we collect and why we collect it


Cookies

If you leave a comment on our site Google may save your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last until Blogger or Google thinks, usually a month to a year.

If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.

Comments

When a reader leaves comments on this blog Blogger may collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.

The blog is powered by Google's blogger.com content management system and all privacy policy of them applied to this blog as well, you can read more about their privacy policy on following link https://policies.google.com/privacy

Embedded content from other websites

Articles on this site may include embedded content (like links, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.

These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.

Caching

This site may utilize caching in order to facilitate a faster response time and better user experience. Caching potentially stores a duplicate copy of every web page that is on display on this site.

All cache files are temporary and are never accessed by any third party, except as necessary to obtain technical support from the cache plugin vendor. Cache files expire on a schedule set by the site administrator, but may easily be purged by the admin before their natural expiration, if necessary.

Analytics

We use Google Analytics to track traffic, we don’t hold any data at our servers.
If you leave a comment, the comment and its metadata are retained indefinitely or until Google or Blogger decides to keep it.

Disclaimer
The contents of this report are based on information generally available to the public from sources believed to be reliable.

No representation is made that it is timely, accurate or complete. www.blogoncode.com has taken due care and caution in compilation of data as this has been obtained from various sources including which it considers reliable and first hand.

However, www.blogoncode.com does not guarantee the accuracy, adequacy or completeness of any information and it is not responsible for any errors or omissions or for the results obtained from the use of such information and especially states that it has no financial liability whatsoever to the subscribers/users of this report.

The information herein, together with all estimates and forecasts, can change without notice.

This report does not purport to be a solicitation of any advice pertaining to trade and business and readers are advised to consult experts or study/evaluate individual business prospectus and other relevant legal documents before taking any decisions based on information provided in the site.

Neither www.blogoncode.com nor its Editors or Authors accept any liability whatsoever nor do they accept responsibility for any financial consequences arising from the use of the research or information provided herein.


Privacy Policy
We understand the importance of your privacy as a visitor to this website. We want you to understand how the information you may provide will be used.

To better protect your privacy we provide this notice explaining some online information practices and the choices you can make about the way your information is collected and used.

To make this notice easy to find, we make it available on our homepage and at every point where personally identifiable information may be requested.

I also suggest you visit the blogger's privacy policy which  is applicable here because this blog is powered by blogger:  https://policies.google.com/privacy

Information collected

 www.blogoncode.com does not collect personal information about you except for the information that you voluntarily provide. We may collect usage information of our site to analyze interest in content and to provide advertisers information on an aggregate basis. No personally identifiable information will be shared with third-party advertising companies.

Links to third party Websites

We have included links on this site for your use and reference.  We are not responsible for the privacy policies on these websites. You should be aware that the privacy policies of these sites may differ from our own.

Changes to this Privacy Statement

The contents of this statement may be altered at any time, at our discretion.

If you have any questions regarding the privacy policy of our blog www.blogoncode.com then you may contact me through via email on codethrowdown@gmail.com


Comments

Popular posts from this blog

Flipping the Matrix HackerRank Solution in Java with Explanation

Java Solution for Flipping the Matrix | Find Highest Sum of Upper-Left Quadrant of Matrix Problem Description : Sean invented a game involving a 2n * 2n matrix where each cell of the matrix contains an integer. He can reverse any of its rows or columns any number of times. The goal of the game is to maximize the sum of the elements in the n *n submatrix located in the upper-left quadrant of the matrix. Given the initial configurations for q matrices, help Sean reverse the rows and columns of each matrix in the best possible way so that the sum of the elements in the matrix's upper-left quadrant is maximal.  Input : matrix = [[1, 2], [3, 4]] Output : 4 Input : matrix = [[112, 42, 83, 119], [56, 125, 56, 49], [15, 78, 101, 43], [62, 98, 114, 108]] Output : 119 + 114 + 56 + 125 = 414 Full Problem Description : Flipping the Matrix Problem Description   Here we can find solution using following pattern, So simply we have to find Max of same number of box like (1,1,1,1). And last

Plus Minus HackerRank Solution in Java | Programming Blog

Java Solution for HackerRank Plus Minus Problem Given an array of integers, calculate the ratios of its elements that are positive , negative , and zero . Print the decimal value of each fraction on a new line with 6 places after the decimal. Example 1 : array = [1, 1, 0, -1, -1] There are N = 5 elements, two positive, two negative and one zero. Their ratios are 2/5 = 0.400000, 2/5 = 0.400000 and 1/5 = 0.200000. Results are printed as:  0.400000 0.400000 0.200000 proportion of positive values proportion of negative values proportion of zeros Example 2 : array = [-4, 3, -9, 0, 4, 1]  There are 3 positive numbers, 2 negative numbers, and 1 zero in array. Following is answer : 3/6 = 0.500000 2/6 = 0.333333 1/6 = 0.166667 Lets see solution Solution 1 import java.io.*; import java.math.*; import java.security.*; import java.text.*; import java.util.*; import java.util.concurrent.*; import java.util.function.*; import java.util.regex.*; import java.util.stream.*; import static java.util.st