logo

Crowdly

Browser

Add to Chrome

Questions Bank (1395059 total)

На другий день після фіксації часткових пластинкових протезів хворий скаржиться на печіння в порожнині рота, неприємний присмак під час користування протезами. Під час огляду: слизова оболонка гіперемійована. Гіперсалівація. Перед виготовленням нових протезів користувався старими 5 років. Подібних скарг не було. Яка можлива причина цього явища?
0%
0%
0%
0%
0%
View this question

Which searching algorithm is most efficient for finding an element in a sorted array?

View this question

How many times is initialization performed in the for-repetition:

0%
0%
0%
0%
View this question

Which loop should you use if the number of repetitions cannot be determined before entering the loop and you want to allow for zero repetitions?

0%
0%
0%
0%
View this question

Which part of a method contains the actual instructions that define what the method does?

View this question

Which loop should you use if the number of iterations is known before the loop starts?

0%
0%
0%
0%
View this question

Which of the listed flowchart segments match the following code snippet:

 

 

bool exit = false;

double luggageWeight = 0;

double total = 0;

final double MAX_WEIGHT = 30;

 

Scanner input = new Scanner(System.in);

 

while(!exit){

System.out.println("Enter Luggage Weight: ");

luggageWeight = input.nextDouble();

 

if(luggageWeight < 0){

System.out.println("Quitting...");

exit = true;

} else if(total + luggageWeight > MAX_WEIGHT){

System.out.println("exceeded weight limit.");

exit = true;

} else {

total += luggageWeight;

}

}

 

 

0%
0%
0%
View this question

Apply a single application of Simpson’s 3/8 rule to evaluate the following integral. What is the output?

0%
0%
0%
0%
View this question

What is the approximate value of the following integral using a single application of Simpson’s 1/3 rule?

View this question

What is the approximate value of the following integral using two applications of the composite trapezoidal method? 

0%
0%
0%
0%
View this question