I am watching this channel first time today and I loved it. When I find such tutorials I never need bothering textbooks. Thank you, ma'am.
@mformobileapps4 жыл бұрын
Glad that found such type of ossm content...
@bhartiverma33244 жыл бұрын
Thank you man and the way of your teaching is excellent
@sainadhking52654 жыл бұрын
Thank you Akka.for many videos
@prepbytes4 жыл бұрын
Welcome 😊
@anugrahsingh92043 жыл бұрын
Thanks for the ossm content 🌸
@girrajsharma84684 жыл бұрын
excellent explaination thanx ma'me... I have a questions...Is your payed videos are live or anytime watching
@prepbytes4 жыл бұрын
There are recorded videos that you can watch anytime. For live coding sessions also you will get recordings that you can watch anytime
@dikshajain16693 жыл бұрын
wap to input 8 no.s in an integer array and print those no.s whose last digit is perfect no.
@tradingjournal94665 жыл бұрын
Thanks mam
@murkish82684 жыл бұрын
nothing more than a coding teacher at 3 am to help me lol
@pcanaskouhlani Жыл бұрын
i appreciate the hardwork But you can solve it just with 2 lines (python programm): num = input("your number") print(num[len(num)-1]) much easier isn't it.
@nikhilsastry66319 ай бұрын
Most of the cases this question is asked to do without inbuilt functions
@anikagargdivine5 жыл бұрын
Very nice 👍
@amrhelmy57764 жыл бұрын
thank you about this
@ShrutiPandeySGIS4 жыл бұрын
Thank you very much mam
@arunlachheta41374 жыл бұрын
i am asking how to see the solution of prepbyte practice question there is no any hint or comment
@prepbytes4 жыл бұрын
Hi Arun , hints are added now.
@AhmedMohamed-jq8ws3 жыл бұрын
thnx
@shabeerrafi44263 жыл бұрын
what if the number has 12 digits? how to find the last digit?
@harshalsangame13054 жыл бұрын
How to find first digit of number?
@vedRoham5 жыл бұрын
Is it work for one digit no. ??
@KARTIKKUMAR-lj9lz5 жыл бұрын
yes
@knowledgepower51924 жыл бұрын
How to find last two digit..?
@prepbytes4 жыл бұрын
Using mod and division operation N=12345 N%10 = 5 then N= N/10 = 1234 Now again N=1234%10 = 4 so 4 and 5 are last two digits
@dikshajain16693 жыл бұрын
write a program to input 10 numbers in an array and print the 3 digit numbers entered by the user write a program to initialize the array with first 10 multiples of 3 starting with 9 and the even multiples of 3 wap to store first 10 fibonacci numbers in an array starting from zero also count the number of prime fibonacci numbers wap to input 10 integers in an array (-ve or +ve) print the smallest and largest integers entered by the user wap to store 10 positive integers in an array input another number 'n' in form of the user amd check how many times its present in the array wap to store first 10 prime nos entered by the user in an array and print them wap to input 10 numbers in an array and print the frequency of each number wap to store 10 integers in an array (both positive as well as negative) and shift positive integers towards right and negative integers towards left part of the array wap to input 10 no.s in an array and print the numbers in ascending order without using any sorting technique