Questions day 1

  • a=1,b=2,c=3
    to
    a=2,b=3,c=1
  • a=1,b=2,c=3,d=4
    to
    a=4,b=1,c=2,d=3
  • a=1,b=2
    to
    a=2, b=1
  • Generate the sequence 
    1,2,4,8,16 without using multiplication
  • Print 1,-1,1,-,1,-1
  • Sum the series, 1-3+5-7,,,,

Contact us for software training, education or development










 

Post a Comment

Me
Me
WhatsApp Contact Me on WhatsApp
×

📩 Today’s Programming Tip

✅ Flutter/Dart Tip: Use MediaQuery for responsive layout sizing.
Example:
var screenWidth = MediaQuery.of(context).size.width;

🔗 Learn More

💡 Tip of the Day