logo

Crowdly

Browser

Add to Chrome

Questions Bank (1394993 total)

O conceito de “ação social “para Max Weber pode ser entendido como:

View this question

Quando dizemos “Eu sempre fiz assim, e sempre deu certo” ou mesmo quando enfatizamos que “Lá em casa, desde a época da minha avó a gente sempre fez de tal jeito e sempre deu certo”, orientamos nossa ação segundo qual tipo de ação social?

View this question

Max Weber, um dos clássicos da sociologia, autor dessa definição de ação social, que para ele constitui o objeto de estudo da sociologia, apontou a existência de quatro tipos de ação social. Que são:

0%
0%
0%
0%
0%
View this question

O sociólogo Max Weber em sua análise do capitalismo moderno trabalhava com muitas áreas de interesse: economia, direito, filosofia etc. Em sua obra existem dois conceitos fundamentais, que são:

0%
0%
0%
0%
0%
View this question

Assume that there is a struct type called data and that we wish to program a function f that takes 2 data input (read-only) parameters a and b and yields a result also of type data

.

What is the most appropriate declaration of f, if sizeof(data)

exceeds the word size of 8 bytes in a 64-bit machine?

0%
0%
0%
0%
View this question

Consider the following code fragment:

struct data {

double x;

double y;

};

void f(const data& a, data& b) {

... // function body

}

Which of the following instructions is valid (does not cause a compilation error) in the body of function f

?

100%
0%
0%
0%
View this question

Consider (as usual in 64-bit machines) that values of type double are represented using 8 bytes in memory and struct types data1 and data2

defined as follows.

struct data1 {

double x;

double y;

};

struct data2 {

data1 a;

data1 b;

data1 c;

};

Assuming that no padding bytes are necessary in the representation of data1 and data2

what is the output of

cout << sizeof(data1) << ' ' << sizeof(data2);
0%
0%
0%
0%
View this question

Consider the following struct types data1 and data2

:

struct data1 {

double x;

double y;

};

struct data2 {

data1 a;

data1 b;

data1 c;

};

For a variable v of type data2

which of the following is a valid field access?

0%
0%
0%
0%
View this question

What is the output of the following code?

struct data { int x; int y; };

data a { 1, 2 }, b { 3, 4};

a.x += b.y;

b.y *= a.x;

cout << a.x << a.y << b.x << b.y;

100%
0%
0%
0%
View this question

En un evento de

erupción de un volcán, fluye lava por el suelo a una temperatura de 1200 °C. El

suelo estaba inicialmente a una temperatura de 15 °C y el flujo de lava tiene

un coeficiente de transferencia de calor por convección de 4500 W/m2·K. Suponga

que el suelo tiene las propiedades de suelo seco. Las propiedades de la tierra

(suelo seco) son ρ = 1500 kg/m3, cp = 1900 J/kg ∙ K y k = 1.0 W/m∙K.

Calcule la

temperatura de la superficie del suelo después de 12 s de la presencia de un

flujo de lava. 

Calcule el flujo

de calor (en kW) en la superficie de la tierra después de 20 s la presencia de un flujo

de lava suponiendo que la temperatura de la superficie de la tierra es de

1153°C. (incluir en respuesta)

View this question