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.

2301.

1. what is the purpose of using HTML2. what are the uses of HTML 3. what do you mean by web page?4. What is the difference between webpage and Notepad document.

Answer»

I ANSWER you all QUESTION by SEND a PIC

2302.

How many types of application software and system software are there

Answer»

HI FRIEND.

There are two main types of software: systems software and application software..

Systems software INCLUDES the programs that are dedicated to managing the computer itself, such as the operating system, file management utilities, and disk operating system (or DOS).

Application software, or simply applications, are often called productivity programs or end-user programs because they ENABLE the user to complete TASKS, such as CREATING documents, spreadsheets, DATABASES , etc.....

I HOPE I HELPED YOU..

PLEASE MARK IT AS BRAINLIST IF IT'S HELPFUL . ....

2303.

Write about digital ups

Answer»

These are good application for learning of world wide ...
I think BOOKS are best but these are only BETTER...they can't take place of book...

2304.

Any two features of mail merge

Answer»

allows USERS to personalize letters with NAMES and address from a database.

we can easily prepare individual letters to many.

2305.

Please I request you to help me In f) 50 points

Answer»

EXPLANATION:

  1. WIKIPEDIA is a free, multilingual open-collaborative online encyclopedia created and maintained by a COMMUNITY of volunteer editors using a wiki-based EDITING SYSTEM. Wikipedia
2306.

Answer the following question what is animation?

Answer»

An ANIMATION is illusion of movement CREATED by SHOWING SERIES of STILL pictures in rapid succession.

2307.

What is the full form of wi fi and lifi?

Answer» WIFI STAND on. ( wireless FIDELITY,)

lifi. (LIGHT Fidelity)
2308.

What is the full form of MRI?

Answer» MAGNETIC RESONANCE IMAGING
2309.

Answer only if you know the answer if you don't know the answer so please don't answer the questions because tomorrow is my exam and if have to write correct answer.Q 1)a,b,c all three

Answer»

The ANSWER of B is MOTION

2310.

Convert the decimal into binary equivalent: 172.12

Answer»

172.12=17.212×10=1.7212×100=1721.2×1/10

2311.

Describe various storage units . complete answer .

Answer» COMPUTER - Memory Units. Memory unit is the amount of data that can be stored in the STORAGE unit. This storage CAPACITY is expressed in terms of Bytes. A binary digit is logical 0 and 1 representing a passive or an active state of a component in an electric circuit.Computer data storage, OFTEN called storage or memory, is a technology consisting of computer components and recording media that are used to retain DIGITAL data. It is a core function and fundamental component of computers.
2312.

Write an ALP to separate two nibbles of 8 bit numbers is stored in mL 2900H. Multiply these two nibbles and stores result at D000H starting with LSB.

Answer» HELLO! ! !

Hey my dear FRIEND here is your answer ___________

ASSEMBLY language program which u NEEDED is in the above pic.

check it out....

_________________

HOPE THIS ANSWER WILL HELP U....

@Neha
2313.

write an ALP that multiply two 8 bit hex numbers are stored in memory locations c005H and c006H store the two bytes result in consecutive memory location starting from c00H.

Answer»

Hello! ! !

Hey my DEAR friend here is your answer ___________

ASSEMBLY language PROGRAM which U NEEDED is in the above pic.

check it out....

_________________

HOPE THIS ANSWER WILL HELP U....

@Neha...

2314.

write an AlP to separate two nibbles of 8 bit numbers is stored in ML 1500H. Add these two nibbles and store the sum in mL BABAH location.

Answer» HELLO! ! !

Hey my DEAR FRIEND here is your answer ___________

Assembly language program which u NEEDED is in the above pic.

check it out....

_________________

HOPE THIS ANSWER WILL HELP U....

@Neha
2315.

In Java pattern based question when to print J and went to print I

Answer»

Pattern 1 : Printing Floyd’s TRIANGLE pattern

