SRN
SRN
  • 274
  • 2 940 385

Відео

Check whether the number is 'Neon' or not Square: 9*9 = 81 =8+1=9 #java #javaprogramming
Переглядів 365 місяців тому
WAP to design a method which takes a number as input and check whether the number is 'Neon' or not. Hint: A number is said to be Neon if the sum of digits of the square of the number is equal to the same number. e.g: 9 Square: 9*9 = 81 Sum of digits of square : 8 1=9
WAP to declare a method to input a number. Check and display whether its a Niven number or not.
Переглядів 455 місяців тому
WAP to declare a method to input a number. Check and display whether its a Niven number or not. Hint: A number is said to be niven if the number is divisible by the sum of its digits. e.g: 126 is Niven because 1 2 6=9 and 126 is divisible by 9.
write a java program to check the given input vowel or consonant or special character #java
Переглядів 255 місяців тому
WAP to input a character and display whether it is a digit or alphabet or whitespace.
Characters in circular alphabetical order .// E.g: Input: x Output :X Y Z A B #javaprogramming
Переглядів 205 місяців тому
WAP to input a character and if it is an alphabetic, then convert it into its reverse case, which means if its in lowercase then convert to uppercase and vice versa. Then print the next five characters in circular alphabetical order including the modified Input. E.g: Input: x Output :X Y Z A B
Happy Number Checker | checks the given number is a happy number or not | #programming #recursion
Переглядів 245 місяців тому
Happy Number Checker A happy number is a number that, when you replace it by the sum of the squares of its digits and repeat the process, eventually leads to the number 1. If the process loops endlessly in a cycle that does not include 1, then the number is not a happy number. However, it has been observed that all unhappy numbers end in the cycle 4 → 16 → 37 → 58 → 89 → 145 → 42 → 20 → 4. So w...
write a program to check the user entered number is a Disarium number or not. #srn #programming
Переглядів 635 місяців тому
Disarium Number Checker A number is a Disarium number if the sum of its digits, each raised to the power of its respective position, is equal to the number itself. For example: 89 is a Disarium number because : 89 = 8^1 9^2 = 8 81 = 89 175 is a Disarium number because : 175 = 1^1 7^2 5^3 = 1 49 125 = 175 45 is not a Disarium number because : 45 = 4^1 5^2 = 4 25 = 29 which is not equal to 45. So...
Write a program in C to find the sum of digits of a number using recursion. #programming #srn
Переглядів 175 місяців тому
Write a program in C to find the sum of digits of a number using recursion. Test Data : Input any number to find sum of digits: 1234 Expected Output: The Sum of digits of 1234 = 10
Develop a C program to print its a pronic number or not | #cprogramming #function #srn
Переглядів 215 місяців тому
Pronic Number (Heteromecic Number) A pronic number, also known as a heteromecic number, is a number that is the product of two consecutive integers. In other words, a pronic number is of the form n(n 1), where n is a positive integer. For example: 6 is a pronic number because it is the product of two consecutive numbers 2 and 3, i.e., 6=2×3. 72 is a pronic number because it is the product of tw...
Write a program in C to print the Fibonacci Series using recursion. #programming #recursion #srn
Переглядів 105 місяців тому
Write a program in C to print the Fibonacci Series using recursion. Test Data : Input number of terms for the Series (20) : 10 Expected Output: Input number of terms for the Series (20) : 10 The Series are : 1 1 2 3 5 8 13 21 34 55
Write a program in C to find the Factorial of a number using recursion.#programming #recursion #srn
Переглядів 125 місяців тому
Write a program in C to find the Factorial of a number using recursion. Test Data : Input a number : 5 Expected Output: The Factorial of 5 is : 120
Write a program in C to print the array elements using recursion. #programming #recursion #srn
Переглядів 275 місяців тому
Write a program in C to print the array elements using recursion. Test Data : Input the number of elements to be stored in the array :6 Input 6 elements in the array : element - 0 : 2 element - 1 : 4 element - 2 : 6 element - 3 : 8 element - 4 : 10 element - 5 : 12 Expected Output : The elements in the array are : 2 4 6 8 10 12
Write a program in C to calculate the power of any number using recursion. #srn #recursion
Переглядів 155 місяців тому
Write a program in C to calculate the power of any number using recursion. Test Data : Input the base value : 2 Input the value of power : 6 Expected Output : The value of 2 to the power of 6 is : 64
Write a program in C to find the GCD of two numbers using recursion. #programming #srn
Переглядів 65 місяців тому
Write a program in C to find the GCD of two numbers using recursion. Test Data : Input 1st number: 10 Input 2nd number: 50 Expected Output : The GCD of 10 and 50 is: 10
Write a C program to remove given character from a String.#strings #programming #srn
Переглядів 1336 місяців тому
Write a C program to remove given character from a String. Input as : Enter a String : Bookstore Enter the character you want to remove : o Expected Output : Resulting String is : Bkstre
Write a program in C to count the number of vowels and consonants in a string using a pointer.#srn
Переглядів 356 місяців тому
Write a program in C to count the number of vowels and consonants in a string using a pointer.#srn
Write a program in C to calculate the sum of numbers from 1 to n using recursion.#srn
Переглядів 126 місяців тому
Write a program in C to calculate the sum of numbers from 1 to n using recursion.#srn
Write a program in C to add two numbers using pointers.
Переглядів 146 місяців тому
Write a program in C to add two numbers using pointers.
Write a program in C to swap elements using call by reference. #c++ #c #pointer #programming #srn
Переглядів 286 місяців тому
Write a program in C to swap elements using call by reference. #c #c #pointer #programming #srn
Write a C program to rotate an array of integers to the right by a specified number of positions.
Переглядів 396 місяців тому
Write a C program to rotate an array of integers to the right by a specified number of positions.
Write a program in C to add numbers using call by reference.#srn
Переглядів 66 місяців тому
Write a program in C to add numbers using call by reference.#srn
Write a C program to convert all the character to upper case from a given index to end index.#srn
Переглядів 476 місяців тому
Write a C program to convert all the character to upper case from a given index to end index.#srn
Write a program in C to calculate the length of a string using a pointer. #strings #pointer #srn
Переглядів 156 місяців тому
Write a program in C to calculate the length of a string using a pointer. #strings #pointer #srn
Write a C program to check the given string contains a U/L alphabet, special character and digit.
Переглядів 296 місяців тому
Write a C program to check the given string contains a U/L alphabet, special character and digit.
C Program to Remove Characters in Second String which are present in First String.#strings #srn
Переглядів 606 місяців тому
C Program to Remove Characters in Second String which are present in First String.#strings #srn
Write a program to reverse all the vowels present in a given string. Return the newly created string
Переглядів 636 місяців тому
Write a program to reverse all the vowels present in a given string. Return the newly created string
Write a c program to sort the String in ascending order ,after sorting print the result in string
Переглядів 486 місяців тому
Write a c program to sort the String in ascending order ,after sorting print the result in string
Increment the large integer by one and return the resulting array of digits.(without using pointer).
Переглядів 396 місяців тому
Increment the large integer by one and return the resulting array of digits.(without using pointer).
Write a program in C to store n elements in an array and print the elements using a pointer.#srn
Переглядів 326 місяців тому
Write a program in C to store n elements in an array and print the elements using a pointer.#srn
Write a c program to find the median of a merged sorted Array by using pointer and function.#srn
Переглядів 716 місяців тому
Write a c program to find the median of a merged sorted Array by using pointer and function.#srn

