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.

26501.

To print the name amina 10 timesusing while loop please help me guys

Answer» SEE the DESCRIPTION
26502.

Which statement is used for making decisions based on comparison in computer​

Answer»

if  and if_else STATEMENT are  used to make DECISIONS BASED on comparison in computer​ programming languages.Explanation:

26503.

Write a C program that prints the following patterns separately, one below the other. Use nested For-loop to generate the patterns. 1 1*3 1*3*5 1*3*5*7 1*3*5*7*9 1*3*5*7*9 1*3*5*7 1*3*5 1*3 1 1*3*5*7*9 1*3*5*7 1*3*5 1*3 1

Answer»

check out "WE THE COMPUTER GUYS" videos it will help YOUAND if thats not enough check his/her more videosExplanation:hope it helpedplz mark me as the brain-li-es-t

26504.

Rewrite the following code fragments : (a) using for loop x=50 while (x>0): print(x) x-=3 (b) using while loop for x in range(5,23): if x%3 ==0: print(x)

Answer»

python language.Explanation:a) for x in RANGE(50,0,-3): print xb) x=5while(x<23): if(x%3==0): print x x = x+1Please let me know if you want to UNDERSTAND ANYTHING.

26505.

एचडीएफसी कॉइन सेलिब्रेशन दिला इनकरेक्ट है संदीप एक्सप्रेस करेक्ट एस्केप सीक्वेंस रिप्रेजेंटेबल हाउ मेनी कैरेक्टर्स ​

Answer»

can you please write the QUESTION in ENGLISH form in the comments ?EXPLANATION:i didnt understand

26506.

Q.Explore and list the steps required to type in an Indian language using UNICODE

Answer»

An Indian languages, the most popular ones now are Unicode fonts which are free. The NUMBER of fonts in Unicode is LIMITED, i.e. the number of font faces are limited. Whereas in English you have many font faces (e.g. Times Roman, ARIAL, Vardana etc). Unicode fonts have GAINED popularity SINCE 2005 or 2006.Explanation:hope it helpsplz mark me as the brainliest

26507.

2. Can we enter data in a table in Design view?(b) No(a) Yes​

Answer»

Your CORRECT ANSWER is OPTIONAL a YES

26508.

can i have kips information technology vocational class 10 textbook pdf of all chapters plzz will mark brainliest

Answer»

Can you REPEAT your QUESTION again I couldn't UNDERSTAND it SORRY

26509.

Write a C program that generates the following series. 1, -23, -45, -67, -89, -10

Answer» INT main() { int a=1,b=3,c=4,d,i,N; SCANF("%d",&n); PRINTF("%d %d %d ",a,b,c); for(i=4;i<=n;i++) { d=a+b+c; printf("%d ",d); a=b;  b=c; c=d; } RETURN(0); }
26510.

You can rename a new worksheet by double clicking on it in the _____ tab​

Answer»

tion:I THINK YOUR ANSWER CAN BE HOME TAB HOPE IT HELPS.......

26511.

Same letter to a number of people. Tick (/) the correct and Cross (X) the wrong ones.Mail Merge is useful only when there are less than ten letters to be sent.You cannot print envelopes and labels​

Answer»

e. MAIL merge can be used to send letters to more than 10 PEOPLE. 2) FALSE. Envelopes and labels can be PRINTED.

26512.

to print the name amina 10 times using for and while loop separately upload the program with output plss help me .Guys it is very urgent

Answer» SORRY PLZ ELABORATE plz
26513.

डिजिटलकैमरा और स्कैनर को समझाइये​

Answer»

I KNOW the answer but first MARK me as brainliest PLEASE

26514.

Why only transistors are used in circuit boards why not anything else?

Answer» TRANSISTOR is a semiconductor device USED to amplify or switch electronic signals and electrical power. ... Because the CONTROLLED (output) power can be higher than the CONTROLLING (INPUT) power, a transistor can amplify a signalExplanation:i think it may help you
26515.

3.code is decimal number to represent a character.4. Each individual component of​

Answer»

this QUESTION again PLEASE

26516.

Given a numeric positive integer field with a maximum theoretical value of 100, which values would you use to verify that it works correctly?

Answer»

can be GIVEN

26517.

Transitor switch are used to manipulate the binary. true or false ​

Answer»

