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.

1951.

Find two numbers whose sum is 28 and product is 180say​

Answer»

HI MATE

here is your ANSWER ......

HOPE it HELPED you^ω^❤

1952.

Write a java program to display the following pattern using loop: # #* #*# #*#* #*#*#

Answer»

all is WELL with me so SUB

1953.

The ...................... tab contains most of the properties you work with.LookupGeneralFile​

Answer»

ANSWER:

GENERALS is RIGHT answer.

Explanation:

I HOPE I HELP you

okkkkk

1954.

creat a class to print area of square and rectangle the class has two methods but different number of parimeters the method of printing area of rectangle is length and breath respectevly while oter area of printing area of square which has one paremeter wich is side square computer​

Answer»

ANSWER:

a+=b

a=a+b

a=20+20

a=40

Explanation:

PLEASE MARK ME AS A BRAINLIEST

1955.

) If the value of a = 20 and b = 20, then a+=b will assign ________ to a a) 40 b) 30 c) 20 d) 10

Answer»

EXPLANATION:

c

please MARK me as BRAINLIEST

1956.

what are the different types of Loops(looping statement im java) write their name with an example (syntax) of each​

Answer»

Answer:

Loops in Java

Looping in programming languages is a feature which facilitates the execution of a set of instructions/functions repeatedly while some condition evaluates to true.

Java provides three ways for executing the loops. While all the ways PROVIDE similar basic functionality, they differ in their syntax and condition checking time.

while loop: A while loop is a control flow statement that allows code to be EXECUTED repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement.

Syntax :

while (boolean condition)

{

  loop statements...

}

Flowchart:

while loop

While loop starts with the checking of condition. If it evaluated to true, then the loop body statements are executed otherwise FIRST statement following the loop is executed. For this reason it is also called Entry control loop

Once the condition is evaluated to true, the statements in the loop body are executed. NORMALLY the statements contain an update value for the variable being processed for the next iteration.

When the condition becomes false, the loop terminates which marks the end of its life cycle.

filter_none

edit

play_arrow

brightness_4

// Java program to illustrate while loop  

class whileLoopDemo  

{  

   public static VOID main(String args[])  

   {  

       int x = 1;  

 

       // Exit when x becomes greater than 4  

       while (x <= 4)  

       {  

           System.out.println("Value of x:" + x);  

 

           // Increment the value of x for  

           // next iteration  

           x++;  

       }  

   }  

}  

Output:

Value of x:1

Value of x:2

Value of x:3

Value of x:4

for loop: for loop provides a concise way of writing the loop structure. Unlike a while loop, a for statement consumes the initialization, condition and increment/decrement in one line thereby providing a shorter, easy to debug structure of looping.

Syntax:

1957.

Do i have a chance to view recordings of other user if i am a paid user of zoom

Answer»

ANSWER:

Yeah it's true............

1958.

1. You are given the following relational schema Employee(ename, street, city, salary, deductions) Works(ename, branch-name) Deputation(ename, org-name, returning date) Branch(branch-name, city) Manages(ename, manager-name) Write relational algebra expressions to answer the following queries: a)Retrieve the details of employees whose deductions are less than 10% of their salaries. b)Retrieve the details of branches located in Mumbai. c)Retrieve the details of employees whose deductions are less than 10% of their salaries and who live in Hyderabad. d)Retrieve the details of employees whose salary is 10,000 or deductions are 5,000 but all of whom live in Mumbai. e)Find the names of all employees. f) Find the names of all those employees who work for the branch ABC. g)Retrieve the names of employees whose deductions are less than 10% of their salaries. h)Find the names of employees

Answer»

ANSWER:

ऊ ए ऐ ओ भैया को फिर से एक है

1959.

Which function's return type is boolean value

Answer»

Answer:

Bool Functions. The name of this function is isSingleDigit. It is common to give boolean functions names that SOUND like yes/no questions. The return type is bool, which means that EVERY return statement has to provide a bool EXPRESSION.

1960.

To write the formula to be given in E5 which displays the highest value from the data present in column D, from 1st row to 4th row which function is used? (Note : text and logical values should be considered)

Answer»

div {width: 100px;height: 100px;background-color: red;position: relative;animation-name: example;animation-duration: 4s;animation-iteration-count: 3;}@keyframes example {0% {background-color:red; left:0px; top:0px;}25% {background-color:yellow; left:200px; top:0px;}50% {background-color:blue; left:200px; top:200px;}75% {background-color:green; left:0px; top:200px;}100% {background-color:red; left:0px; top:0px;}}ABHISHEK....

