Questões de Concurso Para dataprev

Foram encontradas 3.167 questões

Resolva questões gratuitamente!

Junte-se a mais de 4 milhões de concurseiros!

Q113196 Matemática
Dois dados não viciados são lançados. Considere Imagem associada para resolução da questão = face do dado 1, Imagem 009.jpg = face do dado 2 e os eventos:

Imagem 010.jpg

Calcule P(B/A).
Alternativas
Q113195 Estatística
Considere que os eventos A, B, C, D, E e F são mutuamente exclusivos, calcule P(B D).

Imagem 008.jpg

Alternativas
Q113193 Estatística
A soma dos desvios ao quadrado de um grupo de medidas em relação à média dividido pelo total de valores, é igual :
Alternativas
Q113192 Estatística
Considere a seguinte distribuição de freqüência relativa
acumulada. Considere 100 anos como a idade máxima da
distribuição. Com base na tabela responda às questões 21 e
22.

Imagem 007.jpg

Sobre a distribuição, é correto afirmar que:
Alternativas
Q113191 Estatística
Considere a seguinte distribuição de freqüência relativa
acumulada. Considere 100 anos como a idade máxima da
distribuição. Com base na tabela responda às questões 21 e
22.

Imagem 007.jpg

Aidade média é aproximadamente:
Alternativas
Q113190 Inglês
GadgetDesigners Push the Limits of Size, Safety
By Brian X. Chen, August 28, 2008

Just as small, fast-moving mammals replaced lumbering
dinosaurs, pocketable gadgets are evolving to fill niches that
larger, deskbound computers can't reach. But as they shrink,
these gadgets are faced with problems mammals face, too,
such as efficiently dissipating heat.

The recent example of Apple's first-generation iPod nanos
causing fires in Japan raises the question of whether
increasingly innovative product designs are impinging on
safety. The nano incident illustrates how risk can increase as
devices decrease in size, says Roger Kay, an analyst at
EndpointTechnologies.

"As [gadgets] get smaller, the tradeoffs become more difficult,
the balance becomes more critical and there's less room for
error," Kay said. "I'm not surprised it's happening to the nano
because that's the small one. You're asking it to do a lot in a
very, very small package and that's pushing the envelope.”

There's no question that industrial designers' jobs have
become much more difficult as the industry demands ever
more powerful and smaller gadgets. With paper-thin
subnotebooks, ultrasmall MP3 players, and pinkie finger-
sized Bluetooth headsets becoming increasingly popular, it's
questionable where exactly designers draw the line between
innovation and safety.

The expression such as in the last line of the first paragraph could be changed by ____ and its meaning would not altered.
Alternativas
Q113188 Inglês
GadgetDesigners Push the Limits of Size, Safety
By Brian X. Chen, August 28, 2008

Just as small, fast-moving mammals replaced lumbering
dinosaurs, pocketable gadgets are evolving to fill niches that
larger, deskbound computers can't reach. But as they shrink,
these gadgets are faced with problems mammals face, too,
such as efficiently dissipating heat.

The recent example of Apple's first-generation iPod nanos
causing fires in Japan raises the question of whether
increasingly innovative product designs are impinging on
safety. The nano incident illustrates how risk can increase as
devices decrease in size, says Roger Kay, an analyst at
EndpointTechnologies.

"As [gadgets] get smaller, the tradeoffs become more difficult,
the balance becomes more critical and there's less room for
error," Kay said. "I'm not surprised it's happening to the nano
because that's the small one. You're asking it to do a lot in a
very, very small package and that's pushing the envelope.”

There's no question that industrial designers' jobs have
become much more difficult as the industry demands ever
more powerful and smaller gadgets. With paper-thin
subnotebooks, ultrasmall MP3 players, and pinkie finger-
sized Bluetooth headsets becoming increasingly popular, it's
questionable where exactly designers draw the line between
innovation and safety.

