Posts

Live Cricket TV : Streaming HD

 **Privacy Policy** This privacy policy applies to the Live Cricket TV : Streaming HD app (hereby referred to as "Application") for mobile devices that was created by RamAppsHub (hereby referred to as "Service Provider") as an Open Source service. This service is intended for use "AS IS". **Information Collection and Use** The Application collects information when you download and use it. This information may include information such as *   Your device's Internet Protocol address (e.g. IP address) *   The pages of the Application that you visit, the time and date of your visit, the time spent on those pages *   The time spent on the Application *   The operating system you use on your mobile device The Application does not gather precise information about the location of your mobile device. The Application collects your device's location, which helps the Service Provider determine your approximate geographical location and make use of in belo...

Pattern

<!DOCTYPE html> <html> <head>   <title>Array Operations</title> </head> <body>   <button onclick="performOperations()">Perform Operations</button>   <script>   function printPattern(rows) {   // Iterate through each row   for (let i = 1; i <= rows; i++) {     let pattern = '';     // Add numbers based on the row number     for (let j = 1; j <= i; j++) {       pattern += i + ' ';     //  pattern += j + ' ';     }     // Display the pattern for each row     console.log(pattern);   } } // To print the pattern with 3 rows     let A = [12, 87, 34, 56, 34, 24, 56, 24, 65, 22];     function getMax() {       let max = A[0];       for (let i = 1; i < A.length; i++) {         if (A[i] > max) {           max = ...

make a one form which have following fields :

 <form (ngSubmit)="onSubmit()" #userForm="ngForm">   <div>     <label for="firstName">First Name:</label>     <input type="text" id="firstName" name="firstName" [(ngModel)]="user.firstName" required>   </div>   <div>     <label for="lastName">Last Name:</label>     <input type="text" id="lastName" name="lastName" [(ngModel)]="user.lastName" required>   </div>   <div>     <label for="email">Email Address:</label>     <input type="email" id="email" name="email" [(ngModel)]="user.email" required>   </div>   <div>     <label for="mobile">Mobile Number:</label>     <input type="number" id="mobile" name="mobile" [(ngModel)]="user.mobile" required>   </div...

Take static array with 10 random 2 digit numbers like

 <!DOCTYPE html> <html> <head>   <title>Array Operations</title> </head> <body>   <button onclick="performOperations()">Perform Operations</button>   <script>     let A = [12, 87, 34, 56, 34, 24, 56, 24, 65, 22];     function getMax() {       let max = A[0];       for (let i = 1; i < A.length; i++) {         if (A[i] > max) {           max = A[i];         }       }       return max;     }     function sortAscending() {       let sortedArray = A.slice();       for (let i = 0; i < sortedArray.length; i++) {         for (let j = 0; j < sortedArray.length - 1 - i; j++) {           if (sortedArray[j] > sortedArray[j + 1]) {           ...

Bank details app

 App Privacy Policy Generator Generate a generic Privacy Policy and Terms & Conditions for your apps Built with heart by Nishant and contributors While App Privacy Policy Generator is completely FREE, it takes money to keep it running and updated. ...or adding a review/comment in the project's GuestBook 🤗 All Done! Now sit back and choose the type of document you want to generate: The accuracy of the generated privacy policy and terms & conditions on this website is not legally binding. Use at your own risk. Read the full Disclaimer here Privacy Policy D Patel built the Bank Details App app as a Free app. This SERVICE is provided by D Patel at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Infor...

Bio Data Maker

  Privacy Policy KK Grow built the BioData Maker app as an Open Source app. This SERVICE is provided by KK Grow at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at BioData Maker unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to only s...