hiExplanation:TRUEhope it is CORRECT and HELPS U ☺️❤️❤️

26518.

The function(s) of schedular is(are) * 1. it is waiting for an event to occur before continuing execution2. it selects which ready process is to run next3. it specifies the time slice4. All above​

Answer»

My BROTHER Have A YOUTUBE Channel. Channel Name: ASTROSM Please SUPPORT Him. Simply Search on YouTube ASTROSM.Explanation:My Brother Have A YouTube Channel. Channel Name: ASTROSM Please Support Him. Simply Search on YouTube ASTROSM. I don't WANT to Disturb But he was very sad please SUBSCRIBE And Support Him.

26519.

Implement the DDA algorithm to draw a line from (0, 0) to (7, 7)?

Answer»

S-2: m=(7-0)/(7-0) = 7/7 which is EQUAL to 1. S-3: As m EQUALS to 1 (m=1) therefore x will be increased by 1 and y will be incremented by m. S-4 : The step will be x1=x1+1 and y1= y1+1. This would be a 45 degree line where x and y both have equal incremented value

26520.

7. To change the various parameters of the page, just click on the ____________________ on the taskbar in writer

Answer»

The Control Panel is a component of MICROSOFT Windows that provides the ABILITY to view and change system settings. It consists of a set of applets that include adding or removing hardware and software, controlling user accounts, changing accessibility options, and accessing networking settings. Additional applets are provided by third parties, such as AUDIO and video drivers, VPN tools, input devices, and networking tools.The Control Panel has been part of Microsoft Windows since Windows 1.0,[1] with each successive version introducing new applets. Beginning with Windows 95, the Control Panel is implemented as a special folder, i.e. the folder does not physically exist, but only contains shortcuts to various applets such as Add or REMOVE Programs and Internet Options. Physically, these applets are stored as .cpl files. For EXAMPLE, the Add or Remove Programs applet is stored under the name appwiz.cpl in the SYSTEM32 folder.

26521.

Search on google memz tro and download it.. free access to everything >:D

Answer» DONT KNOW........ ...........
26522.

Implement a function that receives an array of integers "arr" and an integer "int", which returns the number of occurrences of element "int" in array "arr". For instance, given arr = [2,3,4,3,2,1] and int=3, the function should return 2.

Answer»

Given a sorted ARRAY arr[] and a number x, WRITE a function that counts the occurrences of x in arr[]. EXPECTED time complexity is O(LOGN)Examples: Input: arr[] = {1, 1, 2, 2, 2, 2, 3,}, x = 2 Output: 4 // x (or 2) occurs 4 TIMES in arr[] Input: arr[] = {1, 1, 2, 2, 2, 2, 3,}, x = 3 Output: 1 Input: arr[] = {1, 1, 2, 2, 2, 2, 3,}, x = 1 Output: 2 Input: arr[] = {1, 1, 2, 2, 2, 2, 3,}, x = 4 Output: -1 // 4 doesn't occur in arr[]

26523.

Tips to make an effective presentation are: a) ________________________________________________________ ________________________________________________________ b) ________________________________________________________ ________________________________________________________ c) ________________________________________________________ ________________________________________________________ d) ________________________________________________________ ________________________________________________________ e) ________________________________________________________ ________________________________________________________

Answer»

tion:Top Tips for Effective PresentationsShow your Passion and Connect with your AUDIENCE. ...Focus on your Audience's NEEDS. ...Keep it Simple: Concentrate on your Core Message. ...Smile and Make Eye Contact with your Audience. ...Start Strongly. ...Remember the 10-20-30 RULE for SLIDESHOWS. ...Tell STORIES. ...Use your Voice Effectively.

26524.

Binary fraction to decimal​

Answer»

To convert binary FRACTION to decimal, START from the RIGHT with the total of 0. Take your current total, add the current digit and divide the result by 2. Continue until there are no more DIGITS left. Here is an example of such conversion using the fraction

26525.

I by mistake hacked someone's computer please tell me what to do?? i am very scared....

Answer» NOTHING to worryExplanation:just TURN your vpn and SIT and relax BRO.
26526.

elise has just edited two photos of her cat and three different photos of her dog. she needs to save all five of these photos into the same folder. which of these sets of file names will allow her to recongize all of the photos without having to open them

Answer»