Floyd’s triangle is a right-angled triangular array of natural numbers.

It is named after Robert Floyd.

It is defined by filling the rows of the triangle with consecutive numbers, starting with a 1 in the top left corner.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

 

 

package com.topjavatutorial;

 

public class FloydTriangle {

 

    public static void main(String[] args) {

        int i, j, k = 1;

        for (i = 1; i <= 5; i++) {

            for (j = 1; j < i + 1; j++) {

                System.out.print(k++ + " ");

            }

 

            System.out.println();

        }

    }

 

}

 

 

Pattern 2 : Printing Pascal’s triangle Pattern

Pascal’s triangle is a triangular array of the binomial coefficients.

It is named after Blaise Pascal.

The triangle may be constructed in the following manner: In ROW 0 (the topmost row), there is a unique nonzero entry 1. Each entry of each subsequent row is constructed by adding the number above and to the left with the number above and to the right, treating blank entries as 0.

             1            1   1          1   2   1        1   3   3   1      1   4   6   4   1

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

 

 

package com.topjavatutorial;

 

public class PascalTriangle {

 

    public static void main(String[] args) {

 

        int n = 5;

 

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

            int number = 1;

            System.out.printf("%" + (n - i) * 2 + "s", "");

            for (int j = 0; j <= i; j++) {

                System.out.printf("%4d", number);

                number = number * (i - j) / (j + 1);

            }

            System.out.println();

        }

 

    }

 

}

 

 

Pattern 3 : Diamond shape composed of Star(*)

    *    ***   ***** ******* ********* *******   *****    ***     *

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

 

 

package com.topjavatutorial;

 

public class DiamondPattern {

 

    public static void main(String[] args) {

        int number, i, k, count = 1;

        number = 5;

        count = number - 1;

        for (k = 1; k <= number; k++)

        {

            for (i = 1; i <= count; i++)

                System.out.print(" ");

            count--;

            for (i = 1; i <= 2 * k - 1; i++)

                System.out.print("*");

            System.out.println();

        }

        count = 1;

        for (k = 1; k <= number - 1; k++)

        {

            for (i = 1; i <= count; i++)

                System.out.print(" ");

            count++;

            for (i = 1; i <= 2 * (number - k) - 1; i++)

                System.out.print("*");

            System.out.println();

        }

    }

}

 

 

 

Pattern 4 : Diamond shape composed of Numbers

   1   212 32123 4321234 32123   212    1

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

 

 

package com.topjavatutorial;

 

public class DiamondPattern {

 

    public static void main(String[] args) {

        for (int i = 1; i <= 4; i++)

        {

            int n = 4;

            for (int j = 1; j <= n - i; j++)

            {

                System.out.print(" ");

            }

            for (int k = i; k >= 1; k--)

            {

                System.out.print(k);

            }

            for (int l = 2; l <= i; l++)

            {

                System.out.print(l);

            }

            System.out.println();

        }

        for (int i = 3; i >= 1; i--)

        {

            int n = 3;

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

            {

                System.out.print(" ");

            }

            for (int k = i; k >= 1; k--)

            {

                System.out.print(k);

            }

            for (int l = 2; l <= i; l++)

            {

                System.out.print(l);

            }

            System.out.println();

        }

    

    }

}

 

 

 

Pattern 5 : Diamond shape composed of Alphabets

Enter a Char between A to Z : G       A      B B     C   C    D     D   E       E F         F G           G F         F   E       E    D     D     C   C      B B       A

please mark me as brainliest
and follow me

2316.

Write an ALP to separate two nibbles of 8 bit numbers is stored in ML 6A29H Add these two nibbles and multiply these two nibbles and stores result at ffffH.

Answer»

Hello! ! !

HEY my dear FRIEND here is your answer ___________

Assembly LANGUAGE program which U NEEDED is in the above pic.

check it out....

_________________

HOPE THIS ANSWER WILL HELP U....