Arc reacterbody { margin: 0; } .fullpage-wrapper { width: 100%; height: 100vh; background: radial-gradient(#353c44, #222931); display: flex; } .reactor-container { width: 300px; height: 300px; margin: auto; border: 1px dashed #888; position: relative; border-radius: 50%; background-color: #384c50; border: 1px solid rgb(18, 20, 20); box-shadow: 0px 0px 32px 8px rgb(18, 20, 20), 0px 0px 4px 1px rgb(18, 20, 20) inset; } .reactor-container-inner { height: 238px; width: 238px; background-color: rgb(22, 26, 27);; box-shadow: 0px 0px 4px 1px #52FEFE; } .circle { border-radius: 50%; } .abs-center { position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; } .core-inner { width: 70px; height: 70px; border: 5px solid #1B4E5F; background-color: #FFFFFF; box-shadow: 0px 0px 7px 5px #52FEFE, 0px 0px 10px 10px #52FEFE inset; } .core-outer { width: 120px; height: 120px; border: 1px solid #52FEFE; background-color: #FFFFFF; box-shadow: 0px 0px 2px 1px #52FEFE, 0px 0px 10px 5px #52FEFE inset; } .core-wrapper { width: 180px; height: 180px; background-color: #073c4b; box-shadow: 0px 0px 5px 4px #52FEFE, 0px 0px 6px 2px #52FEFE inset; } .tunnel { width: 220px; height: 220px; background-color: #FFFFFF; box-shadow: 0px 0px 5px 1px #52FEFE, 0px 0px 5px 4px #52FEFE inset; } .coil-container { position: relative; width: 100%; height: 100%; animation: 3s infinite linear reactor-anim; } .coil { position: absolute; width: 30px; height: 20px; top: calc(50% - 110px); left: calc(50% - 15px); transform-origin: 15px 110px; background-color:#073c4b; box-shadow: 0px 0px 5px #52FEFE inset; } .coil-1 { transform: rotate(0deg); } .coil-2 { transform: rotate(45deg); } .coil-3 { transform: rotate(90deg); } .coil-4 { transform: rotate(135deg); } .coil-5 { transform: rotate(180deg); } .coil-6 { transform: rotate(225deg); } .coil-7 { transform: rotate(270deg); } .coil-8 { transform: rotate(315deg); } @keyframes reactor-anim { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

1961.

The unique colour or pattern which identifies a data series, is known as __________.

Answer»

Answer:

The legend identifies each DATA series in a chart. Each data series is ASSIGNED a unique colour or pattern to DIFFERENTIATE one data series from another.

MArk as BRAINLEST.....

1962.

_______________is a computer network created for an individual person.​

Answer»

Answer:

personal AREA NETWORK is a computer network that is MAINLY created for an individual person hope you GET your answer if you don't mind then follow me

1963.

.Yukti has been asked to create a web page giving the followingdefinitions from her computer science syllabus:• Hardware• Software• Complier• Interpreter​

Answer»

ANSWER:

\huge\fbox{\color{red}{Sorry dear:-}}

1964.

Write ten formatting commands of page layout.

Answer»

ANSWER:

sudo su / IFCONFIG / CLEAR / EXPLOIT / help

1965.

2.A device that is used for1 poinconverting printed documents orphotos into electronic format is called aAnswer:​

Answer»

ANSWER:

scanner KAHTE HAI usko agar ye AAPKI kuchh madad kare to PLEASE mujhe brainiest bana dijiye

1966.

How to open thesaurus​

Answer»

ANSWER:

just CLICK on it

FOLLOW me

1967.

1. How will you add an image to your web page? Explain with syntax.​

Answer»

Explanation:

Identify the image you want to use. .

..

y. ...

..

  • Put your image in the RIGHT place.

...

.

  • Use the tag to indicate the image.

...

  • containing the image.
1968.

Write a Java program to store the modulus of every element of array A [ ] with 7 in array B[ ]. Print the elements of array B[ ]. Also display the sum of those elements divisible by 7. (Array A [ ] consists of 5 elements).Sample input - 35 53 70 40 14 Output - 0 4 0 5 0Sum of elements divisible by 7 : 119

Answer»

Answer:

Step by step DESCRIPTIVE logic to count duplicate elements in array.

Input size and elements in array from user. ...

Initialize another VARIABLE count with 0 to store duplicate count.

To count total duplicate elements in given array we NEED two loops. ...

Run another inner loop to find first duplicate of current array element.

Explanation:

// C++ implementation of finding all k

// such that arr[i]%k is same for each i

#include

using namespace std;

// Prints all k such that arr[i]%k is same for all i

void printEqualModNumbers (int arr[], int n)

{

// sort the numbers

sort(arr, arr + n);

// max difference will be the difference between

// first and LAST element of sorted array

int d = arr[n-1] - arr[0];

// CASE when all the array elements are same

if(d==0){

cout<<"Infinite solution";

return;

}

// Find all divisors of d and store in

// a vector v[]

vector v;

for (int i=1; i*i<=d; i++)

{

if (d%i == 0)

{

v.push_back(i);

if (i != d/i)

v.push_back(d/i);

}

}

// check for each v[i] if its modulus with

// each array element is same or not

for (int i=0; i

{

int temp = arr[0]%v[i];

// checking for each array element if

// its modulus with k is equal to k or not

int j;

for (j=1; j

if (arr[j] % v[i] != temp)

break;

// if check is true print v[i]

if (j == n)

cout << v[i] <<" ";

}

}

// Driver function

int main()

{

int arr[] = {38, 6, 34};

int n = sizeof(arr)/sizeof(arr[0]);

printEqualModNumbers(arr, n);

return 0;

}

1969.

২. যেকোন সাতিট প্রশ্নের উওর২.১ উটের RBC-এর বৈশিষ্ট্য লেখাে।১ ১ অনিকমকল কীভাবে জননে সাহায্য করে ? উদাহরণm০।​

Answer»

ANSWER:

SORRY I can't understand the language so I can't answer the QUESTION

1970.

State the use of monitor in Windows Movie Maker ? ​

Answer»

Answer:

The Preview Monitor includes CONTROLS you can USE to preview the movie you're WORKING on in the Timeline or STORYBOARD, or individual clips in the Collections Area. The Timeline and the Storyboard are the two windows you will use to arrange video clips, still images, and transitions into a movie.

1971.

Write the resultant array after 3 pass of Bubble sort: { 34, 76, 12, 89, 22, 66, 3}

Answer»

ANSWER:

In each step, ELEMENTS written in bold are being compared. Three passes will be required; First Pass

Explanation:

Complexity Analysis of Bubble Sort

Hence the TIME complexity of Bubble Sort is O(n2). The MAIN advantage of Bubble Sort is the simplicity of the algorithm. The space complexity for Bubble Sort is O(1), because only a single additional memory space is required i.e. for temp variable.

1972.

Can u pls explain briefly what is ethical hacking in your own words​

Answer»

Explanation:

ethical  \: hacking

  • Ethical Hacking is an authorized practice of bypassing SYSTEM SECURITY to identify potential data breaches and threats in a network. ... Ethical hackers aim to investigate the system or network for weak POINTS that MALICIOUS hackers can exploit or destroy.
1973.

Tell me fast I will mark as brainleast​

Answer»

ANSWER:

| DONT KNOW this answer

1974.

Please tell I.T. Apps book exercises

Answer»

ANSWER:

BRAINY is BEST okkkkkkk

1975.

Write the resultant array after 3 pass of Bubble sort: [1]{ 34, 76, 12, 89, 22, 66, 3}

Answer»

ANSWER:

{12, 22, 34, 3, 66, 76, 89}

EXPLANATION:

First pass : {34, 12, 76, 22, 66, 3, 89}

SECOND pass : {12, 34, 22, 66, 3, 76, 89}

Third pass : {12, 22, 34, 3, 66, 76, 89}

1976.

A company wants to set target for each of the four regions (EAST, WEST , NORTH and SOUTH). The company allots the following percentage target for each region.East 15% West 25% North 30% South 30%Write a program to pass through command line parameters, the total target amount proposed by the company and print out the breakup of the target for each region.​

Answer»

ANSWER:

Can't write a PROGRAM

Explanation:

PLEASE tell in which LANGUAGE should I write the program.

1977.

Fast fast fast guys​

Answer»

Answer:

ans 3 ]CONTROL unit

Explanation:

PLEASE MARK as brainliest

1978.

Cr(en)3)C13सकुल का IUPAC नाम लिखिए ​

Answer»

Answer

C13 = Tris(ethane-1,2-diamine)CHROMIUM(III) CHLORIDE 

Captain America Shieldhtml, body {background:#0846A8;height: 500px;}.container {width:100%;height: 100%;display: flex;justify-content: center;align-items: center;}.circle {border-radius: 50%;display: flex;flex-direction: row;justify-content: center;align-items: center;border:1px solid #000;}.outer-lv3 {background-image: linear-gradient(#870000,#FF4040,#870000);height: 260px;width: 260px;-webkit-animation: turning 8s infinite linear;animation: turning 8s infinite linear;}@-webkit-keyframes turning {0% {transform: rotate(0deg)}100% {transform: rotate(360deg)}}@keyframes turning {0% {transform: rotate(0deg)}100% {transform: rotate(360deg)}}.outer-lv2 {background: #fff;background-image: linear-gradient(#DBD9D9,#FAFAFA,#DBD9D9);height: 210px;width: 210px;}.outer-lv1 {background-image: linear-gradient(#870000,#FF4040,#870000);height: 150px;width: 150px;}.center {background-image: linear-gradient(#0846A8,#277AFF,#0846A8);height: 100px;width: 100px;border-radius: 50%;position: relative;overflow: hidden;border:1px solid #000;}.arrow {border-top: 35px solid #EDE8E8;border-bottom: 48px solid rgba(0,0,0,0.0);border-left: 48px solid transparent;border-right: 48px solid transparent;position: absolute;height: 0;width: 0;}.top {top: 35px;left: 2px;}.left {transform: rotate(72deg);top: 16px;left: -24px;}.right {transform: rotate(-72deg);top: 16px;left: 25px;}

HOPE it helps you ....

MARK my answer as brainliest...

1979.

Explain the use IT in every day life​

Answer»

Other examples of IT systems include the internet, mobile PHONE systems, broadcast radio and TV systems, but IT is essential to many other day-to-day activities. Consider for EXAMPLE a VISIT to a supermarket. Checkout staff use an IT system to scan BAR codes and OBTAIN prices.

1980.

Tell me guys fast plz​

Answer»

ANSWER:

it's your TEST do it by your own

don't CHEAT

1981.

7) Calculate the total size of the given arrays: [2]i) char ch [ ] = { ‘a’ , ‘A’, ‘b’, ‘B’}; ii) double num[ ] = {2.6, 5.9, 9.0};

