Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

12351.

There are 1.8 lachk employes in Microsoft what is their job​

Answer»

Answer:

Microsoft is the biggest software COMPANY in the world.

Its branches are in all continents so the number of employers are ALSO HIGH they are there as a associate worker and are CALLED software engineers

12352.

Write a c program to find the largest number (integer) among three numbers (integers) using if and logical && operator.

Answer»

answer :-

as per your question,

explanation :-

This program uses only if statement to find the largest number.

Example #1

#include

INT main()

{

double n1, n2, N3;

printf("Enter three different NUMBERS: ");

scanf("%lf %lf %lf", &n1, &n2, &n3);

if( n1>=n2 && n1>=n3 )

printf("%.2F is the largest number.", n1);

if( n2>=n1 && n2>=n3 )

printf("%.2f is the largest number.", n2);

if( n3>=n1 && n3>=n2 )

printf("%.2f is the largest number.", n3);

return 0;

}

This program uses if...else statement to find the largest number.

Example #2

#include

int main()

{

double n1, n2, n3;

printf("Enter three numbers: ");

scanf("%lf %lf %lf", &n1, &n2, &n3);

if (n1>=n2)

{

if(n1>=n3)

printf("%.2lf is the largest number.", n1);

else

printf("%.2lf is the largest number.", n3);

}

else

{

if(n2>=n3)

printf("%.2lf is the largest number.", n2);

else

printf("%.2lf is the largest number.",n3);

}

return 0;

}

Example #3

#include

int main()

{

double n1, n2, n3;

printf("Enter three numbers: ");

scanf("%lf %lf %lf", &n1, &n2, &n3);

if( n1>=n2 && n1>=n3)

printf("%.2lf is the largest number.", n1);

else if (n2>=n1 && n2>=n3)

printf("%.2lf is the largest number.", n2);

else

printf("%.2lf is the largest number.", n3);

return 0;

}

12353.

Which language is used as an computer language​

Answer»

Answer:

Binary language

Explanation:

If you LOVE this answer the GIVE it a thanks and mark me as BRAINLIST

12354.

Hey guys plz tell me which programing language is better c+ or java script​

Answer»

Answer:

C+ because it's graphics and PROGRAMMING TECHNIQUES are QUIET high

12355.

Write a c program to find largest among three numbers using conditional operator

Answer»

Explanation:

In this PROGRAM we have used the conditional OPERATOR for COMPARING biggest of three numbers.

# include

void main()

