Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      State of Minnesota

      Essa empresa é sua?

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa State of Minnesota | Vagas da empresa State of Minnesota | Salários da empresa State of Minnesota | Benefícios da empresa State of Minnesota
      Entrevistas da empresa State of MinnesotaEntrevistas do cargo de Health Data Analyst da empresa State of MinnesotaEntrevista da empresa State of Minnesota


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.

      As melhores empresas na categoria “Remuneração e benefícios” perto de você

      avatar
      New York City Department of Education
      3.6★Remuneração e benefícios
      avatar
      Army National Guard
      4.2★Remuneração e benefícios

      Entrevista para Health Data Analyst

      15 de abr. de 2020
      Candidato(a) sigiloso(a) à entrevista
      Saint Paul, MN
      Nenhuma oferta
      Experiência positiva
      Entrevista difícil

      Candidatura

      Candidatei-me online. O processo levou 1 semana. Fui entrevistado pela State of Minnesota (Saint Paul, MN) em out. de 2019

      Entrevista

      I applied online and it was a straight forward process. This is for the department of human services eHealth solutions, a regulatory branch for Medicaid. Individual interviews with the manager, then another interview with the manager and senior data analysis were as the questions (as I listed below). You have to take a skill assessment on coding where you explain the code they provided you with to gauge your understanding. You're also given a printed data table with errors and asked to find the errors and what you would do to clean the data. All explaining during the entire interview. Nothing is written or done on the computer. They are looking for your understanding of data clean up, data structure (uniformity), and any outliers (i.e. birthday that's "1863" which is impossible because the person would be dead.

      Perguntas de entrevista [13]

      Pergunta 1

      What interested you about this position and how does it fit within your career goal? what specific health care policy areas are of greatest interest to you and why?
      Responder à pergunta

      Pergunta 2

      Please describe your experience working with health care provider organizations, specifically as it relates to health informatics, data exchange or analytics.
      Responder à pergunta

      Pergunta 3

      Describe any work projects or experience you have in value-based care or payment.
      Responder à pergunta

      Pergunta 4

      What standards are used in the exchange of electronic health information? what state and national resources might you use to stay informed of the latest developments in e-health?
      Responder à pergunta

      Pergunta 5

      Do you have experience writing SAS code, extracting data from a data warehouse, and working with relational data tables? if you have not used SAS please describe the analytical software with which you are experienced (SPSS, Stata, R etc.)?
      Responder à pergunta

      Pergunta 6

      How do you go about solving problems at work?
      Responder à pergunta

      Pergunta 7

      Describe the best manager, supervisor, or project lead that you have ever had? Describe the worse?
      Responder à pergunta

      Pergunta 8

      What do you think is the most important skill needed to be successful in this position? What would you need from leadership and/or your team to be successful in this position?
      Responder à pergunta

      Pergunta 9

      If you are selected as the final candidate, when would you be available to start at DHS?
      Responder à pergunta

      Pergunta 10

      Do you have any questions for us?
      Responder à pergunta

      Pergunta 11

      To aid in evaluating performance within their system, an IHP has asked DHS to prepare a report that would illustrate the relative efficiency of their clinics on cost and utlization metrics. Knowing you are working with an enrollment and insurance claims database and have access to Johns Hopkins AVG risk grouper how might you conduct this project? What measures would you develop and how would you visualize it? What additional analysis might you include in the report to help inform the IHP?
      Responder à pergunta

      Pergunta 12

      What is the following SQL code trying to do? Please explain (select A.RecipientID B.BeginDate, B.EndDate, B.CountyOfResidence, B.MajorProgram, B.EligibilityType, A.Birthdate, (Case When ((date'2010-12-31' - dhsviews.RecipientsV.Birthdate ) / 365.25) <= 21 then 'Ages 0 through 21' When ((date'2010-12-31' - dhsviews.RecipientsV.Birthdate ) / 365.25) <= 65 then 'Ages 22 through 65' When ((date'2010-12-31' - dhsviews.RecipientsV.Birthdate ) / 365.25) <= 65 then 'Ages 66 and Over' Else 'error' end_ as Age_Category from dhsviews.Recipients V as A, DHSViews.RecipientElibgibility V as B Where A.RecipientID = B.RecipientID and B.MajorProgram IN ('MA', 'NM', 'IM', 'EH') and B.EligibilityStatus IN('A', 'C') and B.BeginDate <= date '2010-12-31' and B.EndDate >= date '2010-01-01' Order by 1,2);
      1 resposta

      Pergunta 13

      What is the following SAS code trying to do? Please explain Proc sort data = SpecCodes; By TreatingProvider SpecifaltyCodes; Run; Data SpecsCode2; Set SpecCodes; By TreatingProvider SpecialtyCode; If first.TreatingProvider then Counter = 0; Counter +1; Run; Proc freq data = SpecCodes 2; Tables Counter; Run; Data SpecCodes 3 (drop = SpecialityCode Counter i); Set SpecCodes 2; By TreatingProvider SpecialtyCode; Array Spec_Code{6} $ 2 Code1-Code6; Retain Code1-Code6; If first.TreatingProvider then do i = 1 to 6; Spec_code{1} = "; End; Spec_Code{Counter} = SpecialtyCode; If last.TreatingProvider then output; Run;
      Responder à pergunta
      3