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.

13251.

In programs display how to solve difference of three numbers

Answer»

Answer:

#INCLUDE

INT main () {

int a, b, c;

printf("Enter three numbers:

");

SCANF("%d %d %d", &a, &b,

&c);

int sum = a + b + c;

FLOAT avg = sum / 3.0;

printf("Sum = %d, Average =

%f", sum, avg);

return 0;

}

HOPE IT HELPS

#NAWABZAADI

13252.

आवास्तविक खातों के 4 उदाहरण दीजिए​

Answer»

ANSWER:

वस्तुओं और सम्पत्ति के खाते वास्तविक खाते कहलाते हैं। इन खातों को वास्तविक इसलिए कहा जाता है कि इनमें वर्णित वस्तुएं, विशेष सम्पत्ति के रूप में व्यापार में प्रयोग की जाती है। जैसे मशीन, भवन, माल, यन्त्र, फर्नीचर, रोकड व बैंक आदि के वास्तविक खाते होते हैं।

13253.

फेमा के उद्देश्य को समझाइए​

Answer»

EXPLANATION:

विदेशी मुद्रा प्रबंधन अधिनियम प्रेमा 1999 फेमा का मुख्य उद्देश्य देश की विदेशी मुद्रा संसाधनों का संरक्षण तथा उचित प्रयोग करना था इसका उद्देश्य देश से भारतीय कंपनियों द्वारा देश के बाहर तक भारत में विदेशी कंपनी द्वारा व्यापार के संचालन के कुछ पहलुओं को नियंत्रित करना भी है

13254.

Please give the variable listing of this. ​

Answer»

EXPLANATION:

a

b

c

disc

root1

root2

root

13255.

you need to recommend a solution to resolve the issue of email messages not being received on the internet. what should you include in the solution?

Answer»

ANSWER:

accha

Explanation:

humko to PTA hi NHI THA

13256.

The rectangle shape can be found in shapes gallery true or false

Answer»

ANSWER:

TRUE HOPE it's HELP you and BYE

13257.

इंटरनेट एवं सोशल नेटवर्किंग शिष्टाचार को सामझाएYOUExaminationMail, internet and social networking etiquetteunderstand ?-Mail (E.mailviaudhe) mango's e-mail

Answer»

Answer:

g hi hjgjjkjoi the digits are not send email

Explanation:

ty hahahahhahaha know it will be 3 email notifications is set to you mam please FIND the ATTACHED FILE is scanned image in PDF format the digits of a rational number arithmetic mean that the digits of a rationalfgyu the digits of a rational number is greater than its NUMERATOR by 7 if three SUBTRACTED from the

13258.

What is function ? Type the function name and discuss about two date & time function ?

Answer»

ANSWER:

date

Explanation:

PLEASE GAVE your NUMBER

13259.

What is the basic difference between basicformula and compound formula

Answer»

A formula could just use a SINGLE function. For example, if you enter =AVERAGE(A1:A56) , that is a formula, using the AVERAGE function. compound formula is USED to solve more than 2 expression but but a BASIC formula is used to serve only to expression.

13260.

Why is r-64 required in pretty good privacy?

Answer»

Explanation:

COMPATIBILITY issues: Both the SENDER and the receiver must have compatible versions of PGP. For EXAMPLE, if you encrypt an email by using PGP with ONE of the encryption technique, the receiver has a different version of PGP which cannot read the data.

13261.

Write the steps to add a new colum serial no before student name​

Answer»

Explanation:

CTRL Key + Auto Fill

We can also use the Ctrl key to help us with FILLING a series (sequence) of numbers. Here are the steps to fill the series of numbers: Enter a 1 in the first cell and press Ctrl+Enter to KEEP the cell selected. Press & HOLD the Ctrl key.06-Apr-2017

13262.

Pls helpwrite the output of the following programs in the given boxes :a) i=0while i < 5:print (i)i += 1if i == 3:breakelse:print(0)~ I will mark brainliest ~​

Answer»

ANSWER:

NOIDA: The Noida Authority will extend its urban area by building six new sectors off the Noida-Greater Noida Expressway and has expedited work on acquiring land from villagers. It has CONSTITUTED a TASKFORCE to take over 362 acres for the proposed EXPANSION

13263.

>>>>define combustion

Answer»

EXPLANATION:

COMBUSTION, a chemical REACTION between substances, usually including OXYGEN and usually accompanied by the generation of heat and light in the form of flame.

13264.

A collection of wires that connects several devise is called

Answer»

ANSWER:

SYSTEM bus

Explanation:

13265.

... displays different options grouped together as tabs.

Answer»

Answer:

group tabs I THINK the answer will be grouped tabs but I'm not SURE you MAY READ your BOOK for answer

13266.

What is the use of the tag in HTML?​

Answer»

Answer:

The tag in HTML is used for EMBEDDING external application which is generally multimedia content like audio or video into an HTML document. It is used as a container for embedding plug-ins such as flash ANIMATIONS. This tag is a new tag in HTML 5 and it requires only starting tag.

Explanation:

HOPE it is helpful for you

have a nice day

13267.

हाउ टू add इन वीडियो​

Answer»

ANSWER:

IK pal to uski MAA BAP re to uski

13268.

The ribbon is made up of several tabs which contains blanks of commands

Answer»

ANSWER:

which statement is TRUE the ribbon is MADE up of SEVERAL tab which contain BLANKS command

13269.

Write a program to accept any 20 numbers and display only those numbers which are composite.hint: a numbers said to be composite if it has more than two factors​

Answer»

Answer:

JAVA PROGRAM

import java.util.*;

public class Composite

{

public static void main(String args[])

{

Scanner in=new Scanner(System.in);

int i, J, k, FACTOR;

int n[]=new int[20];

for(i=0;i<20;i++)

{

System.out.print("Enter the NUMBER: ");

n[i]=in.nextInt();

}

System.out.println("The composite nos are: \n");

for(i=0;i<20;i++)

{

k=n[i];

{

factor=0;

for(j=1;j

{

if(k%j==0)

factor++;

}

}

if(factor>1)

System.out.print(n[i]+" ");

}

}

}

Explanation:

OUTPUT YOU CAN PUT ANY NUMBER.

Enter the number: 1

Enter the number: 2

Enter the number: 3

Enter the number: 4

Enter the number: 5

Enter the number: 6

Enter the number: 7

Enter the number: 8

Enter the number: 9

Enter the number: 10

Enter the number: 11

Enter the number: 12

Enter the number: 13

Enter the number: 14

Enter the number: 15

Enter the number: 16

Enter the number: 17

Enter the number: 18

Enter the number: 19

Enter the number: 20

The composite nos are:

4 6 8 9 10 12 14 15 16 18 20

13270.

Is the ablity to learn from past mistake

Answer»

ANSWER:

YES CUZ U know what you do in your next STEP

13271.

Write a Python function splitsum(l) that takes a nonempty list of integers and returns a list [pos,neg], where pos is the sum of squares all the positive numbers in l and neg is the sum of cubes of all the negative numbers in l.Here are some examples to show how your function should work.>>> splitsum([1,3,-5])[10, -125]>>> splitsum([2,4,6])[56, 0]>>> splitsum([-19,-7,-6,0])[0, -7418]>>> splitsum([-1,2,3,-7])[13, -344]

Answer»

ANSWER:

so LONG QUESTION sorry

Explanation:

please mark me as a BRAINLIEST

13272.

A query is the most powerful features of

Answer»

Answer:

The LATEST Zoho Analytics UPDATE brings in the ‘Query over Query’ FUNCTIONALITY, which has been one of the top request from our users. You can now have SELECT queries that combine already existing Query TABLES. Let’s see an example of how this comes in handy. Say you have a Sales table with sales figures for various customers, products, regions etc across years

13273.

Write appiroprate command that are used fora. diractory management(10 commands)b.file management(10 commands)c. disk management(10 command)

Answer»

igtisitototstpsts TS STATS do sts RD YD ydy

13274.

Name the block category is used to create variables in a scratch project?​

Answer»

ANSWER:

you are RIGHT bro

Explanation:

❤❤❤

13275.

Write down the algorithm and flowchart for the equation. 2^4

Answer»

898989898989898989898

13276.

(e) (a 2.05.6) The straight-line method of computing the yearly depreciation of the value of an item is given byWrite a program to determine the salvage value of an item when the purchase price, years of service, and thePurchase price - Salvage valueDepreciation =Years of serviceannual depreciation are given in java program​

Answer»

Explanation:

HELLO guys ❤

happy VALENTINES DAY

oby-xtne-abm

13277.

How many types of accounts (platforms) does Amazon support?​

Answer»

ANSWER:

the modulus operator is USED for

Explanation:

PLZ MARK me as BRAINLIEST

13278.

Prepare an invitation card or greetings card in MS word answer shot type

Answer»

Answer:

1. Open a Blank Document

Open MICROSOFT Word and select a blank document. Use this blank canvas to add your own ideas on what a greeting card can be. You can add photos, shapes, text, Word Art, and even 3D models.

2. Set Up Orientation and Layout

Greeting cards are usually laid out in landscape. Landscape mode WORKS better with images too.

To change the layout from portrait to landscape, go to Ribbon > Layout > Page Setup Group > Orientation > Landscape.

Select Size in the Page Layout Group to choose one of the standard sizes from the dropdown. You can also use a custom size by going to Paper Size at the bottom of the drop-down menu.

3. Balance Everything with Gridlines

You don’t need to stuff your document. White space helps to balance text with graphics. Enable Gridlines and Alignment Guides to align objects on the document with precision. Gridlines are not printed. You can also decide not to use gridlines and instead align everything with your eye.

Go to View > Gridlines.

Select your graphic in the document. Go to the Format tab on the right of the ribbon. For a selected shape, the tab will read Shape Format.

Select Align > Grid Settings. Use the settings to enable the Snap-to feature, display alignment guides, and change the DISTANCE between gridlines.

As this Microsoft Word SUPPORT article says, the Snap To feature only works in Print view.

4. Divide Your Page for the Fold

For greeting cards that fold down the middle, you can divide the page in half. There are different ways to do it Word. For our tutorial, we will use the line shape and place it in the center of the page.

Go to Insert > Shapes > Line. Press the Shift key and draw a vertical line across the middle of the page.

Any new content on the page can nudge this separator. To keep it exactly in the middle, select the Layout Options icon that is suspended above the selected line.

Select Fix POSITION on page. Then, Select See more.

In the Layout settings, fix the position of the line shape by setting the Horizontal and Vertical alignments.

5. Start Adding Your Graphics

It’s time to add graphics that match the theme of the card. Use free stock photos or upload your own to personalize the card. Select Insert > Pictures to insert a picture in your document. Microsoft Word supplies stock images, but it’s always better to go with your own image for a personal touch.

6. Choose Beautiful Fonts

Go to Insert > Text Group. You can select a Text Box to enter text or choose Word Art. As there are several Word Art Styles available, you don’t have to think too much about styling your text.

Alternatively, you have to work with Shape Fill, Shape Outline, and Shape Effects if you opt for plain text.

7. Preview and Print

Your card is ready with its combination of pictures, colors, and text. Proof it on screen first and then print it out on cheap paper. Look for typos in the text and check if every element is lined up correctly.

Pay careful attention to the margins as differences there can affect the final layout. If you are printing a folding card, use the sample to see if the fold is at the right place and doesn’t cut across a graphic or the text.

hope it helps u

#NAWABZAADI

13279.

A how to draw on a square in Tux paint he wants to fill it with red colour Suggest him a tool to complete this task

Answer»

ANSWER:

Stamp

Explanation:

I THINK i WOULD be a RIGHT answer.

13280.

Control + v key combination can be used to

Answer»

USE FOR PASTE DOXC ==CONTROL+ V

13281.

An ______________________ may be word, number, symbol or any combination of these.

Answer»

ANSWER:

CHARACTER is answer DEAR..

13282.

Palmtop computer is also known asA) Tablet PC B) Handled Computer C) Notebook computer D) Personal computer

