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.

16301.

What is a file where all the addresses of the recipients are stored​

Answer»

ANSWER:

In my OPINION, It is STORED in a DATABASE

16302.

How will you select a range and non adjacent cell in a worksheet​

Answer»

Explanation:

SELECT the first cell or range of cells, and then HOLD down CTRL while you select the other cells or ranges. You can ALSO select the first cell or range of cells, and then press SHIFT+F8 to ADD another nonadjacent cell or range to the SELECTION. To stop adding cells or ranges to the selection, press SHIFT+F8 again.

16303.

Q25. In a complete k-ary tree, every internal node has exactly k children. The number of leaves in such a tree with n internal nodes is:(a) nk(b) (n—1) k+ 1(c) n(k— 1) + 1(d)n(k— 1)

Answer»

Answer:

The youth of the WORLD is often the most READY to adapt to and learn to use new technologies, and they are certainly at the forefront of social media of all types. They have more technological know-how than many of older generations as well. Social media, therefore, is certainly having a rather large impact on their daily lives for good and for bad.

Those who SPEND too much time on social sites, or who take the abuses of online bullies seriously on the sites could have some issues. For parents, EVEN those of teenagers who are 16 and 17, it is IMPORTANT to watch to make sure that social media sites do not take over the lives of children. When used appropriately, it can be a very good thing.

16304.

Using goto inside for loop is equivalent to using​

Answer»

Answer:

A goto could be equivalent to any of the statements, continue if the target was at the start of the loop, BREAK if the target was just after the loop or return if the target was at the end of the function and the function has a VOID return TYPE.  

I would probably plump for continue as both goto and continue are unnecessary (and CONSIDERED bad practice), whereas both break and return have necessary uses (ALTHOUGH break can be abused).

16305.

What is a web browser​

Answer»

ANSWER:

GOOGLE is a WEB BROWSER

16306.

You want to use an item afteryou remove from what, whichfunction should you use?​

Answer»

ANSWER:

Undo

Explanation:

16307.

2. Fill in the blanks:a. To add a layer you need to click on the__________button.b. To select multiple layers the_____________Key on the keyboard is used.C. The Delete button used to remove a layer is found on the___________d. _____________is used to make the contents of a layer un-editable.e. When you add a new layer Flash automatically creates a frame for you called the___________​

Answer»

ANSWER:

a)NEW layer

b)ctrl

c)timeline

d)lock

e)KEYFRAME

16308.

Which of the following tab has option to work with the mail merge​

Answer»

ANSWER:

Format TAB has the OPTION to WORK with mail merge

16309.

Which group of the design tab is used to change the table style​

Answer»

Table I GUESS I have to CHECK

16310.

Is made up of rows and columns of cells​

Answer»

HOLA MATE

UR ANSWER IS TABLE

16311.

Sound block cointains? ​

Answer»

Answer:

Sound Block™ achieves reduction both in WEIGHT and in thickness of the material WITHOUT DAMAGING the EXCELLENT sound ABSORBING property.

16312.

Write a short note on Analytical Engine.​

Answer»

Analytical Engine, generally considered the FIRST computer, designed and partly built by the English inventor Charles Babbage in the 19th century (he worked on it until his death in 1871). While working on the Difference Engine, a simpler CALCULATING machine commissioned by the British government, Babbage began to imagine ways to improve it. Chiefly he thought about generalizing its operation so that it could perform other kinds of calculations. By the time funding RAN out for his Difference Engine in 1833, he had conceived of something far more revolutionary: a general-purpose computing machine called the Analytical Engine.The Analytical Engine was to be a general-purpose, fully program-controlled, automatic mechanical digital computer. It would be able to perform any calculation set before it. There is no evidence that anyone before Babbage had ever conceived of such a device, let alone attempted to build one. The machine was designed to consist of four components: the mill, the store, the reader, and the printer. These components are the essential components of every computer today. The mill was the calculating unit, analogous to the central processing unit (CPU) in a modern computer; the store was where data were held prior to processing, exactly analogous to memory and storage in today’s computers; and the reader and printer were the input and output devices.As with the Difference Engine, the project was far more complex than anything theretofore built. The store was to be large enough to hold 1,000 50-digit numbers; this was larger than the storage capacity of any computer built before 1960. The machine was to be steam-driven and run by one attendant. The printing capability was also ambitious, as it had been for the Difference Engine: Babbage wanted to automate the process as much as possible, right up to PRODUCING printed tables of numbers.