КОМЕНТАРІ

  • @DhbdjshegegHdhdhdg
    @DhbdjshegegHdhdhdg 2 дні тому

    Please help me 100k suscribe wala Gmail

  • @tamanabadhan-vd5fv
    @tamanabadhan-vd5fv 2 дні тому

    Bro yrr os sala nai number apne lga diya hai abi kya karo

  • @karthikshenoy9238
    @karthikshenoy9238 6 днів тому

    Are phku chand.... Kaya phek raha he Tu Kuch kam nahi kar raha he

  • @LokeshSharma-r5n
    @LokeshSharma-r5n 8 днів тому

    My gmail account has a problem same email OTP on veneration code email send this email OTP this gmail please please help

  • @GulshanKashyap-u3m
    @GulshanKashyap-u3m 9 днів тому

    Gmail ko select krne ke bad visit ka option nhi aarha he mere me

  • @netam-music00
    @netam-music00 10 днів тому

    फिर भी नहीं हो रहा है भाई मैं परेशान हो गया हूं इस तरह से भी नहीं हो रहा है

  • @MAli-j4v
    @MAli-j4v 10 днів тому

    Gmail recover kr daiin plz😢😢

  • @Ganesh_vlog121
    @Ganesh_vlog121 11 днів тому

    1:07

  • @eco7698
    @eco7698 13 днів тому

    Hi

  • @SyedMuzaffar013
    @SyedMuzaffar013 13 днів тому

    It's not working

  • @expmuraff
    @expmuraff 15 днів тому

    Are ye to chutiya bana ke tarikha he jb mene is se WhatsApp krke baat Kiya tap is ne muje 2000 ka payment manja aur is ne muje phir bolo apka I'd proof batao aur phir me apko krdunga aur is ke bat me is aur mene payment Kiya aur phir is ke baad isne muje block me dl Diya

  • @Amolchavan-je3sq
    @Amolchavan-je3sq 15 днів тому

    Mere mobile I having trouble my account option nahi aa raha hai

  • @aaravsaction8908
    @aaravsaction8908 17 днів тому

    Gmail account blocked ho chuka h sir mera

  • @RajjDongare
    @RajjDongare 18 днів тому

    2 din main teri channel band karvata hu saale ruk sabhi screenshot hai mere pass

  • @RajjDongare
    @RajjDongare 18 днів тому

    Are ye digital Bhikari ruk Teri cyber cell main complaint karta hu lootta hai sala gariboko

  • @RajjDongare
    @RajjDongare 18 днів тому

    Are bhai ye Bhikari youtuber hai sala bhik mangtta hai whatsp pr meine message Kiya to bola paise bhejo scammer hai ye Bhikari sala unfollow kro sab

  • @RajjDongare
    @RajjDongare 18 днів тому

    Are bhai ye Bhikari youtuber hai sala bhik mangtta hai whatsp pr meine message Kiya to bola paise bhejo scammer hai ye Bhikari sala unfollow kro sab

  • @GulshanKashyap-u3m
    @GulshanKashyap-u3m 18 днів тому

    Does this request relate to content generated by AI within a Google product? Ye aarha he help kro

  • @GulshanKashyap-u3m
    @GulshanKashyap-u3m 18 днів тому

    Bhai here ke bad dusraa option AA rha he please help me 😢

    • @theluckyboy6580
      @theluckyboy6580 18 днів тому

      ​@TiwaAdin hi inhone apka account hack kiy kya?

  • @eco7698
    @eco7698 21 день тому

    😃

  • @banulaskar7370
    @banulaskar7370 21 день тому

    Hua e nahi Bahut peresan hu Realme ma kaise kore

  • @Bhavna-h4h
    @Bhavna-h4h 22 дні тому

    Your account is disabled ka option nhi aaya😢

  • @eco7698
    @eco7698 22 дні тому

    😃😃😃😃

  • @eco7698
    @eco7698 22 дні тому

    🎉😊😊😊

  • @bornkumarsanuyashaswi6416
    @bornkumarsanuyashaswi6416 22 дні тому

    Fake videos

  • @Bhavna-h4h
    @Bhavna-h4h 22 дні тому

    Ha bhaiya same problem h😢

  • @Bhavna-h4h
    @Bhavna-h4h 22 дні тому

    Ha bhaiya same problem h😢

  • @renairagaming
    @renairagaming 23 дні тому

    Bhai dusre ke number per send hoga jaega 😢😢😢😢😢😢😢😢😢😢😢

  • @sparrowyt8832
    @sparrowyt8832 26 днів тому

    No good video 😡😡

  • @yashvardhanojha6796
    @yashvardhanojha6796 27 днів тому

    thanks bro

  • @tausivsorafikahmad9388
    @tausivsorafikahmad9388 28 днів тому

    Same processor karne per having trouble

  • @AliM-b8w
    @AliM-b8w Місяць тому

    Sit please Mary account recover karvayen please 🙏🙏🙏🙏 sir

  • @AsifMd-hm6gv
    @AsifMd-hm6gv Місяць тому

    Hai bahi 😢😢😢😢😢🥹🥹🥹🥹🥹

  • @SheepBior
    @SheepBior Місяць тому

    Hi

  • @Mr.Manthan3Darts
    @Mr.Manthan3Darts Місяць тому

    Meri to UA-cam channel gaya hai 3.5k subscriber wali

  • @FunnyBangle420
    @FunnyBangle420 Місяць тому

    Bro you have seen the video but I don't want to talk to you

  • @Dubaimarinabitch
    @Dubaimarinabitch Місяць тому

    bro do mine pls

  • @PradeepMarkam-ew6or
    @PradeepMarkam-ew6or Місяць тому

    You didn’t provide enough info for Google to be sure this account is really yours. Google asks for this info to keep your account secure. If possible, try again and use a device where you’ve signed in before. If your account is managed with Family Link, we‘ve sent an email to your parent to change your password.

  • @SurajKumar-bk7cx
    @SurajKumar-bk7cx Місяць тому

    S❤ 1:58

  • @factMystery_1
    @factMystery_1 Місяць тому

    Kon sa phone hai bhai tumhara😊

  • @jadov-ki2oz
    @jadov-ki2oz Місяць тому

    Fake 😂😂😂

  • @SunilKumar-dj8xn
    @SunilKumar-dj8xn Місяць тому

    Bhai mera account recover kr do na

  • @changnaga7496
    @changnaga7496 Місяць тому

    After selecting gmail it not showing

  • @GeetaRaghuvanshi-ty5uq
    @GeetaRaghuvanshi-ty5uq Місяць тому

    My ff I'd 79 leval😢

  • @SunilKumar-dj8xn
    @SunilKumar-dj8xn Місяць тому

    Same problem aa raha h bhai mera account recover kr do na plz help me

  • @little_jod
    @little_jod Місяць тому

    Meri be

  • @xaawoyarey934
    @xaawoyarey934 Місяць тому

    ❤❤❤

  • @SheetuSheetu-iu2ro
    @SheetuSheetu-iu2ro Місяць тому

    I'm having trouble wala option hi nhi aa rha

  • @123Crazycomedy.
    @123Crazycomedy. Місяць тому

    Can't find ( I'm having trouble accessing my account) please help me sir