Answer»

ANSWER:

A MAY be CORRECT answer i THINK

13283.

Define relationship and three types of relationship​

Answer»

Answer:

RELATIONSHIP

Explanation:

There are essentially THREE TYPES of RELATIONSHIPS, and each influence how we LOVE each other and ourselves: traditional, conscious, and transcendent. Each serves its own purpose.

13284.

The modulus operator is used for​

Answer»

Answer:

The MODULUS operator - or more precisely, the MODULO operation - is a way to DETERMINE the REMAINDER of a division operation. Instead of RETURNING the result of the division, the modulo operation returns the whole number remainder

13285.

1. To the little girl who was a figure to be feared and avoidLa) a ghost(b) her mechanical teacher(C) her father(d) her grandmother​

Answer»

Answer:

(B)by her mechanical teacher

Explanation:

PLEASE MARK as BRAINLIEST

13286.

If multiple conditions are used in a single if statement then the testing of those conditions are done a) From Right to Left b) From Left to right c) Randomly d) None

Answer»

Explanation:

Among the VARIOUS options given in question STATEMENT the correct option is the second option. In computer programming the program that the COMPILER sees is from left to RIGHT and from bottom to the END.

When talking specifically about if statement having multiple conditions then each condition is checked from left to right and if all are fine then the program goes inside that if statements