@Neha

2317.

A block of data is stored in memory block from D000H to D00FH write an ALP to shift the data content of block in reserve order is short from D100H.

Answer»

Hello! ! !

Hey my dear FRIEND here is your answer ___________

Assembly language program which U NEEDED is in the above pic.

check it out....

_________________

HOPE THIS ANSWER WILL HELP U....

@NEHA

2318.

write an Assembly language program to transfer first 10 bytes of memory block starting from 5000H to onwards to a new location is starting from 5020H and onwards.

Answer» HELLO! ! !

Hey my DEAR friend here is your ANSWER ___________

Assembly language program which u NEEDED is in the above pic.

check it out....

_________________

HOPE THIS ANSWER WILL HELP U....

@Neha
2319.

In java pattern based questions which side is taken I And which is taken J PLEASE TELL

Answer»

I REFERS to no. Of ROWS and J is the no
Of COLUMNS

2320.

How many units in a computer sytem?

Answer» 3 units
☆☆☆HOPE YOU FIND MY ANSWER USEFUL☆☆☆
2321.

How to learn python in hindi explain

Answer» SEE TUTORIALS on YOUTUBE about PYTHON
2322.

Write about 15 lines on my self

Answer»

My SELF TO1. My NAME is ram. 2.My FATHER name is Mr. Rahul. 3.My mother name is Mrs. Rita. 4. l live in Haryana.5. l am seven year old. 6.My hobby is reading BOOKS.

2323.

Plzz match it ... u will be marked as BRAINIEST

Answer»

HI,


CUI------------------------------- DOS

GUI--------------------------------Windowa 7

Arrow-----------------------------Restart

Ctrl+Alt+Del--------------------Shortcut


Hope it will HELP you.



2324.

In this questions12 13 2 14 3 2 15 4 3 2 1which is I or a and which is J or b row

Answer»

Hi,



1 ------------> this is I or a (ACTUALLY it is a ROW)

21 ------------> this is J or B (actually it is b row)

321

4321

54321

2325.

What is animation..............

Answer»

An animation is illusion of movement CREATED by SHOWING series of STILL pictures in RAPID SUCCESSION.

2326.

What is the full form of pdf ?

Answer» PORTABLE DOCUMENT FORMAT
2327.

Can anyone please share me the information to write about new year in ppt

Answer»

Answer:

STEP1 : right click the mouse and take the ARROW mark to new OPTION and click power point presentation.

step2: You will have a power point presentation in your screen , and OPEN it .

STEP3: then you will have a text written as click to add first slide , click it

That's it . Hope it helped You. Wish you a advanced New year

2328.

System:04. imagine an Al-controlled nuclear missile centre. The centre has been designed to automaticallydeploy the weapon in case of need. What are the ethical problems that can emerge from this​

Answer»

Explanation:

IMAGINE an Al-controlled nuclear missile CENTRE. The centre has been designed to automatically

deploy the weapon in case of NEED. What are the ETHICAL problems that can EMERGE

2329.

Draw a flowchart in Microsoft Word to buy stationery from the market

Answer»

EXPLANATION:

here is your ANSWER

I HOPE it will HELP you

2330.

bhavan nitin Mumbaidarshnartham agchat pitar prati likhit patra manjushay pradte uchitpade puryitva sun likhat ​

Answer»

EXPLANATION:

BHAVAN nitin Mumbaidarshnartham agchat pitar prati likhit patra manjushay pradte uchitpade puryitva SUN likhat

2331.

Which features in GIMP Resolves problem associated flash photograph?​

Answer»

Answer:

Maybe the image is overexposed or UNDEREXPOSED; maybe ROTATED a bit; maybe out of focus: these are all common problems for which GIMP has GOOD tools.

Explanation:

mark as BRAINELIST

2332.

Write the syntax for if-else-if conditional statement.​

Answer»

Answer:

The If-ELSE statement

The general form of if-else is as follows: if (test-expression) { TRUE block of statements } Else { FALSE block of statements } Statements; N this TYPE of a construct, if the value of test-expression is true, then the true block of statements will be executed.

2333.

Write the output of gollowing statements? "HELLO WORLD"​

Answer»

ANSWER: C code to print "HELLO World"

#include

INT main()

{

   printf("Hello World");

 //I HATE Cricket please don't hate me

}

2334.

Who ever answer I will mark them as a brain list to be continued​

Answer»

ANSWER:

MENTION QUESTION CLEARLY

2335.

D)group contains the Select button.​

Answer»

ANSWER:

where is the QUESTION?????????????

2336.

You can use_______ Tom make a report​

Answer»

ANSWER:

Your QUESTION is not FULL

PLEASE GIVE full question

2337.

Try to find out the properties of each type of fabric (cotton, wool, polyester etc)​

Answer»

Answer:

Explanation:

Cotton fibers - are natural HOLLOW fibers; they are soft, cool, known as breathable fibers and absorbent. Cotton fibers can hold water 24–27 times their own weight. They are strong, dye absorbent and can stand up against abrasion wear and high temperature. In one word, cotton is comfortable

Polyester -  is very durable and is resistant to many chemicals.

This is a POPULAR fabric in the fashion industry, as it is resistant to shrining and stretching.  

The fibers used to create Polyester are very strong yet lightweight.

The fibers are easily dyed.

WOOL - fibers can ABSORB large quantities of moisture vapor then move it away to evaporate into the air. Wool clothing is extremely breathable and less prone to clamminess. Odor resistant — in contrast to synthetics, Merino wool can absorb moisture vapor, which means less sweat on your BODY.

2338.

Please answer this question please its urgent​

Answer»

ANSWER:

MAY be OPTION (B) GETCH( )

2339.

User will leave in few days ​

Answer»

ANSWER:

ok but why users will LEAVE its a vreate app for STUDIES

2340.

What is the capital of europe​

Answer»

ANSWER:

BRUSSELS is the CORRECT answer HOPE it HELP you

2341.

1.what is computer?Ans.A computer is a fast electronic devices that accept information stores it processes it and produced ruselt. computer are used in everyday life and the areas in which they can be uses are unlimited. ​

Answer»

ANSWER:

YES UR answer is CORRECT

2342.

. What is Text Penal?​

Answer»

Answer:

test PENAL is a MANO CHROME text and graphical penal where people and machines work together.

Explanation:

PLEASE mark me brainlist

2343.

List the elements of QBasic​

Answer»

ANSWER:

this is your QUESTION answer

2344.

........................... is a set of related instructions to do a specific task.​

Answer»

MS POWERPOINT...........

2345.

Unscramble the word GRATSOAE​

Answer»

ANSWER:

STORAGE

STAY SAFE

MARK ME AS BRAINLIEST

2346.

& True or fakeNormal view is divided in 3 sectes​

Answer»

ANSWER:

I think true

EXPLANATION:

HOPE it HELPFUL to you

2347.

Write steps to switch backdrops on stage?​

Answer»

Answer:

Backdrop - Scratch Wiki

13-Dec-2020 — The STAGE can change its look to any of its backdrops using the Switch Backdrop to () BLOCK. They can be named, EDITED, CREATED, and

2348.

Please tell answer please it's very very very much urgent.... it's the last question please​

Answer»

THIRD one

Explanation:

PLS FOLLOW me and MARK as BRAINLIEST

2349.

A___ displays data changes over a period of timeclass 6 computer / it​

Answer»

Answer:

A line GRAPH DISPLAYS data that changes CONTINUOUSLY over periods of time.

Explanation:

HAPPY LEARNING ☺️

2350.

Make a program to do an multiplication calculation using scratch ​

Answer»

ANSWER:

hope its helpful please mark as BRAINLIST