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.

12751.

Write a c++ program to shift all the zero present in the array in the alternative order, For example.Input array: -1 2 0 8 5 0 0 6Output array: -1 0 2 8 0 5 0 6

Answer»

#include

USING NAMESPACE std;

int main()

{

   int a[50], n;

   cout << "ENTER the lemght of the array::";

   cin >> n;

   for (int i = 0; i < n; i++)

   {

       cout << "enter the your" << i + 1 << "no digit at index" << i << "::";

       cin >> a[i];

   }

   for (int i = 0; i < n; i++)

   {

       cout << "your number at position " << i + 1 << "::";

       cout << a[i] << endl;

   }

   for (int i = 0; i < n; i++)

   {

       if (a[i] == 0)

       {

           if (i % 2 == 0)

           {

               for (int J = 1; j < n; j = j + 2)

               {

                   if (a[j] != 0)

                   {

                       int temp = a[i];

                       a[i] = a[j];

                       a[j] = temp;

                   }

               }

           }

       }

   }

   cout << "after shifting position of zeros"<

   for (int i = 0; i < n; i++)

   {

       cout << "the digit at position" << i << "::";

       cout << a[i] << endl;

   }

   return 0;

}

12752.

Differentiation amplifier produces​

Answer»

EXPLANATION:

Differentiation amplifier or differentiator is a CIRCUIT that PERFORMS mathematical operation of differentiation and produce OUTPUT waveform as a derivative of input waveform.

12753.

WAP to accept a number and check whether it is a prime number or not.(for loop)

Answer»

Explanation:

is a PERFECT way to SAVE money and all of them are you doing now to GET to know YA y yay is a perfect way to save money

12754.

WAP to accept a number and print its factors.(for loop)

Answer»

Explanation:

LOGIC to find all FACTORS of a number

Input number from user. Store it in some VARIABLE say num .

Run a loop from 1 to num , increment 1 in each iteration. The loop STRUCTURE should look like for(i=1; i<=num; i++) .

For each iteration inside loop check current counter loop variable i is a factor of num or not.

12755.

Write a menu-driven program to find perimeter and area, of circle, square and rectangle.(switch case)

Answer»

#include H>

void main ()

{

int choice,R,l,w,b,h;

float area;

printf("Input 1 for area of circle\n");

printf("Input 2 for area of rectangle\n");

printf("Input 3 for area of triangle\n");

printf("Input your choice : ");

scanf("%d",&choice);

SWITCH(choice)

{

case 1:

printf("Input radious of the circle : ");

scanf("%d",&r);

area=3.14*r*r;

break;

case 2:

printf("Input length and width of the rectangle : ");

scanf("%d%d",&l,&w);

area=l*w;

break;

case 3:

printf("Input the base and hight of the triangle :");

scanf("%d%d",&b,&h);

area=0.5*b*h;

break;

}

printf("The area is : %f",area);

}

12756.

Which option will you use to print the text of your document page widthwise​

Answer»

ANSWER:

Answer: Usually, the default option is "Scale to Fit Media", which prints to the page margins. DESELECT it, then manually enter Scale, hieght and width values that EQUAL the full SIZE of your PAPER.

12757.

Answer the following questions.1. What are the different types of programming statements?​

Answer»

ANSWER:

There are three kinds of statements: expression statements, DECLARATION statements, and CONTROL flow statements.

Explanation:

Please mark me as BRAINLIEST

12758.

What is system? describe five types of system with examples​

Answer»

ANSWER:

which SYSTEM are you TALKING about

@[email PROTECTED]

12759.

Define booting please short answer bhejo​

Answer»

ANSWER:

Booting is the process of RESTARTING a computer or its operating system software. It starts with switching on the computer and ends when the Operating System is loaded into main memory and the computer is READY to take commands from the USER.

12760.

Accenture is involved in the transformation of an organization into a data-driven and intelligent enterprise. Which ability does Accenture need to ensure the organization has to become a successful business?

Answer»

Answer:

anser

Explanation:

ACCENTURE is involved in the transformation of an organization into a data-driven and INTELLIGENT enterprise. Which ability does Accenture need to ENSURE the organization has to BECOME a successful business?

12761.

What is the use of tocplease send me right answer ​

Answer»

Answer:

TOC is the measure of the level of organic MOLECULES or contaminants in purified water. TOC is an ANALYTIC technique that helps ORGANIZATIONS understand whether the water they are using is pure enough for their processes. All water, no matter how pure, CONTAINS some CARBON materials.