{

int a, B, c, big ;

printf("Enter three numbers : ") ;

scanf("%d %d %d", &a, &b, &c) ;

big = a > b ? ( a > c ? a : c) : (b > c ? b : c) ;

printf("\nThe biggest number is : %d", big) ;

12356.

Write a c program to display output if any negetive number is given as input

Answer»

Explanation:

· C PROGRAMMING, exercises, solution: Write a C PROGRAM to check a given INTEGER is ... Print even if the NUMBER is 0. ... Sample Output: Input an integer: 13 Positive .

12357.

Write a c program to check whether the given number(n) can be expressed as power of two (2) or not.

Answer»

ANSWER:

I THINK GOOGLE is the BEST OPTION

12358.

Write a c program to check the wheather a given number is palindrome r not

Answer»

Explanation:

Write AC PROGRAM to FIND whether a number is palindrome or not

C program for palindrome number

#INCLUDE

int main()

{

int n, reverse = 0, t;

printf("ENTER a number to check if it is a palindrome or not\n");

scanf("%d", &n);

t = n;

while (t != 0)

12359.

Difference between best first search and a* algorithm

Answer»

I can't UNDERSTAND your QUESTION

12360.

2d geometric transformation in computer graphics

Answer»

Explanation:

When a transformation takes PLACE on a 2D plane, it is called 2D transformation. Transformations play an important ROLE in computer graphics to REPOSITION the graphics on the SCREEN and change their size or orientation.

12361.

4784 convert into hexadecimal​

Answer»

ANSWER:

0x12B0

Explanation:

0x12B0 is the answer

12362.

What are the computer devices used in banks

Answer»

ANSWER:

scanner

printer

monitor

12363.

Computer fundamentals notes on internet and web services

Answer»

ANSWER:

Computing FUNDAMENTALS is ONE of three exams included in the Internet and Computing Core Certification (IC3). The EXAM covers computer hardware, computer software, and using an OPERATING system.

12364.

Write a c program that reads a maximum of 100 integers from the keyboard, stores them in a long array, sorts the integers in ascending order, and displays sorted output. Input can be terminated by any invalid input, such as a letter.

Answer»

This is your ANSWER

HOPE this is a CORRECT answer

And it will HELP you..

THANKS

12365.

Write a c program to calculate factorial of a number using recursion?

Answer»

Explanation:

include

LONG REVERSE(long);

int main()

{

long N, r;

scanf("%ld", &n);

r = reverse(n);

PRINTF("%ld\n", r);

12366.

Write a c program to accept a set of numbers and -1 denotes the end of input

Answer»

ANSWER:

#include

INT main(){

int a[100];

int i=0;

while(a[i]!=-1)

SCANF("%d",&a[i]);

i++;

}

Explanation:

12367.

Write a c program that finds the number of all pairs of prime numbers satisfying the condition n = p1 + p2 for a given even number(n).

Answer»

ANSWER:

itrzifzfizirxfizotxgis9gdt8

12368.

Write a c programme to find the number of 1 in a binary number

Answer»

Answer:

For example, binary REPRESENTATION of 4 is 100 and the number of ONES in it is 1. Similarly, binary representation of 99 is 1100011 and the number of ones in it is 4.

...

Code:

VOID countOnes (int n)

{

int COUNT=0;

while (n!=0)

{

n = n & (n-1);

count++;

}

12369.

Compare and constrast linear search and binary search.

Answer»

ANSWER:

I can't HELP you PLZ FORGIVE me

12370.

Write a c program for reading, displaying and multiplying the elements of two 3x3 matrices

Answer»

Explanation:

Matrix multiplication in C language: C program to multiply two matrices (two-dimensional arrays) which will be entered by a user. The user will enter the order of a matrix and then its ELEMENTS and similarly inputs the second matrix. If the orders of the matrices are such that they can't be MULTIPLIED by each other, then an error message is displayed. You MAY have studied the method to multiply matrices in Mathematics.

12371.

Write a c program for the first and only line of input contains an integer n.

Answer»

no no PROGRAM CONTAIN this.

HOPE this helps.

{SUGGESTION-- search it on Google}

12372.

Write a c program for adding two matrices of 3x3 using pointers.

Answer»

Explanation:

/*SOURCE code of addition of 3x3 MATRIX c program*/

#include

#include

int main()

{

int matA[3][3],matB[3][3],matC[3][3];

int r,c,K;

for(r=0; r<3; r++)

{

for(c=0; c<3; c++)

{

printf("Enter first matrix : ");

SCANF("%d", &matA[r][c]);

}

}

for(r=0; r<3; r++)

{

for(c=0; c<3; c++)

{

printf("Enter second matrix : ");

scanf("%d", &matB[r][c]);

}

}

for(r=0; r<3; r++)

{

for(c=0; c<3; c++)

{

matC[r][c]=0;

for(k=0; k<3;k++)

matC[r][c] = matA[r][c] + matB[r][c];

}

}

printf("\n New addition matrix : \n");

for(r=0; r<3; r++)

{

for(c=0; c<3; c++)

printf(" %d",matC[r][c]);

printf("\n");

}

GETCH();

return 0;

}

12373.

Definition of resident monitor in operating system

Answer»

Waheguru g ka Khalsa waheguru g Ki Fateh

Here your answer

a resident monitor is a type of system SOFTWARE PROGRAM that was used in many early computers from the 1950s to 1970S. It can be considered a PRECURSOR to the operating system. The name is derived from a program which is always present in the COMPUTER's memory thus being "resident".

12374.

Q. 1)name any 5 input and output devices and explain their purpose. ​

Answer»

Explanation:

5 Input DeviceName:-

1)Mouse

2)KEYBOARD

3)Optical Scanner

4)Microphone

5)Touch Screen

Input Device Purpose:-

1)Mouse:-A mouse is an electro mechanical, hand held device . It is used as a POINTER. It can perform functions like selecting menu commands, moving icons, resizing windows, starting programs, and choosing options.

