Don’t worry, unlock all articles / blogs on PrepInsta by just simply logging in on our website
MindTree Coding Questions in Easy Section -1
July 8, 2019
MindTree Automata Coding Questions and Programs
Also, if you want to study for MindTree and get previous questions in MindTree Quants, Verbal and Logical section, visit our MindTree Dashboard here.
Please also comment down the code in other languages.
Ques. Find GCD of two Integers?
#includeint main(){int n1, n2, i, gcd;
printf("Enter two integers: ");
scanf("%d %d",&n1,&n2);for(i=1; i <= n1 && i <= n2;++i){// Checks if i is factor of both integersif(n1%i==0&& n2%i==0)
gcd = i;}
printf("G.C.D of %d and %d is %d", n1, n2, gcd);return0;}
Option 2 if Numbers are both Positive and Negative?
#includeint main(){int n1, n2;
printf("Enter two integers: ");
scanf("%d %d",&n1,&n2);// if user enters negative number, sign of the number is changed to positive
n1 =( n1 >0)? n1 :-n1;
n2 =( n2 >0)? n2 :-n2;while(n1!=n2){if(n1 > n2)
n1 -= n2;else
n2 -= n1;}
printf("GCD = %d",n1);return0;}
Python
Is the coding questions are easy to attend in online assessment exam for mindtree
Hi Mersal,
You may go through our Coding Dashboard to get a basic idea about what kind of Coding Questions Would be there – https://prepinsta.com/mindtree-coding-automata-questions/
Is prepinsta is sufficient to crack mintree first round
can we write the code in python in mindtree coding round??
Mindtree Coding Questions