Blog Page

How to Change WordPress Password From cPanel in phpMyAdmin WordPress

How to Change WordPress Password From cPanel in phpMyAdmin

How to Change WordPress Password From cPanel in phpMyAdmin in Hindi इस त्वरित मार्गदर्शिका में, हम आपको बताएंगे कि अधिकांश वेबहोस्टिंग cPanels में पाए जाने वाले टूल phpMyAdmin का उपयोग करके वर्डप्रेस उपयोगकर्ता का पासवर्ड कैसे बदला जाए। PhpMyAdmin से वर्डप्रेस पासवर्ड बदलने के लिए सरल है (इसमें एक मिनट से भी कम समय लगता […]
WordPress Contributors Propose Blocking FLoC in Core by Digital Ranger Updates

WordPress Contributors Propose Blocking FLoC in Core

WordPress contributors proposing the project take an active position on Google’s Federated Learning of Cohorts (FLoC). यह विशेष म्कैनिज्म गूगल तीसरे पक्ष के कुकीज़ का विकल्प है जिसमें उपयोगकर्ताओं के ब्राउज़िंग हिस्ट्री को एकत्र करने की आवश्यकता नहीं है। यह GitHub repository for FLoC देखिये Google कैसे लोगों को एक साथ ग्रुप में जोड़ने का […]
High DA PA Web 2.0 Websites List 2021 SEO

High DA PA Web 2.0 Websites List 2021 BY Digital Ranger

List of top free high DA web 2.0 Sites. High DA PA Web 2.0 Websites List 2021 यदि आप अपने Website को रैंक करने के लिए तैयार हैं  पर आपको एहसास होता है कि आपको बैकलिंक्स बनाने की आवश्यकता है तो आप पहले Web 2.0 बनाना होगा । जैसा कि आपने अपने नए Blog या Bussines  […]
Introduction of Information Technology Information Technology

Introduction to Information Technology

Introduction of Information Technology:- A PC (personal computer) is a microcomputer.  A PC is a single-user system, designed to fit on top: hence the word Personal. The IBM PC was introduced in the early eighties and since then has been modified and improved. Subsequent PCs have been designed to run any software written for preview […]
Write a program to sort elements of given array having ‘n’ numbers of element, using Selection sort. Data Structure

Write a program to sort elements of given array having ‘n’ numbers of element, using Selection sort.

Write a program to sort elements of given array having ‘n’ numbers of elements, using Selection sort. #include #include void main() { clrscr(); int size, arr[50], i, j, temp; cout<>size; cout<<“Enter Array Elements : “; for(i=0; i>arr[i]; } cout<<“Sorting array using selection sort…n”; for(i=0; i<size; i++) { for(j=i+1; jarr[j]) { temp=arr[i]; arr[i]=arr[j]; arr[j]=temp; } } […]

Write a program to implement the concept of pointer to array access in functions.

#include #include main() { int *p,i,n; void modify(int *,int); clrscr(); cout<>n; for(i=0;i<n;i++) { cout<<"n A["<<i<>*(p+i); } cout<<"nnn"; cout<<"n Before calling the function for modification elements are :n"; for(i=0;i<n;i++) { cout<<"n A["<<i<<"]="<<*(p+i); } modify(p,n); cout<<"n After modification each element incremented by 500 n"; for(i=0;i<n;i++) { cout<<"n A["<<i<<"]="<<*(p+i); } getch(); return(0); } void modify(int *t, int s) […]

Write a program to sort elements of given array having ‘n’ number of elements,using Merge Sort.

#include #include main() { int a[50],c[100],n,i; void merge(int *,int,int); void mr(int*,int,int,int,int); clrscr(); cout<>n; cout<<"n Enter the elements of array n"; for(i=0;i<n;i++) { cout<<"n a["<<i<>a[i]; } merge(a,0,n-1); cout<<"nnn MERGED ARRAY IN ASCENDING ORDER IS n"; for(i=0;i<n;i++) { cout<<"n A["<<i<<"]="<<a[i]; } getch(); return(0); } void mr(int *a,int lb,int le,int rb,int re) { cout<<"n FROM MERGING n"; cout<<"nn […]