Re: Contact form does not working Programming Web Development by Dani … referring to, but there are services out there such as Zoho Mail, SendGrid, ConstantContact, Mailchimp, Hostinger, etc. which, for the most… Zoho Struggles to Get Attention for its Enterprise CRM Tool Programming Databases by Techwriter10 … was introducing an enterprise version of the Zoho CRM product. Unfortunately, Zoho’s announcement was timed in the same … at the same time. [URL="http://blogs.zoho.com/general/very-expensive-affordable-still-very-expensive/"]…In a recent blog entry[/URL], Zoho CEO Sridhar Vembu, claims that Salesforce spends more … Re: Zoho Struggles to Get Attention for its Enterprise CRM Tool Programming Databases by Josh_Whiting … the territory of being the largest provider. This move by Zoho has been the may have been slightly premature. Without features… to Web Based CRM then Salesforce.com whether it be Zoho, Netsuite or Salesboom.com. Basic API Develpment (ZOHO) Programming Web Development by phaedrusGhost Hi all, I have just started using Zoho for a client of mine and so… form field data (email) and get it into Zoho CRM 2. Make sure I can use a 2nd… part right? I am looking at https://www.zoho.com/crm/help/api/insertrecords.html but am not…? I see the request URL data https://crm.zoho.com/crm/private/xml/Leads/insertRecords?authtoken=Auth Token… Re: Basic API Develpment (ZOHO) Programming Web Development by pritaeas You have to provide that XML in that format, so Zoho can parse and insert it's data as a record into it's CRM. ZOHO interview question Programming Software Development by sureshshan1292 Write a C program to Remove even numbers and fill it with zeros. Note: You can use only one loop for your logic. Two variables apart from the array. Input array 1,2,3,4,5,6 Output 1,3,5,0,0,0 Re: ZOHO interview question Programming Software Development by sureshshan1292 Given a string , you have to predict whether it can be changed into a palindrome or not by changing the positions of the characters Eg. Tests Yes Explanation:tests can be changed to tsest or stets Re: ZOHO interview question Programming Software Development by sureshshan1292 Given an array , find the nth largest and nth smallest number. Sorting should not be used Re: ZOHO interview question Programming Software Development by sureshshan1292 Print the pattern N=4 4444444 4333334 4322234 4321234 4322234 4333334 4444444 Re: ZOHO interview question Programming Software Development by sureshshan1292 (Partitioning and merging) Given an array and a partition size, you have to partition the array with that value , then we will specify the partition order , you have to merge based on that order Array : 1 2 3 4 5 Partition size 2 (so the array will be partitioned as 1 2, 3 4, 5) Partition order 3 2 1 o/p: 5 3 4 1 2 Re: ZOHO interview question Programming Software Development by sureshshan1292 Spiral matrix Given a square matrix(n is odd) , print the elements in spiral order starting from the center till a[0][0] A= 1 2 3 4 5 6 7 8 9 o/p 5 4 7 8 9 6 3 2 1 Re: ZOHO interview question Programming Software Development by sureshshan1292 Lower triangle matrix Given ā€œnā€ print the following N=3 1 6 2 5 4 3 Re: ZOHO interview question Programming Software Development by sureshshan1292 Find all possible longest increasing subsequences from an given array Array 0 2 6 4 8 7 Ans : Maxium length 4 0 2 6 8 0 2 4 8 0 2 4 7 0 2 6 7 Re: ZOHO interview question Programming Software Development by rubberman So, you want us to do your homework for you? :-( Not going to happen! Make an honest effort and if you are still having problems, post the code here and we might decide to help you... DO NOT CHEAT! Re: ZOHO interview question Programming Software Development by rubberman FWIW, these are basic CS math problems. See your professor if you need help understanding the problems. Re: ZOHO interview question Programming Software Development by sureshshan1292 brother, these aren't my homework problems.these are the questions which are asked in last interview. i couldnt code for these questions. so i posted these questions here. so that someone will comment the code. so that i can be able to know the logic behind these. Just one question for you--> if a student ask his teacher a doubt, it will be … Re: ZOHO interview question Programming Software Development by sureshshan1292 #include<iostream.h> #include<iostream.h> main() { int n; cin>>n; int i,j,k=1; int l=0,r=1,d=0,u=0; int a[10][10]; for(i=0;i<n;i++) for(j=0;j<n;j++) a[i][j]=0; i=0; j=-1; while(k<=(n*n)) { if(r==1) { j++; if(j==n || a[i][j]!=0) {… Re: ZOHO interview question Programming Software Development by sureshshan1292 #include<stdio.h> #include<conio.h> int main() { clrscr(); char c[30]; printf("Enter The String"); scanf("%s",c); printf("\nSrting : %s",c); int i=0,j=0,odd=0; while(c[i]!='\0') { if(c[i]=='$') { i=i+1; continue; } j=i+… Re: ZOHO interview question Programming Software Development by iamthwee Work on indenting your code properly for starters. Re: ZOHO interview question Programming Software Development by deceptikon > brother, these aren't my homework problems.these are the questions which are asked in last interview. i couldnt code for these questions. so i posted these questions here. so that someone will comment the code. "*These aren't homework questions, they're just questions I was given to do that I want other people to answer for me.*" … Re: ZOHO interview question Programming Software Development by nitin1 I know answers for approximately 80% of the problems above. but it will be against rules if i help u without watching your effort in this. thanks. :-) Re: ZOHO interview question Programming Software Development by rubberman Code is helpful, but logic (often called pseudo-code) can be more so in order to see what your thought processes are in solving the problems. Re: ZOHO interview question Programming Software Development by harini angelina dont worry sureshshan1292.... surely a person with helping tendency will surely help you... helping others is not at all a abd thing... he clearly stated that he is not able to solve those... then whats wrong in it... Re: ZOHO interview question Programming Software Development by shintoz > Write a C program to Remove even numbers and fill it with zeros. > Note: You can use only one loop for your logic. > Two variables apart from the array. > Input array 1,2,3,4,5,6 > Output 1,3,5,0,0,0 This is the implementation in Java... Hope this will help... :-) public class RemoveEven { public static void main(… Re: ZOHO interview question Programming Software Development by Adak sureshshan1292, in the spiral problem, you should be hearing warning sirens that your algorithm is too (low-level in the logic, explicit, or specific), and not abstracted enough. That is a LOT of code! Are you still interested in this problem, or did you figure out what you wanted, already? Re: ZOHO interview question Programming Software Development by sureshvarman /* * @author suresh varman */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { int[] arr ={5,4,3,2,1}; int k=0; for(int i=0;i<arr.length;i++) { if(arr[i]%2!=0) {… Re: ZOHO interview question Programming Software Development by madhana.gopal.902 Here is my code for spiral. #include<stdio.h> #include<iostream> using namespace std; int main() { int i,j,k,m,n,l,v=0,c=1; cout<<"Enter the order of the matrix:"; cin>>n; int a[n][n]; k=n/2; l=k; m=k; for(i=0;i<n;i++) { for(j=0;j<n;j… Re: ZOHO interview question Programming Software Development by Ancient Dragon >This is the implementation in Java... Hope this will help. It won't because your program doesn't meed the requirements of the problem. The program can only contain one loop. Re: ZOHO interview question Programming Software Development by Vish0203 > Write a C program to Remove even numbers and fill it with zeros. > Note: You can use only one loop for your logic. > Two variables apart from the array. > Input array 1,2,3,4,5,6 > Output 1,3,5,0,0,0 I think this suits the problem. I used goto instead of a loop. I know goto is not a good option but I think there is no harm in … Re: ZOHO interview question Programming Software Development by deceptikon > I know goto is not a good option but I think there is no harm in using it for small programs The problem with goto is it's easy to get into the habit of using it as a crutch for not thinking about your code in a structured manner.