Technology

क्या आपकी कॉल रिकॉर्ड की जा रही है? पता लगाने के ये हैं तरीके

एंड्रॉयड स्मार्टफोन्स में वॉयस कॉल रिकॉर्ड करना आसान है. कई स्मार्टफोन्स में तो इनबिल्ट कॉल रिकॉर्ड का फीचर दिया जाता है. जिन एंड्रॉयड स्मार्टफोन में ये फीचर नहीं होता है वो प्ले स्टोर से डाउनलोड कर सतके हैं.  बिना इजाजत किसी की कॉल रिकॉर्ड करना कहीं न कहीं चोरी करने जैसा ही है. अगर आप…

Technology

WhatsApp में कमाल का फीचर, अपने से गायब हो जाएंगी भेजी फोटो

वॉट्सऐप (WhatsApp) में एक नया फीचर आने जा रहा है। यह फीचर बेहद खास होगा। वॉट्सऐप के इस फीचर का नाम डिसपिरिंग फोटोज फीचर (disappearing photos feature) है। इसे जल्द ही रोलआउट किया जाएगा। वॉट्सऐप में होने वाले बदलाव और इसके फीचर्स को ट्रैक करने वाली वेबसाइट WABetaInfo के मुताबिक, ऐंड्रॉयड और iOS दोनों ही…

Learn

Differences Between HDD and SDD

Many users are in a quandary over the choice of either HDD or SDD. There is not a universal answer, as there are merits and demerits to both of them. The choice is heavily dependent on the user, their needs and budget. Similarities between HDD and SDD: Both are used to store data. Both are used to boot…

Code

Java Program to Multiply two Floating Point Numbers

In this program, you’ll learn to multiply two floating point numbers in Java, store the result and display it on the screen. Example: Multiply Two Floating-Point Numbers Output The product is: 3.0 In the above program, we have two floating-point numbers 1.5f and 2.0f stored in variables first and second respectively. Notice, we have used f after the numbers. This ensures the numbers are float, otherwise…

Code

Java Program to Add Two Integers

In this program, you’ll learn to store and add two integer numbers in Java. After addition, the final sum is displayed on the screen. Example: Program to Add Two Integers Output: Enter two numbers: 10 20 The sum is: 30 In this program, two integers 10 and 20 are stored in integer variables first and second respectively. Then, first and second are added using the + operator, and its…