This MIGHT help you

16313.

What do u mean by python? ​

Answer»

Answer:

Python is an interpreted, object-oriented programming language SIMILAR to PERL, that has gained POPULARITY because of its clear SYNTAX and READABILITY.

16314.

Internet are bane for human ​

Answer»

Answer:

no internet is very IMPORTANT in our life ,life without internet is LIKE anarchy and disorder ,it is the WAY to communicate from one another know their happy and sad moments so internet should be never BANNED in human life

16315.

I am in my office and have a problem in phone signals. What additional hardware will I install?

Answer»

Answer:

you can do these things

1) switch off then on the airplane mode

2) or you can switch off and on your mobile fine

3) or you can switch off and then on your sim card ,by GOING in the setting ( go to sim card management then switch off. then on)

this MIGHT help you a lot

select this as BRAIN list

16316.

How to recover files from Safe folder app​

Answer»

Answer:

DiskDigger® is a tool that undeletes and recovers LOST files from your hard drive, memory CARDS, USB FLASH drives — you name it! WHETHER you accidentally deleted some documents or photos from your computer, reformatted your camera's memory card,

16317.

Write a program in java which will accept 10 numbers in an array and display those numbers which are prime.​

Answer»

Answer:

import java.util.Scanner;

public class PrimeNumbers{

public STATIC void main (String[] args){

int[] array = new int [5];

Scanner in = new Scanner (System.in);

System.out.println("Enter the elements of the array: ");

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

{

array[i] = in.nextInt();

}Elements in the array are LOOPED ONE by one using for loop. for(int i=0; i

boolean isPrime = true;

Using for loop and if condition, prime numbers are identified from all the numbers that are entered in the array. for (int j=2; j

if(i%j==0){

isPrime = false;

break;

}

}

All the prime numbers or the numbers that satisfy the if condition are displayed as output. if(isPrime)

System.out.println(i + " are the prime numbers in the array ");

}

}

}

16318.

Write a program in java to accept 20 numbers in an array and display those numbers which are twin prime.​

Answer»

Answer:

TWIN primes between start and end, we use a for loop with counter i ranging between start and end-2. In each iteration, we check if i and i+2 are primes. If so, we OUTPUT them as twin primes. We fixed the upper limit of i to end-2 because we want only those between start and end. When i is end -2, we check if end -2 and end -2+2 = end are primes. Both these NUMBERS are WITHIN the range. Suppose we take the upper limit as end -1. Then we check if end -1 and end -1+2 = end +1 are twin primes. Num+1 is outside the given range. Therefore, we choose the upper range of i as num-2.

Explanation:

I hope it was correct

16319.

Convert (31)10 into its equivalent hexadecimal number. PLEASE SEND QUICKLY...​

Answer»

Answer: (31)(base 10)=(1F)16

Explanation: To convert a decimal integer into any other number SYSTEM, you just need to KEEP on dividing the number, and the successive quotients, by the base value of the number system until the quotient becomes 0. Then, you simply collect the remainders in reverse order, i.e., the last remainder of your division occurs first.

Take the hexadecimal numbers system for example. It has a base value of 16. In this question, we need to convert 31, a decimal integer, to its hexadecimal equivalent.

On dividing 31 by 16, we get 1 as quotient and 15 as the remainder. Divide the quotient, 1, by 16. You'll get 0 as quotient and 1 as the remainder. You don't need to divide the quotient anymore since you got 0 and that's your stop.

Now, collect the remainders in reverse order. The last remainder comes first, then comes the previous one, and so on. So, we have {1,15}. 15 is represented by F in the hexadecimal system. We obtain the required number, (1F)(base 16).

NOTE that a DIFFERENT process is followed for real numbers, i.e., numbers with a decimal point.