2)Keyboard:- A keyboard is the most common input device. Generally standard keyboard has 104 keys.

3)Optical Scanner:-These devices are used for automatic data collection. The devices of this category COMPLETELY eliminate manual input of data.

4)Microphone:-Microphone is an input device, which takes VOICE as input. The voice communication is more error-prone than information through keyboard.

5) Touch screen:-Touch panel displays and pads are now being offered as alternatives to keyboard.

12375.

» Define Self-management ? Lise thecomponent of f-management​

Answer»

Explanation:

Self-management is DEFINED as the personal application of behavior change tactics that produces a DESIRED change in behavior. The term self-control is ALSO used to refer to this TYPE of behavior

1)Demonstrating PROFESSIONALISM – 

2) Showing self-awareness_

3)_Staying composed under pressure

12376.

All primary key is the super key but the converse is not true

Answer»

ANSWER:

xxixifzifzifxifxigxogxigxigxifxigxigx

12377.

Why use reference variable of another class to create object of another class

Answer»

Answer:

here's UR Answer

We can USE superclass REFERENCE to hold any subclass object derived from it. DISADVANTAGE : By using superclass reference, we will have access only to those PARTS(methods and variables) of the object defined by the superclass. ... This is because they are defined in subclass not in the superclass.

12378.

Write a command to find the total number of lines in a file without using nr

Answer»

Explanation:

a SHELL script to count the SPECIFIED number of lines in a text FILE without USING WC command

12379.

Why linear programming is an important tool of dss? Explain.

Answer»

Explanation:

This is where the SIMPLEX method COMES in. It is an iterative method which by repeated use GIVES us the solution to any N variable LP ...

12380.

write some input device or output device storage device and processing device and write use of each device​

Answer»

ANSWER:

ഡിജെജെക്ക്വൻബഡ്സ്ൻഡജഡക്സ്‌ക്ബ്ബ്‌സ്

12381.

Advantages and disadvantage of information system

Answer»

Explanation:

There are SEVERAL disadvantages that can occur from the implementation of information SYSTEMS. The impact can influence human, culture and EVEN COUNTRY. ... Because when the companies USE the information system, they can save much more time to complete the tasks and also several labor mechanic jobs

12382.

Why javascript returning only first word of value in select

Answer»

Answer:

am STUCK over a small issue here.

I want to set the value of a input using JavaScript but jQuery is not displaying the FULL sentence.

var name = "Richard Keep";

But when I use try to do this

$('input#nameid').VAL(name)

to this input

the value is set to Richard alone instead of Richard Keep. How do I MAKE the jQuery echo the entire STRING and not just the first word in a string? Thanks

12383.

Why did we use diagonal in solving matrix multiplication dynamic programming

Answer»

Explanation:

Matrix chain multiplication (or Matrix Chain Ordering Problem, MCOP) is an optimization problem that can be SOLVED USING dynamic programming. Given a sequence of matrices, the GOAL is to FIND the most EFFICIENT way to multiply these matrices. ... There are many options because matrix multiplication is associative.

12384.

Write any 10 formula which is used in MS Excel​

Answer»

ANSWER:

dbdhsjfhdbbfbfbfhdbrhthrhrnjf

12385.

Artificial intelligence list manipulation function

Answer»

Hope this helps!!

Developed in 1959 by John McCarthy, it is a commonly used language for ARTIFICIAL intelligence (AI) programming. In LISP, all computation is EXPRESSED as a function of at least ONE object. Objects can be other functions, DATA ITEMS (such as constants or variables), or data structures.

12386.

Why data link layer is partitioned in two parts where as other layers are not?

Answer»

EXPLANATION:

The data link layer is divided into two SUBLAYERS: the media access control (MAC) layer and the logical link control (LLC) layer. ... Because the data link and physical layers are so closely related, many types of hardware are ALSO ASSOCIATED with the data link layer.

12387.

Why are domain names required? What is the relationship between domain names and ip address

Answer»

EXPLANATION:

The IP ADDRESS and domain NAME are two different identities, but their roles are same to the WORLD. They are connected and supporting each other, the IP address needs the domain name to function properly. So does to domain name, it cannot go online WITHOUT connecting to IP address.

12388.

