January 12, 2022 in C and CPP
Beware from like email from coming named amazon
Amazon नाम के आने वाले ईमेल की तरह से सावधान रहें

January 12, 2022 in C and CPP

January 9, 2022 in C and CPP, Php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
December 3, 2021 in C and CPP
December 1, 2021 in Billionaire, Learning, Tips and Tricks
December 1, 2021 in Billionaire, Learning, Tips and Tricks
अगर आप अकेले कितना भी काम कर ले मगर उतनी सफलता आपको उस काम में नहीं मिलेगी जितना आप अपनी टीम के साथ काम कर के कर सकते हैं। अकेले आप ज्यादा दूर नहीं जा सकते है। अकेले आप कुछ दूर तक तो दौड़ सकते हो मगर ज्यादा दूर जाने के लिए टीम की जरूरत होती है।
रचनात्मकता बढ़ाता है
सीखने को बढ़ावा देता है
टीमवर्क बूस्ट कॉन्फिडेंस
आप टीम वर्क के साथ स्पीड अप करें
टीम वर्क साउंड वर्क रिलेशनशिप को पूरा करता है
टीम वर्कर्स रियलिटी चेक हैं
टीमवर्क राजस्व उत्पन्न करता है
टीमवर्क किसी भी संगठन में महत्वपूर्ण है क्योंकि नीचे उल्लिखित कई कारण हैं:
” अकेले हम इतना कम कर सकते हैं, साथ में हम इतना कुछ कर सकते हैं ” – हेलेन केलर
” प्रतिभा खेल जीतती है, लेकिन टीम वर्क और इंटेलिजेंस चैंपियनशिप जीतती है ।” – माइकल जॉर्डन
” हम में से कोई भी हम सभी की तरह स्मार्ट नहीं है ।” -केन ब्लैंचर्ड
एक साथ आना एक शुरुआत है। साथ रखना प्रगति है। साथ काम करना सफलता है । ” -हेनरी फोर्ड
” अगर मैंने दूसरों की तुलना में आगे देखा है, तो यह दिग्गजों के कंधों पर खड़ा है ” – इस्साक न्यूटन
” टीमवर्क वह ईंधन है जो आम लोगों को असामान्य लक्ष्यों को प्राप्त करने की अनुमति देता है ” – बेनामी
November 19, 2021 in C and CPP
To enable jetifier, add those two lines to your gradle.properties file:
android.useAndroidX=true
android.enableJetifier=true
The Android Gradle plugin provides the following global flags that you can set in your gradle.properties file:
android.useAndroidX: When set to true, this flag indicates that you want to start using AndroidX from now on. If the flag is absent, Android Studio behaves as if the flag were set to false.
android.enableJetifier: When set to true, this flag indicates that you want to have tool support (from the Android Gradle plugin) to automatically convert existing third-party libraries as if they were written for AndroidX. If the flag is absent, Android Studio behaves as if the flag were set to false.
July 21, 2021 in C and CPP
1.6 When bucket size in the hash table is one
A) Only collision occurs
B) Collisions and overflows occur simultaneously
C) Only overflow occurs
D) None of the above
July 21, 2021 in C and CPP
1.5 Order of magnitude of an algorithm refers to
A) Frequency of execution
B) Computing time
C) Sum of frequencies of all its statements
D) None of the above
July 21, 2021 in C and CPP
1.4 An ordered set of items from which items may be deleted inserted at either end
A) Queue
B) Graph
C) Heap
D) Dequeue
July 21, 2021 in C and CPP
1.3 Which data structure is implemented in automatic variable declaration?
A) Queue
B) Stack
C) Heap
D) Graph