The answer would be B. “Make eye contact.”
Not maintaining eye contact during an interview might give the impression that you are uninterested in what’s happening. Choice A is something that should be done after the interview. Choices C and D are things that should be done before the interview to prepare.
Answer:
d) Online, real-time systems.
Explanation:
The options are:
a) Batch processing systems.
b) Personal computer systems.
c) Data compression systems.
d) Online, real-time systems.
And the correct option is D. Online, a real-time system. And this is because it is this which is characterized by the data which is assembled from more than one location as it is online, and various clients from various locations enter the data, and it's updated immediately, as it is a real-time system, which is updated in real-time. And hence D. is the correct option. The data compression system takes the data from one location at a time. The batch processing system is made up of different programs for input, output, and process. and hence is different from real-time, which requires continual all the three. And a PC is not made to a specific function, and it does different activities. Hence, its also not the right option here.
Corrected or Complet Question
The ____ operator executes one of two expressions based on the results of a conditional expression.
a. .
b. ( )
c. ,
d. ?:
Answer:
(d) ? :
Explanation:
The ternary operator (? :) is an operator that executes one out of two expressions based on the results of a conditional expression. It is a faster or shorthand way of writing an if ... else statement. The operator checks the conditional expression and depending on whether it is true or false, one of its two statements will be executed. For example:
String correct = (4 < 5) ? "yes" : "no" ;
In the code above,
i. the conditional statement is (4 < 5) and this will be tested for to return true or false.
ii. the first expression (the one after the ?) is "yes" which will be executed if the conditional statement returns true.
iii. and the second expression (the one after the : ) is "no" which will be executed if the conditional statement returns false.
Therefore, since the conditional expression returns true for 4 < 5, the first expression will be executed. i.e "yes". This means that the String variable <em>correct </em> will have a value of "yes".
Explanation:
I don't know, because I had only spent one month in brainly. but I think it is Mister 360. s/he is a great answerer and always stay at top in leaderboard.
Following are the code that is written in c language
#include <stdio.h>
int main() // main function
{
int n1,t; // declaring variable
printf(" Enter an integer :");
scanf("%d",&n1); // taking input
while(n1>0) // iterating over the loop untill the value of n is greater then 0
{
t=n1%10;
printf("%d",t);
printf("\n");
n1=n1/10;
}
return 0;
}
Explanation:
we taking an integer value n1 and iterating over the loop untill n1>0
suppose n1=1234
then t=n%10;
means t=1234%10
as % holds reminder means t=4
then print the value of t means print 4
and n1 becomes 123 which is > 0 again condition is checking and same process is follow untill n1>0
output
Enter an integer: 5213
3
1
2
5