Answer»

ANSWER:

Input the number of elements to store in the array :3

Input 3 number of elements in the array :

element - 0 : 2

element - 1 : 5

element - 2 : 7

Expected OUTPUT :

The values store into the array are :

2 5 7

The values store into the array in reverse are :

7 5 2

1982.

A professor with two assistants, Jamie and Drew, wants an attendance list of the students, in the order that they arrived in the classroom. Drew was the first one to note which students arrived, and then Jamie took over. After the class, they each entered their lists into the computer and emailed them to the professor, who needs to combine them into one, in the order of each student's arrival. Jamie emailed a follow-up, saying that her list is in reverse order. Complete the steps to combine them into one list as follows: the contents of Drew's list, followed by Jamie's list in reverse order, to get an accurate list of the students as they arrived.

Answer»

Answer:

def combine_lists(list1, list2):

# Generate a new list containing the elements of list2

# FOLLOWED by the elements of list1 in REVERSE order

new_list = list2

for i in reversed(range(LEN(list1))):

new_list.append(list1[i])

return new_list

Jamies_list = ["Alice", "Cindy", "Bobby", "Jan", "Peter"]

Drews_list = ["Mike", "CAROL", "Greg", "Marcia"]

1983.

What is python?????????? ​

Answer»

python is an INTEGRATED high-level general PROPOSE PROGRAMMING LANGUAGE .