16320.

Components of ms-word

Answer»

Answer:

the COMPUTER have MANY components of ms WORD

16321.

Convert the following decimal number to it equivalent binary. (a)255 (b)126.​

Answer»

Answer:

255-11111111

126-1111110

HOPE IT HELPS

16322.

What are special characters? How can you insert them in a document?

Answer»

Answer:

☑️Special CHARACTERS

EXPLANATION:

Special characters are special FORMATTING character which are applied in documents for better formatting they are not any text , Symbol etc.

↕️Example -- # , @ , * , _ , €, ¥ , ¢ , £

☑️To insert Special characters in Ms word DOCUMENT follow mentioned steps

➡️Place the cursor where you want to insert special character in document.

➡️Click on Insert tab

➡️Select Symbol from Symbol group. Select More Symbols option

➡️The symbols dialog box will appear . There click on special characters tab.

➡️Double-Click the character which you want to insert and click Insert button

➡️Click CLOSE | ❌ |to close symbol dialog box

➡️Special character has applied in documents successfully

16323.

Plz solve by quadratic equation formula x/x+1 + x+1/x = 13/6​

Answer»

Answer:

The solution set is { -3 , 2 }

Explanation:

Since we are given that,

x/x+1 + x+1/x = 13/6

Lets say,

x/x+1 + x+1/x = 13/6 ----------- equation 1

First we have to reduce it to standard form i-e, ax2+bx+C = 0

=>  multiplying both sides of eq 1 by ( x+1) , we get

= x + x+1(x+1)/x = 13/6 (x+1) ----------equation 2

=>now, multiplying both sides of eq 2 by x, we get

= x2 + x+1( x+1) = 13x/6 (x+1)

= x2 +x2+2x +1 = 13x2/6 + 13x/6

= 2X2 + 2x + 1 = 13x2 + 13x/6 ----------- equation 3

=> now multiplying both sides of eq 3 by 6. we get,

= 12x2 +12x + 6 = 13x2 + 13x

Now, subtracting terms of left hand sides on both sides to make it equal to zero.

=> 12x2 + 12x + 6 - 12x2 - 12x - 6 = 13x2 + 13x - 12x2 - 12x - 6

= 0 = x2 + x - 6

Rearranging the above equation.

=> x2 + x - 6 = 0 -------- equation 4.

So finally its a standard form of quadratic equation. Now comparing the values.

so here, a = 1 , B = 1 and c = -6

Quadratic Formula:    

x = -b+-√b2-4ac/ 2a

by putting the above values and ONE step calculation you will get these values.

x = -1 +-√1+24/2

x = -1 +- 5/2

so this MEANS,

x = -1 +5/2  or -1 -5/2

x =   4/2      or  -6/2

x =    2        or   -3

Result:

Hence the solution set is { -3 , 2 }

illustrations:

*  13/6 (x+1) means 13 /6 multiply by (x+1).

*  x2 means x square.

* 13x2/6 means 13x square with denominator 6

* Similarly, 12x2 means 12x square.

Hope this Answer the Question.

P.S: Sorry, but I myself like detailed answers. :)

16324.

निम्न में से किस 'मैमोरी' में सबसे कम ‘एक्सेस टाइम' रहता है?(A) कैशे मैमोरी(B) मैग्नेटिक बबल मैमोरी(C) मैग्नेटिक कोर मैमोरी(D) रैम​

Answer»

ANSWER:

RAM .................................

16325.

When using the Jupyter Notebook and a code block, what triggers the interpreter to begin evaluating the block of code?

Answer»

ANSWER:

JULIET is the answer for this a

16326.

Tell me some sites that teach python​

Answer»

BYU juce ISP if so TCP do do do do SQ UQ to

16327.

What the computer shortcut key ctrl+alt+del do

Answer»

EXPLANATION:

It is use to terminate an APPLICATION TASK or to reboot the operating SYSTEM

16328.

Write the sequence of steps to take attendance of your class​

Answer»

ANSWER:

OPEN excel

write NAME and ROLL no

take ATTENDANCE