Categorizing each photo by cat and dog name and using a set of numbers to identify the order in which they were SHOT, edited or to identify the date of each photoExplanation:Two CLEVER WAY to organize the photos would be:-*Categorizing each cat and dog photo with the name "Cat" for the cat photos and "Dog" for the dog photos and after that including the date when the picture was taken. - Still use the cat and dog name for the photo to identify if it is a cat or a dog photo, and include the numbers 1 to 3 on the dog's photos and 1 and 2 on the cat's photos according to the order in which they were shoot instead of the date.

26527.

Layers kya hai ?Aap web page per layers kaise lagaate hai.​

Answer»

e the TABS which ADD on the web page.....I guess...PLZZZ follow me ALSO mark as brilliant..plzzz

26528.

What region did the Russians explore after the late 1500s CE? (4 points) a Australia b Indonesia c Siberia d Europe

Answer»

What REGION did the Russians EXPLORE after the late 1500s CE? (4 points) a Australia b INDONESIA C Siberia d EuropeSiberia

26529.

Section-B 2X9=18 11. What are advantages of computer network. (2)12. What are the factors affecting communication? Explain any four. (2)13. Define Non-Verbal communication. Explain any two types. (2)14. What are the guidelines for Grooming and Dressing? (2)15. Define Expansion card. Name its types. (2)16. What do you mean by an email address? Give an example of it. (2)17. Define the following:a) Circuit Switchingb) Packet Switching(2)Section-C 3X4=1218. Differentiate Hub and Switch. (2)19. Explain the term Blog. (2)20. What do you mean by network topology? (3)21. What are 7Cs of Effective Communication? (3)22. What are the advantages and disadvantages of E-Shopping? (3)23. What are the steps that must be taken to secure data over Internet?​

Answer»

14Explanation:ONE is CORRECT ANSWER is correct or HAI

26530.

I need help pls answer plez i will friend u :D

Answer» FORMAT CELLS... PLS ADD me on SNAPCHAT @vansh16_12
26531.

Write a C language program which create a Variables marks of data int variable percentage of data type floot and variable grade of data type and show result...!​

Answer»

If percentage >= 90% : Grade AIf percentage >= 80% : Grade BIf percentage >= 70% : Grade CIF percentage >= 60% : Grade DIF percentage >= 40% : Grade EIf percentage < 40% : Grade FExampleInputInput marks of five subjects: 9595979890OutputPercentage = 95.00 Grade A

26532.

How Artificial Intelligence is related to human based nature? Discuss with applications

Answer» NATURE of ExistenceHuman intelligence revolves around adapting to the environment USING a combination of several cognitive processes. The field of Artificial intelligence FOCUSES on designing machines that can MIMIC HUMAN behavior.Explanation:
26533.

Differentiate between buses and ports in computer?​

Answer» WRITE the QUESTION PROPERLY
26534.

Write a C language program which create Variables marks of data type int x if data type floot (g) of data type double and z of data type chr and show result...!!!​

Answer»

tion:Integers are whole numbers that can have both zero, positive and negative values but no decimal values. For example, 0, -5, 10We can use INT for declaring an integer variable.int ID;Here, id is a variable of TYPE integer.You can declare multiple variables at once in C PROGRAMMING. For example,int id, age;The size of int is usually 4 bytes (32 bits). And, it can take 232 DISTINCT states from -2147483648 to 2147483647.float and doublefloat and double are used to hold real numbers.float salary;double price;In C, floating-point numbers can also be represented in exponential. For example,

26535.

Intarnat ki visheshtayan bataiye​

Answer»

इंटरनेट, सम्पूर्ण विश्व में फैला हुआ एक ऐसा नेटवर्क हैं, जिसके माध्यम से एक कंप्यूटर, विश्व के किसी भी अन्य कंप्यूटर से कनेक्ट हो सकता हैं. यह इंटर कनेक्टेड कंप्यूटर्स का नेटवर्क हैं. इंटरनेट के अंतर्गत विभिन्न प्रकार की प्रोटोकॉल तकनीकियों का उपयोग किया जाता हैं, जिससे विभिन्न कार्य किये जाते हैं.Explanation:HOPE it HELPS you

26536.

What is the difference between megabit and megabyte?​

Answer»

