BTBhanu Tejainbhanu04.hashnode.dev·Jan 13, 2023 · 1 min readManaging the Activities in Android StudioIn Android studio while making the apps we need to create a bunch of activities..yes right...then we have to manage those activities to run our app in an accurate way... Here i will say how to move from one activity to another activity....and the syn...00
BTBhanu Tejainbhanu04.hashnode.dev·Jan 11, 2023 · 1 min readDifference between for loop and do while loopFOR LOOP=The loop in which statements get executed if and only if the condition is satisfied.. Syntax: for(i=0:i<n;i++) { //Code } DO WHILE LOOP=The loop in which statements executed at least one time even though if the condition is not satisfied.. R...00