In the sentence: “But as they shrink, these gadgets with problems mammals face too, such as dissipating heat.” First paragraph, the author of the text believes that…
Alternativas
Q113187 Raciocínio Lógico
Dentre os argumentos lógicos apresentados abaixo, o único que é um silogismo é:
Alternativas
Q113185 Raciocínio Lógico
A única das proposições abaixo que pode ser considerada uma negação lógica da proposição: "Se é feriado, então vou à praia" , é :
Alternativas
Q113184 Conhecimentos Gerais
No Menu Exibir do Windows Explorer, a opção que faz com que o modo exibição dos arquivos e pastas forneça informações tais como nome, tipo, tamanho e data de modificação é:
Alternativas
Q113183 Conhecimentos Gerais
Conflitos de hardware ocorrem quando dois ou mais dispositivos utilizam o mesmo recurso.A opção que possue os recursos de hardware que podem entrar em conflito é:
Alternativas
Q113182 Conhecimentos Gerais
Para selecionar várias células de uma mesma coluna numa Planilha utilizando o MS-Excel, deve-se manter pressionada a tecla ( ou combinação de teclas):
Alternativas
Q113181 Conhecimentos Gerais
Sobre o item Meu Computador, analise:

I. Pode-se copiar arquivos e pastas,mas nunca atalhos.

II. É possível apagar arquivos enviando a lixeira.

III. Só é possível mover arquivos e atalhos.

Dos itens acima mencionados:
Alternativas
Q113178 Algoritmos e Estrutura de Dados
A opção em que a estrutura é do tipo LIFO é:
Alternativas
Q113177 Algoritmos e Estrutura de Dados
Sobre listas encadeadas, é INCORRETO afirmar que:

Alternativas
Q113176 Engenharia de Software
Um método do tipo final é aquele que:
Alternativas
Q113175 Programação
Analise o seguinte programa em JAVA e responda às questões 56 e 57.

01  class Circulo
02  {
03  private double raio;
04  public Circulo(double r)
05  {
06  raio = r;
07  }
08  public void setRaio(double r)
09  {
10  raio = r;
11  }
12  public double getRaio( )
13  {
14  return raio;
15  }
16  }
17  public classTeste
18  {
19  private static final Circulo roda = new Circulo(5.0);
20  public static void main (String args[ ])
21  {
22  System.out.println(“Raio = “ + roda.getRaio( ));
23  roda.setRaio(7.0);
24  System.out.println(“Novo raio = ”+ roda.getRaio( ));
25  }
26 }

Sobre a variável raio na linha 3 do programa, pode-se dizer que:
Alternativas
Q113174 Programação
Analise o seguinte programa em JAVA e responda às questões 56 e 57.

01  class Circulo
02  {
03  private double raio;
04  public Circulo(double r)
05  {
06  raio = r;
07  }
08  public void setRaio(double r)
09  {
10  raio = r;
11  }
12  public double getRaio( )
13  {
14  return raio;
15  }
16  }
17  public classTeste
18  {
19  private static final Circulo roda = new Circulo(5.0);
20  public static void main (String args[ ])
21  {
22  System.out.println(“Raio = “ + roda.getRaio( ));
23  roda.setRaio(7.0);
24  System.out.println(“Novo raio = ”+ roda.getRaio( ));
25  }
26 }

É correto afirmar que:
Alternativas
Q113173 Algoritmos e Estrutura de Dados
Ao executar o trecho de programa a seguir, valor de x no final do trecho será:

.
.
.
x=1;
for(i=0;i < 5; i++)
x+= i;
for(i=4;i > 1; i--)
x -= i;
.
.
.
Alternativas
Respostas
2861: C
2862: E
2863: B
2864: D
2865: A
2866: B
2867: B
2868: B
2869: A
2870: E
2871: E
2872: A
2873: B
2874: B
2875: B
2876: D
2877: C
2878: A
2879: E
2880: A