One megabyte is equal to eight MEGABITS, but the terms are used in specific ways: Megabits per second (mbps) are generally used to describe the speed of an Internet connection, whereas megabytes (MB) usually REFER to the size of a file or storage space. Megabit is a term we use most often when talking about the speed of our Internet connection. Megabyte is a measurement most often used to describe both HARD drive space and memory storage CAPACITY, though the term of art we throw around most frequently these days is the next order of magnitude, the GIGABYTE (GB). Explanation:hope this helps.

26537.

What is nested if answer if you want to check the condition inside the condition ​

Answer» CASES, you'd use an IF FORMULA to test your condition and return one VALUE if the condition is met, another value if the condition is not met. To evaluate more than one condition and return different values depending on the results, you nest multiple IFs inside each other.hope it is clear to you please Mark as BRILLIANT ANSWER
26538.

What are the 2 main purposes of a computer

Answer»

To SATISFY the OWNER and to CALCULATE EQUATIONS

26539.

Current data of India's cyber crime. IN DETAILS

Answer»

In 2016, growth rate of CYBER CRIMES FELL further by 6.3% as 12,317 crimes were registered. With 4,971 cases, UTTAR Pradesh recorded the highest number of cyber crimes in 2017 followed by Maharashtra (3,604) and Karnataka (3,174). ... With 5 cyber crimes committed per lakh population, Karnataka had the highest CRIME rate.

26540.

Fall. ChernichWrite code in HTML to displayexpression6CO²+ 6H₂O​

Answer»

²<||><||6H20<||>this is HTML code for thisExplanation:Subscript text can be USED for chemical FORMULAS, like this

26541.

Convert the following octal number to its equivalent binary number 2351^8 fast plzzzzzxxx​

Answer» EXPLANATION:I can't UNDERSTAND the QUESTION
26542.

The three conditional formating criteria are greather than less than and ...​

Answer»

onditionWe are going to apply conditional formatting to the range of cells "B2:E5" and we are going to shade all the cells identifying whether they are negative, zero or positive.Select the range of cells you want to apply the conditional formatting to, in this CASE cells "B2:E5".Select (FORMAT > Conditional Formatting) to display the Conditional Formatting dialog box.Select "Cell VALUE Is" in the first drop-down box and "LESS than" in the second dialog box.Enter the constant value 0 in the third box.Click the Format button to apply your specific formatting, in this case we are just applying a red background.Second ConditionYou can add another condition by pressing the "Add" button.Select "Cell Value Is" in the first drop-down box and "equal to" in the second dialog box.Enter the constant value 0 in the third box.Click the Format button to apply your specific formatting, in this case we are just applying a orange background.Third ConditionYou can add another condition by pressing the "Add" button.Select "Cell Value Is" in the first drop-down box and "GREATER than" in the second dialog box.Enter the constant value 0 in the third box.Click the Format button to apply your specific formatting, in this case we are just applying a green background.

26543.

Convert the following octal number to its equivalent binary number 2315^8fast plZZZZZ,,​

Answer»

re better answers on google so PLZ do CHECK u will GET your answer

26544.

Write a program to accept a list from the user with 5 elements. Accept name of user and replace the third and fifth elements of the list with the user's name. (Python Question)

Answer»

idkExplanation:IDK

26545.

Output of the following in python a=b=c=10 (5-3*2)**5 x,y=a+b, c+1 print (x,y)

Answer»

tion:20 11(5-3*2)**5 you haven't ASSIGNED this value to any variable so it won't affect anything

26546.

7th class ke 6th lesson ke true and false btaaye computer science​

Answer» QUESTIONS to SAND kar Explanation:U SEND questions then i well send u ANSWERS
26547.

Function of scheduler is are in operating ​

Answer»

It selects processes from the queue and loads them into memory for execution. PROCESS loads into the memory for CPU SCHEDULING. The primary objective of the JOB scheduler is to provide a balanced MIX of JOBS, such as I/O bound and processor bound. ... Time-sharing operating systems have no long term scheduler.

26548.

MCQ based on accounting​

Answer»

at do you WANT to ASK ?

26549.

Write the output for the following HTML code (a+b)2 = a2+ 2ab+ b2

Answer»

You have PUT the ANSWER alsoExplanation:Ans=a2+2ab+b2

26550.

Dasta vej kaise banaye computer m

Answer» NHI PATA , pata nhiExplanation:pls mark as BRAINLIEST answer.