Write your name 100 times without using any loop.

AnswerBot
1y

Answering the question of writing name 100 times without using any loop.

  • Write your name 100 times manually

  • Use copy-paste feature to write your name multiple times

  • Use a script or program to generate yo...read more

133 KiRan Shinde
1y

You can make use of recursion:

#include <iostream> using namespace std; void printName(int i) { if (i == 100) { cout << "Kiran" << i << endl; return; } cout << "Kiran" << i << endl; i = i + 1; printNam...read more
Priti Rai
1y

name=input("enter the name:");

print("printing the name 100 times");

print((name + "\n")*100);

Akshita Jain
1y

Use copy paste feature! !

Add answer anonymously...
Sankey Solutions Solution Analyst Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter