Answer:I would say 1980 is the answer or The answer is B 1980.
Answer:
"Hard copy", "Soft copy", "voice synthesizer", "flat panel", "projector".
Explanation:
- The above-defined words will fill the above blanks. Then the above sentence above below meanings:-
- The hard copy is ab printed form of soft copy which is generated by the printer device.
- The soft copy is displayed on the monitor screen.
- The voice synthesizer is used to convert the text onto a speech.
- The flat-panel device has a low volume and weight. There is much display which is in this type.
- The projector is used to display on the wall.
Answer:
Option 4 i.e., RDP, port 3389.
Explanation:
The User has informed the helpdesk with such an issue that involves the specialist to link to the remote server utilizing Remote Assist to access the user's screen with a quite informative and ambiguous error. Every attempt made by the technician to link to the virtual server outcomes in a message saying that the link has been denied.
So the combinations of RDP and port 3389 would be enabled on the remote computer’s firewall to allow this connection.
The correct answer is C. The split phase motor has two windings on the stator.
A split phase AC induction motor runs on a single phase and splits the phase into two windings, a run winding, and a start winding, on the stator. The start winding axes is 90 degrees electrically to the run winding. This helps to produce a rotating magnetic field at startup and gets the motor spinning. This secondary 'start' winding on the stator is a key feature of split phase motors.
Answer:
#include<stdio.h>
//declare a named constant
#define MAX 50
int main()
{
//declare the array
int a[MAX],i;
//for loop to access the elements from user
for(i=0;i<MAX;i++)
{
printf("\n Enter a number to a[%d]",i+1);
scanf("%d",&a[i]);
}
//display the input elements
printf("\n The array elements are :");
for(i=0;i<=MAX;i++)
printf(" %d ",a[i]);
}
Explanation:
PSEUDOCODE INPUTARRAY(A[MAX])
REPEAT FOR I EQUALS TO 1 TO MAX
PRINT “Enter a number to A[I]”
READ A[I]
[END OF LOOP]
REPEAT FOR I EQUALS TO 1 TO MAX
PRINT A[I]
[END OF LOOP]
RETURN
ALGORITHM
ALGORITHM PRINTARRAY(A[MAX])
REPEAT FOR I<=1 TO MAX
PRINT “Enter a number”
INPUT A[I]
[END OF LOOP]
REPEAT FOR I<=1 TO MAX
PRINT A[I]
[END OF LOOP]