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.

19751.

Draw the Logic Circuit for the following Boolean Expression: AB + (( A+B’ )B)’​

Answer»

te a Boolean expression for a logic GATE circuit

⚫Begin with the INPUTS A and B. ..

.

⚫Next look at input C. ...

⚫These EXPRESSIONS are joined up by the gate in the GREEN area, which is an AND gate, resulting in Q, EQUALS, left bracket, A, plus, B, right bracket, dot, left bracket, start overline, C, end overline, dot, A, right bracket,Q=(A+B)⋅(C⋅A).

19752.

SECTION D- LONG ANSWER QUESTIONS Q27. What are the peculiar features of Nazi thinking?Q28. Name different types of Vegetation found in India and describe the vegetation of highaltitudes.Q29. Explain the powers of President of India.d29.Q30. Describe the government strategy of poverty alleviation?Q31. Are the following statements in keeping with democracy s a value? Why?a. Father to daughter: I don't wanat to hear your opinion about your marriage. In our familychildren marry where the parents tell them tob. Teacher to student: Don't disturb my concentration by asking me question in theclassroomC. Employee to the officer : Our working hours must be reduced according to the law.​

Answer» BIO..

but DOUBT SPELLING is WRONG....XD

19753.

SharinaireDatePage No.to set and change computer Name.​

Answer»

ong>Answer:

In Online transaction processing (OLTP), information systems typically facilitate and manage transaction-oriented applications.

The term "transaction" can have two different meanings, both of which MIGHT apply: in the realm of COMPUTERS or database TRANSACTIONS it denotes an atomic change of state, whereas in the realm of BUSINESS or finance, the term typically denotes an exchange of ECONOMIC entities (as used by, e.g., Transaction Processing Performance Council or commercial transactions.

19754.

Write a program to find​

Answer» ER:

PRINT("1")

print("12")

print("123")

print("1234")

print("12345")

This is the ANSWER please mark this as brainliest

19755.

Write a program to calculate the total number of character(INCLUDE SPACES, EXCEPT VOWELS) in a string entered by user.​

Answer» ONG>Answer:

Program:-

import java.util.*;

public class Demo

{

public static void main(String ARGS[ ])

{

Scanner in=new Scanner(System.in);

int c=0,p;

String ST;

char ch;

System.out.println("Enter a String");

st=in.nextLine();

p=st.length();

for(int i=0;i

{

ch=st.charAt(i);

if(ch=='A'||ch=='E'||ch=='I'||ch=='O'||ch=='U'||ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')

{

continue;

}

else

c++;

}

System.out.println("The NUMBER of Characters and spaces="+c);

}

}

Refer to the attachment:-

  • The first photo is the program.
  • The second photo is the input.
  • The third photo is the output.

Explanation of input:-

I love BLUEJ

  • 1st space
  • 2nd l
  • 3rd v
  • 4th space
  • 5th B
  • 6th L
  • 7th J

19756.

નીચે પૈકી કયો એલિમેન્ટ પુસ્તકનું ચિત્ર, ચલચિત્ર વગેરે જેવા મહત્ત્વના લખાણને રજૂ કરે છે ?​

Answer»

दुहतनतहनुगदुगतुगतुगतपगतपतगपरूबिबरुरकवदहुहदवरतनकह

19757.

Find the syntax error(s) if any: [2,3,4,5,6]=x y [2,6,4,7,9} for in range(0,5) x[i]=i z[i]=i+3 y==z x=y print(x[i]) print(z[i]​

Answer»

Explanation:

In [1]: L = range(1000) ... LEN(a). 4. 2-D, 3-D, …: >>> >>> b = np.array([[0, 1, 2], [3, 4, 5]]) # 2 x 3 array. >>> b ... a. array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]). >>> b = np.arange(1, 9, 2) # start, end (EXCLUSIVE), ... extract_from_a = a[mask] # or, a[a%3==0].

19758.

Write a program to print the sum of two numbers .​

Answer»

ong>EXPLANATION:

Program : C Program to FIND sum of TWO NUMBERS

#include

int main() {

int a, b, sum;

printf("\nEnter two no: ");

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

sum = a + b;

printf("Sum : %d", sum);

return(0);

19759.

Attributes are specified inside the end tag1)true 2)false​

Answer» ONG>ANSWER:

FALSE is the RIGH answer

19760.

________communicating done by orraly​

Answer» ONG>ANSWER:

ORAL communication implies communication through mouth.

19761.

You can change background colour of the form using ______tool​

Answer» ONG>ANSWER:

CHANGE COLOUR tool

Explanation:

19762.

The text align property can take the value justfy1)true2)false​

Answer» ONG>ANSWER:

true

this is the answer for the QUESTION

19763.

Explain C character set with examples​

Answer»

ong>ANSWER:

YEAST are used in ___

a) Baker