13287.

You cannot insert about in a slideshow

Answer»

EXPLANATION:

When you try to INSERT an MPEG-2 VIDEO into a Microsoft PowerPoint 2013 or 2010 presentation, you receive the FOLLOWING error message

13288.

Match the following with column a and b 1.square2.hexagon3.circle4.text

Answer»

ANSWER:

please \: give \: coloumn \: (b) \: also

13289.

Name two part of ribbon​

Answer»

ANSWER:

LEFT and RIGHT

DUH!!

EXPLANATION:

13290.

Global village discribe with many example

Answer»

ANSWER:

A global village is the idea that people are connected by VARIOUS, convenient modes of TRAVEL, media and electronic TECHNOLOGY and have become a single community. The United States and China are an example of a global village because of their economic ties.

13291.

Name the tool to fill colour in a picture​

Answer»

Answer:

USE Lunapic.com's PAINT Bucket Tool to FILL in areas of an image with color or patterns.

Explanation:

HOPE It HeLp'S UhH ☺

☹SaD BLACK DaY FoR InDiA ('° ---- °') ☹

¹⁴ FÈB ²⁰¹⁹

PLS FLW ME PLS ☹PLS

THANKS =THANKS ☺

जय महाकाल

✌ITZ AbUsiNg QuEeN✌