Which wireshark filter can be used to monitor outgoing packets from a specific system on the network

Answer»

Explanation:

In order to capture Ethernet traffic other than Unicast traffic to and from the host on which you're running WIRESHARK, MULTICAST traffic, and Broadcast traffic, the adapter will have to be PUT into promiscuous mode, so that the filter mentioned above is switched off and all PACKETS received are delivered to the HOS

12389.

Best smartphone below 5000​

Answer»

You can search in google because there are MANY SMART PHONES under 5000.
you have to buy this so, how can I choose for you

12390.

Which type of network cable is used to connect the components that make up satellite communication systems?

Answer»

ANSWER:

WAN by twisted pair cable

Explanation:

easy to ACCES

12391.

Name the Communication of worldwide​

Answer»

ANSWER:

COMMUNICATION on WORLDWIDE MIGHT be internet

hope it will HELP you

12392.

Which type of network cable contains multiple copper wires and uses extra shielding to prevent interference?

Answer»

Explanation:

The most commonly used types of network cable are the twisted pair, coaxial, Ethernet cross over, and fiber optic.

12393.

Which type of drawing uses the symbols to represent components,constructs or relationship in drawing

Answer»

Explanation:

Dimensions have FOUR BASIC components:

  • Dimension Text.
  • Dimension LINE andArrows.
  • Extension Lines.
  • Gap.
12394.

Which type of method or variables defined in static inner class

Answer»

Explanation:

  • There are BASICALLY four types of inner classes in java. Nested Inner CLASS can access any private instance variable of outer class. Like any other instance variable, we can have access modifier private, protected, PUBLIC and DEFAULT modifier.
12395.

Which type of drawing uses to symbolsto represent componens ,construct or relationship in drawing

Answer»

Answer:

dimension TEXT, dimension LINE and arrows, extension line and GAP

12396.

Which transformation in computing allows for storage and delivery of applications and data over the internet?

Answer»

Answer:

Infrastructure as an administration (IaaS) is a cloud computing offering in which a vendor gives clients ACCESS to processing assets, for example, servers, stockpiling and systems administration. Associations utilize their very own stages and applications inside a SPECIALIST co-op's infrastructure.  

Key highlights  

Rather than acquiring equipment, by and large, clients pay for IaaS on interest.  

Infrastructure is versatile relying upon handling and capacity needs.  

Saves undertakings the expenses of purchasing and keeping up their own equipment.  

Since information is on the cloud, there can be no single purpose of disappointment.  

It empowers the virtualization of authoritative assignments, saving time for other work.  

PaaS  

Platform as an administration (PaaS) is a distributed computing offering that gives clients a cloud domain wherein they can create, oversee and deliver applications. Notwithstanding capacity and other figuring assets, clients can utilize a suite of prebuilt devices to create, redo and test their very own applications.  

Key highlights  

PaaS gives a stage apparatuses to test, create and have applications in a similar SITUATION.  

It empowers associations to concentrate on improvement without stressing over fundamental foundation.  

Suppliers oversee SECURITY, working frameworks, server programming, and reinforcements.  

Encourages ORGANIZATION work regardless of whether groups work remotely.

Explanation:

12397.

Which two statements describe intermediary devices? (choose two.) intermediary devices generate data content. Intermediary devices direct the path of the data. Intermediary devices connect individual hosts to the network. Intermediary devices alter data content. Intermediary devices initiate the encapsulation process.

Answer»

Answer:

INTERMEDIARY devices GENERATE dsta content

interdiary devices initiate the ENCAPSULATION PROCESS

12398.

Which term describes the state of a network when the demand on the network resources exceeds the available capacity?

Answer»

ANSWER:

: When the DEMAND on the NETWORK resources exceeds the AVAILABLE capacity, the network

12399.

Which two reasons generally make dhcp the preferred method of assigning ip addresses to hosts on large networ

Answer»

Answer:

It eliminates most address configuration errors.

It ensures that addresses are only applied to DEVICES that REQUIRE a permanent address.

It GUARANTEES that EVERY device that needs an address will get one.

It provides an address only to devices that are AUTHORIZED to be connected to the network.

12400.

Who is the father of computer???​

Answer»

CHARLES BABBAGE is the FATHER of COMPUTER.