b) WINE and beer industry

c) In both

d) NONE of these

19764.

Write the purpose of online chatting.​

Answer» ONG>ANSWER:

NOTHING it helps people to KNOW each other from long distances

19765.

Write down the use of  “ \n ” , “ // ”   and   “ ; ” in C++ . ​

Answer»

ong>Explanation:

' \n' is known as NEWLINE operator and it is used to print output in next or new LINE.

' ; ' is known as statment TERMINATOR and used to terminate statments when we give input to compiler.

19766.

Only two windows can be active at a time . true / false​

Answer» ONG>ANSWER:

hiihiiiiiiiiiiiiiiiiiiiiii

19767.

What do you mean by the terms: program, algorithm and flowchart?​

Answer»

ong>Answer:

The algorithm and FLOWCHART are TWO types of tools to EXPLAIN the process of a program. ... An algorithm is a step-by-step analysis of the process, while a flowchart EXPLAINS the steps of a program in a graphical way.

19768.

Define a class IncomeTax and input the pan number, name, taxincome. Calculate and display the income tax as per the slab given below. Slab to calculate income tax: Total Annual Taxable income Tax Rate Upto 1,00,000 no tax From 1,00,001 to 1,50,000 10% of the income exceeding 1,00,000 From 1,50,001 to 2,50,000 5000+20%of the income exceeding 1,50,000 Above 2,50,000 25,000+30% of the income exceeding 2,50,000 java program

Answer»

ong>Answer:

DEFINE a class IncomeTax and INPUT the pan number, NAME, taxincome. Calculate and display the income tax as per the slab GIVEN below.

Slab to calculate income tax:

Total ANNUAL Taxable income Tax Rate

Upto 1,00,000 no tax

From 1,00,001 to 1,50,000 10% of the income exceeding 1,00,000

From 1,50,001 to 2,50,000 5000+20%of the income exceeding 1,50,000

Above 2,50,000 25,000+30% of the income exceeding 2,50,000

java program

19769.

9.Queries can be created using _______or________​

Answer» ONG>Answer:

can we BECOME friends if you don't have any problem

19770.

External object that provided input or output for the computer? in short answer​

Answer» ONG>ANSWER:

INPUT or out PUT is same in my own

19771.

IV. WRITE AS VALID OR INVALID :1. int x,y;float c;c=x/y;​

Answer» ONG>EXPLANATION:

the ANSWER of the QUESTION is vaild

19772.

For every do clause, there must be a corresponding.[a] For[b] While [c] If [d] Else

Answer» ONG>ANSWER:

C, if is the answer my FRIEND

19773.

The headig element define four levels of heading1)true2)false​

Answer» ONG>Answer:

true

EXPLANATION:

please mark it as BRAINLIEST

19774.

The data type for 12.16 should befloatintsrt​

Answer» ONG>Answer:

float is the answer

Explanation:

because it has DECIMAL POINT

19775.

Class = 60 students.25% injuries20% PlayingHow many students arein clas​

Answer» ONG>Explanation:

33

STUDENTS ARE IN THE CLASS

19776.

मदद करनारा- शब्द समूह मराठी ​

Answer»

नहीं इस भाषा का अंग्रेजी में अनुवाद किया जाए

19777.

2 Which function finds the largest number in a range?​

Answer»

ong>Explanation:

=MAX(A2:A7) Largest NUMBER in the RANGE

19778.

Rule to interconnect computers and to communicate data? in short answer​

Answer» ONG>Answer:

Using the Internet, computers connect and communicate with one another, primarily using the TCP/IP (Transmission Control Protocol / Internet Protocol). Think of TCP/IP as a BOOK of rules, a step-by-step guide that each computer uses to KNOW how to TALK to another computer.

19779.

Write any 5 advantages of E-commerce.l​

Answer»

ong>Explanation:

Low OPERATIONAL costs and better quality of services. No need of PHYSICAL company set-ups. Easy to start and MANAGE a business. Customers can easily SELECT PRODUCTS from different providers without moving around physically.

19780.

There is a description in forms after sumbitting a form how should I remove it?

Answer»

ong>Answer:

⚫Method 1 – Set Up an Editing LINK

Open the Goógle Form you need. Click on the Settings icon to the left of the large “Send” button in the UPPER right CORNER of the document. When the new window pops up, check the “Edit after submit” box to create the edit link. Hit “Save.”

19781.