12762.

What is a hardwareplease

Answer»

Computer hardware includes the physical parts of a computer, such as the case,[1] central processing unit (CPU), monitor, mouse, keyboard, computer data storage, graphics card, SOUND card, speakers and motherboard.[2]

By contrast, software is the set of instructions that can be stored and run by hardware. Hardware is so-termed because it is "hard" or rigid with respect to changes, whereas software is "soft" because it is easy to change.

Hardware is typically directed by the software to execute any command or INSTRUCTION. A combination of hardware and software FORMS a usable computing system, although other systems EXIST with only hardware.

12763.

What are the different features of tux paint associated with the open tool​

Answer»

Answer:

Tux Paint provides a number of optional accessibiltiy enhancements, to help MAKE the program more SUITABLE in some circumstances.

On-screen keyboard.

Keyboard-driven mouse pointer control.

Joystick-driven mouse pointer control.

Disable STEREO sound EFFECTS (mono-only mode)

Interface button size is adjustable (Coming soon)

EXPLANATION:

12764.

What do you know about compact disk drive​

Answer»

Answer:

compact DISC means cd and drive means a THING present in the COMPUTER

12765.

¿Qué tres efectos produce un diferencial en la transmisión el movimiento desde el motor a las ruedas?What three effects does a differential have on the transmission movement from the engine to the wheels?

Answer»

ANSWER:

jwiwjwjjw

Explanation:

i don't KNOW the answer

12766.

What do you know about RAM​

Answer»

Answer:

RAM, or Random Access Memory, is essentially a piece of HARDWARE that stores your computer's short-term memory while the computer is running. The difference between a RAM module and a DATA DRIVE (whether HDD or SSD) is that RAM is volatile memory, meaning that data is completely erased when the power source is cut

12767.

X =10Y=20if (X>Y)print X+Yelseprint X-Y​

Answer»

Required Answer:-

Correct Cσde:

X = 10

Y = 20

if (X>Y):

   print(X+Y)

ELSE:

   print(X-Y)

To Find:

Output:

>> -10

Explanation:

  • Here, X = 10 and Y = 20.
  • Therefore, X>Y is false as 10>20 is false.
  • So, the if-block will not execute. Thus, the else block will execute.
  • So, it prints the value of X-Y which is equal to 10 - 20 or -10.
  • So, the output is -10.

Refer to the attachment for output.

•••♪

12768.

. Find the equation of the line containingthe following pointsi) (1, 2) and (1, -2) ii) (1, -2) and (-2, 3)bib​

Answer»

Answer:

1) x=1

2)y-3=-5/3(x+2) == 3y-9=-5x-10= 5x+3y=-1

12769.

In this data type the data series plotted using lines with the filled space below and is an excellent way to show changed over the time with one data series​

Answer»

Answer:

Combination charts enable you to comparedifferent series of data through different TYPESOF chart on the same AXES simultaneously.

Pie charts show the size of items in one data series, proportional to the sum of the items. The data points in a pie chart are shown as a PERCENTAGE of the whole pie. Consider using apie chart when: You have only one data series

An Excel Combo chart lets you display different series and styles on the same chartA pie chart is most effective when plotting no more than three categories of data. 

Bar Chart:Bar charts are typically used to compare several categories of data. Bar charts are ideal for visualizing the DISTRIBUTION or PROPORTION of data items when there are more than three categories.

12770.

प्रश्न-हमारे देश का क्या नाम है?

Answer»

ANSWER:

भारत

Explanation:

हमारे देश को भारत कहते है, और अंग्रेजी भी कहते है

12771.

Prove that the area of a rhombus is equal to half of the product of the diagonals.E SAM​

Answer»

GIVEN ABCD is a rhombus the diagonal AC and BD cut at POINT O

Then ∠AOD=∠AOB=∠COD=∠BOC=90

0

The area of rhombus ABCD divided diagonal in FOUR parts

So area of rhombus ABCD =area of triangle AOD+area of triangle AOB+area of triangle BOC+area of triangle COD

= 1/2×AO×OD+1/2×AO×OB+ 1/2×BO×OC+ 1/2*OD×OC

=1/2*AO(OD+OB)+1/2*OC(BO+OD)

=1/2×AO×BD+1/2×OC×BD

=1/2*BD(AO+OC)=1/2×BD×AC

