Syncfusion Interview Question

1. Find vowels from the given string in the first round. 2. They provided small small c# programs for each sessions

Interview Answers

Anonymous

Sep 30, 2016

#include int main(void) { char input[500], chars[5] = {'a','e','i','o','u'}; int i, len=0, vow[5]={0}; gets(input); while(input[len] != '\0') len++; if(len %d\n",chars[i],vow[i]); } return 0; }

1

Anonymous

Sep 30, 2016

hey what the hack, why my answer not showing properly. it merge my code and sunk 3-4 lines of code. see line 10. ??? what am i suppose to do now!!!

Anonymous

Jul 29, 2016

please tell me what type question they will ask in programming round as well as aptitude

Anonymous

Sep 30, 2016

#include int main(void) { char input[500], chars[5] = {'a','e','i','o','u'}; int i, len=0, vow[5]={0}; gets(input); while(input[len] != '\0') len++; if(len %d\n",chars[i],vow[i]); } return 0; }

1

Anonymous

May 31, 2016

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string word; int i, j, length; int count=0; char[] vow = { 'a', 'e', 'i', 'o', 'u' }; Console.WriteLine("Enter word to find vowels"); word = Console.ReadLine(); length = word.Length; for (i = 0; i < length; i++) { for (j = 0; j < 5; j++) { if (word[i] == vow[j]) { count++; Console.WriteLine("{0}", vow[j]); } } } Console.ReadLine(); } } }

2