Find the syntax error(s) if any: [2,3,4,5,6)=xy (2,6,4,7,9)for in range(0,5)x[i]=iz[i]=i+3y=-Zx=yprint(x[i])print(z[i]​

Answer» ONG>Answer:

sorry i dont know the ANSWERS REALLY really sorry dear if i will give the answer if that answer will be incorrect U will only face problem

19782.

Write down the syntax of three loop statements of C++​

Answer»

ong>ANSWER:

Statement 1 sets a variable before the loop starts (int i = 0). Statement 2 defines the condition for the loop to run (i must be less than 5). If the condition is TRUE, the loop will START over again, if it is FALSE, the loop will end.

19783.

Rule to interconnect computers and to communicate data​

Answer»

ong>Answer:

Example 2 Write an EQUATION equivalent to. 4x- 2-3x = 4 + 6. by COMBINING like terms and then by adding 2 to each MEMBER. Combining like ...

19784.

Consider the function below function []=diagram ()x=0:0.01:1;y=3. *x;plot (x, y, '*')The function returns(a) Continuous plot of y versus x(b) Continuous plot of x versus y(C) No values are returned(d) Plot of x versus y as*​

Answer»

ong>EXPLANATION:

draw a LINE y and x Axis and SHIW in the pic

19785.

Which type of chart display data in the form of a circle​

Answer» ONG>ANSWER:

UMMM... A PIE CHART I guess

19786.

HTML ¼t»tt yu þu™t …hÚte Q‚he ytðe Au ?​

Answer» ONG>ANSWER:

what?~~~~~~~~~~~~~~~~~~#

19787.

What is the statement used to print on the HTML paint of JavaScript​

Answer» ONG>Answer:

this is wrong question please don't ask this TYPE of question please MARK as BRAINLIST

19788.

Computer The notification area formally called the dash​

Answer» ONG>ANSWER:

The notification area is a part of the taskbar that provides a temporary SOURCE for notifications and status. It can also be used to DISPLAY icons for system and program features that are not on the DESKTOP. The notification area was known historically as the system tray or status area.

19789.

__________allow users to record different task or action on same type of data. 6.A. FormulasB. FunctionsC. MacrosD. Charts​

Answer»

ong>ANSWER:

charts

Explanation:

charts will USE different task and as same TYPE of DATA

19790.

___________ is useful to change width of column. a) EditColumnWidth c) Tools Column Width b) Format Column Width d) Insert ColumnWidth​

Answer» ONG>ANSWER:

B GOOD answer

19791.

29. Which of the following command is used to compile myprogram.c file written in gedit?A gre nyprogram.cB. gedit myprogram.cC.myprogram.c geditD. myprogram.c gcc​

Answer»

ong>Answer:

c

Explanation:

plz MARK me as branliest and THANK to my answer

19792.

The mouse should be kept on a __________​

Answer» ONG>Answer:

The MOUSE should be KEPT on a mouse PAD

19793.

Used to make freehand drawings

Answer» ONG>ANSWER:

ouDDUOuroadyauadoarurulauykraradai

19794.

Name the highlighted part of MS Word 2010 Window.​

Answer»

ong>EXPLANATION:

FILE UNDO REDO ARE OPTIONS IN HIGHLIGHTED PART

19795.

Column head is designed using which tag?​

Answer»

ong>EXPLANATION:

The

TAG defines a HEADER cell in an HTML table.
19796.

Write a program to find the factorial of a number in python​

Answer»

Answer:

The given códe is written in Python 3.

n=int(input("Enter a number: "))

F=1

for i in range(2,n+1):

f=f * i

print("Factorial:",f)

LOGIC:

  • Enter the number, say n.
  • INITIALISE f = 1
  • Loop through numbers in the range - 2 to n.
  • Multiply f with each numbers in the range.
  • RESULT obtained after termination of loop equal to the factorial of the number.
  • Display the factorial.

See the ATTACHMENT for output.

•••♪

19797.

3. 4.I.FILL IN THE BLANKS(10*1=10)1. Network means connections between more than2.-manages all the activities of the network.--is used to connect the computers between---is defined as network of networks.5.--helps to enter the address of the website.6.----- is the way for computers to communicat7. Self learning is an application internet in-8. HTML is the revised version of ---- sections.9. Every HTML program will haveadditional information given to a​

Answer» ONG>Answer:

FOLL.. OW.. me.. please..

19798.

Xxll. A ------ is some information which can be used as a tag for data. a. Nameb. Labelc. Categoryd. Section​

Answer»

ong>Answer:

In HTML, whenever you NEED to assign some custom information to some DATA which you wish to DISPLAY on your webpage, in that case, you can use tag. For example, if you have an ecommerce website, or you have a shop page in your website where you LIST some products.

19799.

Ab+((a+b')b') in logic circuit​

Answer» ONG>EXPLANATION:

hwisvskbz

xbxksjsoam X ankanBN x

U££-

19800.

Border, cellspacing, cellpadding and align are the attributes of?​

Answer» ONG>Answer:

bdnj bag VXV BAD for him and his is in my head is pounding on the NUMBER for a