So area of rhombus is equal to half of the product of diagonals

Hope it helps you please mark me as brainliest

THANK you!

12772.

Add 10101, and 1010 binary numbers​

Answer»

Answer:

11111

Explanation:

USE the RULES of BINARY ADDITION.

12773.

7 GIMP hasbrightness Cantral toalwhich helps in enchacing and image true or false​

Answer»

Answer:

true

Explanation:

7 GIMP has an brightness CONTROL tool which helps in ENHANCING an image. This feature makes the dull images to LOOK BRIGHT.

12774.

2. What is a wireless mouse?​

Answer»

Answer:

A mouse that CONNECTS to the computer without a cord. They can also be USED with a computer that has BLUETOOTH from the factory or via an adapter. Wireless mice that use other radio frequencies (RF) come with their own transceiver that plugs into the USB port of the computer. CONTRAST with wired mouse.

12775.

2.Photoshop allows you to do calculation also._________​

Answer»

Answer:

The Calculations command LETS you blend two individual channels from one or more source IMAGES. You can then apply the results to a NEW IMAGE or to a new CHANNEL or selection in the active image. You cannot apply the Calculations command to composite channels

Explanation:

12776.

Win exprience on artificial intelligence​

Answer»

Artificial intelligence (AI) makes it possible for machines to learn from experience, adjust to new inputs and perform human-like tasks. Most AI examples that you HEAR about today – from chess-playing computers to self-driving cars – rely heavily on DEEP LEARNING and natural language processing.

Explanation:

HOPE It's Help You

¯\_(ツ)_/¯(≡^∇^≡)¯\_(ツ)_/¯

12777.

Q:1. What is an advantage of Artificial Intelligence?1. Potential for misuse2.Highly dependent on machines3.Requires Supervision4.Rational Decision Maker​

Answer»

EXPLANATION:

RATIONAL DECISION MAKER is the answer of this question

12778.

Carrier is a leading name in the fieldAir ConditioningIcingСAir CoolingRefrigeration​

Answer»

ANSWER:

Since 1902, Carrier has cultivated a history of proven innovation in the heating, air- CONDITIONING and refrigeration INDUSTRIES, ENABLING ...

Missing: ICING ‎С

12779.

Write a program to find how many times 1 is present in the Hex number stored in memory location D010 H. and store the result at memory location D015 h​

Answer»

Explanation:

Whirlpool 6.5 Kg Fully-Automatic Top Loading Washing MACHINE (360 degree BLOOM WASH ULTRA SC 6.5 10YMW, PEARL Wine, Inbuilt Heater)

12780.

How can we increase the time of any sound in scratch app​

Answer»

  • In Any Scratch APP You Can Change Sound in It's Settings.
12781.

This question please solve​

Answer»

ANSWER:

A

Explanation:

SCATTERED, fduzmsmgdbxh

12782.

A _________ presents step by step question and promots that you respond toa } Wizardb} Properties

Answer»

Answer:

A WIZARD PRESENTS STEP by step QUESTION and PROMOTE

12783.

4.क्या हम अपने पोस्टर पर प्रत्येकऑब्जेक्ट को लॉक कर सकते हैं?*O OYesNoOMaybe​

Answer»

ANSWER:

MAYBE ho skta H confirm NHI h

12784.

Yaar koi help kyu nahi karta meri please help kardo​

Answer»

Answer:

T

T

F

F

T

Explanation:

T

TFFTggh chokh GF riskier ek G XX

12785.

Which are set rules and procedures to control the data transmission over the interneta gatewayb domainsc ip address d protocol​

Answer»

ANSWER:

PROTOCOL

EXPLANATION:

I HOPE it's RIGHT

12786.

How are data and functions organized in an object orientedprogram

Answer»

Answer:

The SHORT answer is that OOP LANGUAGES involve using a series of classes to keep data and functions organized. EVERY CLASS will contain variables and functions specific to that class that are called from elsewhere in the program where that class is USED.

12787.

A tool top identifies an IDE feauture true or false​

Answer»

YAA its TRUE of its own category

make me BRAINLIST

12788.

Who is the father of the computer Carles Babbage who is mother of computer​

Answer»

ANSWER:

Ada Lovelace was known as the "MOTHER Of COMPUTER SCIENCE," Charles Babbage was known as the "Father Of The Programmable Computer."

12789.

What is a storage device?​

Answer»

Answer:

A computer storage device is any type of HARDWARE that stores data. The computer's PRIMARY hard drive stores the operating SYSTEM, applications, and files and folders for users of the computer. ... While the hard drive is the most ubiquitous of all storage devices, several other types are COMMON as well.

Explanation:

Hope this answer is HELPFUL to u and give me thanks and take thanks please follow also

12790.

) पैराग्राफ के ऊपर स्थान एडिट करें​

Answer»

ANSWER:

EXPLANATION:

gjjgvhkdzugdJGetskKD4 d

12791.

Question 12to 28 answers please send it​

Answer»

ANSWER:

promise

Explanation:

I SWERA that I don't KNOW IDK idk idk idk

12792.

What do we select by moving the mouse pointer over the top of a column?(a) File button(c) Insert button(b) Format button(d) None of these​

Answer»

ANSWER:

FILE BUTTON is the answer

12793.

What does it represent? FlowchartProgramAlgorithmnone of these​

Answer»

NONE of these

I am not SURE

12794.

Define algorithem.write a step-form algorithem for making a telephone call to your friend

Answer»

ANSWER:

.  

EXPLANATION:

12795.

Should i buy the amd version or the intel version of lenovo légion 5 for FY as a college student? I require it for coding purposes...and some gaming.

Answer»

ANSWER:

YES its GOOD for GAMING :)

12796.

The operation of processing each element in the list is known as​

Answer»

answer:

The operation of processing each element in the list is KNOWN as traversal. It REFERS to the process of VISITING (checking and/or updating) each node in a tree DATA structure, exactly once.

12797.

Which characteristic is common in fascist governments?

Answer»

Answer:

Common Characteristics Of Fascist Movements

There has been considerable disagreement among historians and political scientists about the NATURE of fascism. Some scholars, for example, regard it as a socially radical movement with ideological ties to the Jacobins of the French Revolution, whereas others see it as an extreme form of conservatism inspired by a 19th-century backlash against the ideals of the Enlightenment. Some find fascism deeply irrational, whereas others are impressed with the rationality with which it served the material interests of its supporters. Similarly, some attempt to explain fascist demonologies as the expression of irrationally misdirected anger and frustration, whereas others emphasize the rational ways in which these demonologies were used to perpetuate professional or class advantages. Finally, whereas some consider fascism to be motivated primarily by its aspirations—by a desire for cultural “regeneration” and the creation of a “new man”—others place greater weight on fascism’s “anxieties”—on its fear of COMMUNIST revolution and even of left-centrist electoral victories.

One reason for these disagreements is that the two historical regimes that are today regarded as paradigmatically fascist—Mussolini’s Italy and Nazi Germany—were different in important respects. In Italy, for example, anti-Semitism was officially rejected before 1934, and it was not until 1938 that Mussolini enacted a series of anti-Semitic measures in order to SOLIDIFY his new military alliance with Hitler. Another reason is the fascists’ well-known opportunism—i.e., their willingness to make changes in official party positions in order to win elections or consolidate power. Finally, scholars of fascism themselves bring to their studies different political and cultural ATTITUDES, which often have a bearing on the importance they assign to one or another aspect of fascist ideology or practice. Secular liberals, for example, have stressed fascism’s religious roots; Roman Catholic and Protestant scholars have emphasized its secular origins; social conservatives have pointed to its “socialist” and “populist” aspects; and social radicals have noted its defense of “capitalism” and “elitism.”

For these and other reasons, there is no universally accepted definition of fascism. Nevertheless, it is possible to identify a number of general characteristics that fascist movements between 1922 and 1945 tended to have in common.

Explanation:

12798.

What is high food inflimation

Answer»

ANSWER:

INFLAMMATION

It is a part of the complex biological response of body TISSUES to harmful stimuli , such as pathogens DAMAGED cells , or irritants , and is a protective response INVOLVING IMMUNE cells , blood vessels , and molecular meditator .

___________________________

Food high in Inflammation

Food high in added sugar include candy , pastry doughnuts and sweet cereals etc...

12799.

1 point15) The word that answers thequestion"To Whom" ? after the verb isO a) nounO b) direct objectO c) indirect objectO d) Transitive verb​

Answer»

ANSWER:

TRANSITIVE VERB I answer

12800.

Explain the freature of HTML​

Answer»

ANSWER:

Alternative Title: hypertext markup language. HTML, in full hypertext markup language, a formatting SYSTEM for displaying MATERIAL retrieved over the Internet