13292.

Name the three categories of so

Answer»

EXPLANATION:

South India, also KNOWN as Peninsular India, has been known by several other names. The TERM "DECCAN", referring to the area COVERED by

13293.

WHAT DO YOU MEAN BY ETHICAL HACKING..??​

Answer»

Answer:

ETHICAL hacking involves an authorized attempt to gain unauthorized access to a computer system, application, or data. Carrying out an ethical hack involves duplicating strategies and actions of malicious attackers. ... ALSO known as “white HATS,” ethical hackers are security experts that PERFORM these assessments.

Explanation:

Hope this helps you , dear friend !!!!!

Please mark it as "Brainliest" answer .

13294.

What is a wallpaper?​

Answer»

ANSWER:

PAPER that is pasted in vertical strips over the walls of a ROOM to PROVIDE a decorative SURFACE.

13295.

The graphic output area is made up of tiny dots called

Answer»

Monitors, commonly called as VISUAL Display Unit (VDU), are the MAIN OUTPUT device of a computer. It forms IMAGES from tiny dots, called pixels that are arranged in a rectangular FORM.

13296.

Head tag is a mandatory tag

Answer»

Answer:

True

Explanation:

Head is REQUIRED and it should be USED just once. It should start immediately after the opening HTML tag and end directly before the opening body tag.

13297.

Can anybody do this for me please?​

Answer»

ANSWER:

mgh

Explanation:

13298.

व्हाट इज द बेसिक टाइप्स ऑफ ऑपरेटर अवेलेबल इन एमएस एक्सल​

Answer»

a BALL DROPPED from TOP of a building reachs the BOTTOM in 3.42s what is the height of the building

13299.

Which is the default powerpoint standard layout?

Answer»

Answer:

View a Presentation

The first view is the Normal View. In this view, you edit one slide at a time by adding TEXT, graphics and clip ART. This is the default view.

Explanation:

please MARK as brain list answer

13300.

1. What does DBMS stands for?2. What does RDBMS stands for? 3. How is data organized in a RDBMS?4. State the relationship and difference between a primary and foreign key?​

Answer»

Answer:

1 database management system

2 RELATIONAL database management system

3 in the form of rows (RECORDS) and columns(fields)

4 FOREIGN key is the primary key of other table