\huge \bf \red{thanks}

1984.

Can u briefly explain in your own words what is Ethical hacking​

Answer»

The Certified ETHICAL Hacker (C|EH) CREDENTIALING and training PROGRAM provided by EC-Council is a respected and trusted ethical HACKING program in the industry. SINCE the inception of Certified Ethical Hacker in 2003, the credential has become one of the best options for industries and companies across the world.

Thanks ❤️❤️❤️

1985.

SNS stand for in digital literacy​

Answer»

\huge \bf \red{answer}

SOCIAL NETWORKING SERVICE

1986.

Evaluate Math.random(10);

Answer»

ANSWER:

SURAT GUJARAT and bihgs2580=9842+655

1987.

What will be the java output of the given function wheninvoked?public void show()long num = 234455, sum = = 0;do{sum *= 10;long y = num % 10;sum += y;num /= 10;} while(num != 0);System.out.println("The Output = " + sum);}​

Answer»

ANSWER:

SUM *= 10;

long y = NUM % 10;

sum += y;

num /= 10;

} while(num != 0);

1988.

What is the full form of NOIDA​

Answer»

ANSWER:

Here is UR answer dude :-

NOIDA - New OKHLA Industrial Development Authority

Explanation:

HOPE IT HELPS YOU

JAI HIND

1989.