16329.

Pls ans this question.....​

Answer»

ANSWER:

i don't KNOW ❤❤❤❤

but ❤❤❤❤❤

and GIVE ⭐⭐⭐⭐⭐

16330.

Which is better,loading 4 cpus or loading 1 cpu in boot in an i5 laptop?​

Answer»

ANSWER:

LOADING 1 CPU in BOOT .......

16331.

Name the major foreign currency symbols available in Microsoft Excel 2010.​

Answer»

The major foreign currency symbols available in Microsoft excel are EURO, dollar, and Yen.

Explanation:

The most common found foreign currency symbols for MS-Excel 2010 are as FOLLOWS:

Euro: This currency SIGN is “€”. It is the currency of the European country. This currency is used in 19 member states of the European Union.

Dollar: The symbol of this currency is “$”. It is an official currency of 20 countries.

Yen: The symbol of this currency is “¥”. It is the JAPANESE currency.

16332.

Yaay riddle timeRiddle:Ice melts when heated up. But I solidify when I'm heated up. What am I?

Answer»

ANSWER:

An egg

Please MARK as BRAINLIEST.

16333.

HeyaRiddle:What element is not on the periodic table?no idiots allowed

Answer»

Answer:

It MIGHT be

the letter J but the ANS is CONFUSING....

16334.

Wap in Java to accept marks of 10 subjects of a student in an integer array and display them from highest to loowest marks along with the students name. Use selection sort technique for arranging the marks.

Answer»

ANSWER:

import JAVA . util . *;

class PRO

   {

       PUBLIC static void main(String args[])

       {

           Scanner sc=new Scanner(System . in);

           int marks[]=new int[10];

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

           {

               System . out . println("Enter the marks");

               marks[i]=sc . nextInt();

           }

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

           {

               for(int j=i;j<10;j++)

               {

                   if(marks[i]>marks[j])

                   {

                       int temp=marks[i];

                       marks[i]=marks[j];

                       marks[j]=temp;

                   }

               }

           }

           System . out . println("Highest marks = "+marks[0]);

           System . out . println("Highest marks = "+marks[9]);            

       }

   }

16335.

Riddle:Ice melts when heated up. But I solidify when I'm heated up. What am I?

Answer»

Explanation:

The letter "J" is the only ONE not found on the PERIODIC table.

In some COUNTRIES (e.g., Norway, POLAND, Sweden, Serbia, Croatia), the element iodine is known by the NAME jod. However, the periodic table still uses the IUPAC symbol I for the element.

16336.

Explain why the Central Processing Unit is referred to as the brain of the computer

Answer»

Answer:

because all the inputs from the device to comes to it and it PROCESSES the information and sends the output to the DIVICE and EVERYTHING is stored it which help in the functioning of the PC .....

PLZ mark it brainlist ......

16337.

Write down the syntax with reference to Java programming to accept an integral value 'p' through Stream Class

Answer»

Write down the syntax with reference to Java PROGRAMMING: To accept an INTEGRAL value 'p' through Stream class. To accept a fractional value (float) 'm' through Scanner class. To accept a CHARACTER 'd' through Stream class. To accept a fractional value 'n' in DOUBLE data TYPE through Stream class.

16338.

What is behavioural segmentation in consumer behavior?

Answer»

Answer:

Explanation:

Behavioural Segmentation in consumer behavior is a marketing strategy based on actual consumer BUYING behaviour.

It divides the MARKET into GROUPS of CUSTOMERS according to their knowledge of attitude towards USE of or response to a product.

Behavioural Segmentation divides and targets customers according to their behaviour.

It has four characteristics as follows (also shown in Picture)

(1) Usage,

(2) Loyalty,

(3) Occasion,

(4) Benefits.

.

vote as 5 star and mark Brainliest to this answer.

16339.

Write the mysql command to increase the capacity by 5% for the destination ABC

Answer»

ANSWER:

SORRY don't KNOW the answer

16340.

what are the control and status signals asserted by 8085 to enable the memory buffer in opcode fetch?

Answer»

answer:-

There are four main control and status signals. These are:

address latch enable. This signal is a pulse that become 1 when the AD0-AD7 LINES have an address on them it becomes 0 after that this signal can be used to enable a latch to save the address bit from the AD lines.

RD:Read.Active law indicate that the data must be read from the selected memory location or I/O port via data bus.

WR: Write.Active law indicate that the data must be return into to the selected memory location aur or I/O port via data bus.

IO/M- this signal SPECIFY whether the operation is memory operation (IO/M=0)

this signal specify whether the operation is memory operation (IO/M=0)or an I/o=operation (lO/1=1)

SI & S0- status signal to specify the kind of operation wing PERFORMANCE usually and use in small system.

thankyou

I hope you have satisfied

please follow me .

16341.

Create a function called swap ( ) that interchanges the values of two arguments sent toit. Make the function a template function sothat it can be used with any numerical data type.​

Answer»

ANSWER:

the SWAP PROGRAM LOGIC is

a=b;

b=c;

c=a;

16342.

1 picometre/1 nanometer=10^x then what is value of x​

Answer»

ANSWER:

X = -3 is the CORRECT answer

16343.

Explain briefly about the different option of viewing a slide

Answer»

ANSWER:

The views in POWERPOINT that you can use to EDIT, print, and deliver your presentation are as follows:

1.Normal view.

2.Slide Sorter view.

3.NOTES Page view.

4.Outline view (Available in PowerPoint 2016 for Mac and newer versions)

5.Slide Show view.

6.Presenter view.

7.Master views: Slide, Handout, and Notes.

16344.

Write a computer program to find whether a number is an armstrong number or not using scanner​

Answer»

HOPE it HELPS!!!!!

#sumedhian ❤❤

16345.

Ethical hacking assignment 3

Answer»

Answer:

What is an ethical hacking

Explanation:

ethical hacking is a LEGAL work that if a PERSON TELL the boss that your system is hacked from this path

the legal way to ENTER into other system for his /her help

16346.

Essay on all love is expansion all love is contraction​

Answer»

All love is expansion and all selfishness is contraction:

When a person lives, he THINKS of the happiness and COMFORT of his loved one, before himself and this makes the thinking if that person to be more about his lived ones and not just about himself.

Love is that feeling, which increases as much we share it or spread it and that is why, the more a person spreads love, the more he will think about the ones he loves and this he thinking will increase and this will ALSO expand his approach of love.

Being selfish on the other hand brings the feeling of only loving and caring about oneself and PUTTING oneself before anyone else. Thinking of a selfish person always REVOLVES around himself, and such a person can not think of anyone else's happiness or comfort before his own.

Such behaviour of selfish person contracts and narrows his thinking capability and makes him confined to himself.

16347.

Write an algorithm for table of 2​

Answer»

Explanation:

PSEUDOCODE & Algorithm Example 1: WRITE an algorithm to determine a ... ALGORITHM STEP 1: Input VALUE1, VALUE2 Step 2: if (VALUE1 > ... Verify your result by a TRACE table.

16348.

Why do we need a constructor as a class member​

Answer»

ANSWER:

we NEED constuctor to the CLASS because he knws how to GIVE shape and the size to the class

16349.

Q) how many control buttons are there on the title bar in the application Window ? write their names and uses ?​

Answer»

Answer:

The title bar, located along the top of a window and it is USED to close, minimize, maximize, and move the application window.

Explanation:

Minimize program button

Located on the far right side of the Title Bar, this left button leaves the program open but moves the program out of desktop VIEW. Look for the program icon on your status bar along the bottom of your desktop.

Maximize program button

Located on the far right side of the Title Bar, this middle button expands the program to a full screen. Click the button again (restore) to RETURN to its ORIGINAL size.

Restore program button

When the program is maximized, this icon appears in the middle of the three buttons located at the end of the title bar, and shrinks the program window so that it doesn't fill the WHOLE computer screen.

Close program button

Located on the far right side of the title bar, this right button closes the program.

16350.

Write an algorithm to check input number is even or odd​

Answer»

EXPLANATION:

ANSWER is in the above ATTACHMENT