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...
Top Sankey Solutions Solution Analyst interview questions & answers
Popular interview questions of Solution Analyst
Top HR questions asked in Sankey Solutions Solution Analyst
>
Sankey Solutions Solution Analyst Interview Questions
Stay ahead in your career. Get AmbitionBox app
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
Get AmbitionBox app