Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      PathPartner Technology

      ¿Esta es tu empresa?

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de PathPartner Technology | Empleos en PathPartner Technology | Sueldos en PathPartner Technology | Prestaciones en PathPartner Technology
      Entrevistas en PathPartner TechnologyEntrevistas para el cargo de Full Time Developer en PathPartner TechnologyEntrevista en PathPartner Technology


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para Full Time Developer

      16 sep 2016
      Candidato de entrevista anónimo
      Mysore
      Sin ofertas
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Me postulé a través de una facultad o universidad. Acudí a una entrevista en PathPartner Technology (Mysore) en sep 2016

      Entrevista

      1st round-(APITUDE ROUND)comprising of c+DS+co+fafl+os+apti(QUANTS)+verbal 60 questions comprising of 90 marks............. written round-4 questions(c -code,output,link list,tree related question) ........................................ Write a function to swap the adjacent characters of a string. Ex: "hello world" becomes "ehll oowlrd" void StringSwap(char *str); Predict the o/p of a recursive function. main(){ fib(5); } void fib(int m) { static int n=0; if(m==0) return; n++; fib(--m); printf(“%d %d\n”,m,n); } Write a function (recursive only) to find the largest element in an array of N numbers. int FindMax(int *array,int N); Write a function to insert an element in a singly list so that the elements are in descending order only. An integer array contains 1 to N unique natural numbers in any order. One of the element in the array is randomly choosen and overwritten by 0(zero) and it is sent as parameter to detectNum( ). Write a function to detect the number which was replaced by 0(zero). The function declaration is as follows: void detectNum(int *array,int N); technical round-(puzzle+question related to logic of written test)..................................... HR round(puzzle+why this company +intro)....................................

      Preguntas de entrevista [1]

      Pregunta 1

      write a code to find out max of element of array element through recursion??
      1 respuesta
      4