कहलाने एकत बसत, अहि,मयूर, मृग, बाघ​

Answer»

ANSWER:

यह बसन्त न खरी अरी गरम न सीतल बातु।

कहि क्यौं प्रगटैं देखियतु पुलकु पसीजे गातु॥561॥

खरी = अतयन्त। अरी = ऐ सखी। बातु = हवा। कहि = कहो। प्रगटैं = प्रत्यक्ष। पुलकु = रोमांच। पसीजे = पसीने से लथपथ।

यह वसन्त ऋतु है। अरी सखी, न इसमें अत्यन्त गर्मी है और न (अत्यन्त) ठंडी हवा! कहो, फिर तुम्हारे पसीजे हुए-पसीने से लथपथ-शरीर में पुलकें प्रत्यक्ष क्यों दीख पड़ती हैं?

नोट - गर्मी से पसीना निकलता है और सर्दी में रोंगटे खड़े हो जाते हैं। प्रीतम के साथ तुरत रति-समागम करके आई हुई नायिका में ये दोनों ही चिह्न देखकर सखी परिहास करती है।

1990.

Which of these is an internet based communication technology a)Radio b)twitter c)CDMA d)GSM

Answer»

Answer:

Twitter is the answer here....hope it helps.

Hey it's to clear your doubts about other options,I thought to write down

Alright,

CDMA (Code Division Multiple Access) and GSM (Global System for Mobiles) are shorthand for TWO older RADIO systems USED in CELL phones.

And Radio is basically not Internet based obviously..

1991.

1 What is output of following program code?System.out.println( a + d );System.out.println( b + c);System.out.println( a + b );char a == 'x';int c = 4;int b = 2;char d = 'y';System.out.println( c + d );​

Answer»

This will be your output:

4y.

Note!

If U have DECLARED all the variables before the 3 printing statements then the o\p will be:

Xy

24

X2

4y

1992.

Pls give this answer fast enybody​

Answer»

Answer:

1) 1) SMITH

2) ANYA

3) SETH

4) MAHADEVAN

5) MOMIN

6) BINA

7) SHIVANSH

8) SCOTT

9) AMIR

10) KULDEEP

2).

MARK this as BRAINLIEST PLEASE

1993.

H. What doyoumean by sparkline? Explain the three types of sparklines.lication based questions​

Answer»

Answer:

Sparklines are tiny charts PLACED in SINGLE cells, each REPRESENTING a row of data in your selection.

They provide a quick way to SEE trends.

Hope it will be helpful ✌️

1994.

What is Wireless Fidelity?How is it different from other networks?

Answer»

Explanation:

Wireless networks ENABLE multiple DEVICES to use the same internet connection remotely, as well as SHARE files and other resources. ... There are also DISADVANTAGES to wireless networks, however, especially when you compare them with wired networks, which GENERALLY maintain a faster internet speed and are more secure.

1995.

What is the network topology????​

Answer»

ANSWER:

CONNECTING TWO or more DEVICES with a NETWORK...

1996.

\ a document them is a collection of formatting options such as aset of colors a set of heading and content text fonts, and a set of lines and fill effects True False

Answer»

ANSWER:

FORMATTING text.

Explanation:

I THINK it will be HELPFUL to you.

1997.

Hello My 32 Gb pen drive got a issue while transferring files from laptop to pen drive. It was remove inbetween and on reconnecting again it was showing to format it and the space in it was reduced to 64 mb . If you can find a solution please tell. Note that the data shouldn't be lossed in the process. Pls help

Answer»

Answer:

HELLO THERE

Explanation:

FIRST CLICK ON UR PEN DRIVE THEN SEE WHICH THING TAKING THAT MUCH OF SPACE

THEN DELETE IT

OR

FORMAT THE PEN DRIVE IF YOU HAVE THAT FILE IN UR LAPTOP OR TAKE AND OTG CABLE AND PASTE UR IMPORTANT THINGS IN UR PHONE BY OTG

1998.

Name some of the unique software and solutions which are related to domain of AI .

Answer»

ANSWER:

any disk

Explanation:

for SHARING SCREEN

1999.

332 binary to hexadecimal conversion​

Answer»

HEY MATE UR ANSWER is

14C

hope it helps U

2000.

What are the peculiarities of the hardware that arehidden from its user

Answer»

Computer hardware includes the physical parts of a computer, such as the case, central PROCESSING unit (CPU), monitor, mouse, keyboard, computer data storage, graphics card, sound card, speakers and MOTHERBOARD. By contrast, software is the set of instructions that can be STORED and run by hardware.