InterviewSolution
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.
| 30101. |
About artificial intelligence. Explain. |
|
Answer» tion:Artificial intelligence (AI) is an AREA of computer science that EMPHASIZES the creation of intelligent machines that work and REACT like HUMANS. Some of the activities computers with artificial intelligence are designed for include: Speech recognition. Learning. |
|
| 30102. |
Write the acronym of ...... in full:a)gigo b)worm c)pga d)sata |
| Answer» GIGO: Garbage In, Garbage OutWorm: Write-Once, Read-ManyPga: PIN Grid ARRAY SATA: Serial Advanced Technology AttachmentExplanation:Gigo: Garbage In, Garbage OutWorm: Write-Once, Read-ManyPga: Pin Grid Array sata: Serial Advanced Technology ATTACHMENT | |
| 30104. |
What is onedrive to make productive |
| Answer» TION:MAKE share in file management EASIER in CLOUD. | |
| 30105. |
A bank classifies its customer into two classes "fraud" and "normal" based on their installment payment behavior. We know that the probability of a customer being being fraud is P(fraud) = 0.20, the probability of customer defaulting installment payment is P(default) = 0.40, and the probability that a fraud customer defaults in installment payment is P(default|fraud) = 0.80. What is the probability of a customer who defaults in payment being a fraud? |
|
Answer» that the probability of a CUSTOMER being being FRAUD is P(fraud) = 0.20, the probability of customer DEFAULTING installment PAYMENT is P(default) = 0.40, and the probability that a fraud customer defaults in installment payment is P(default|fraud) = 0.80. What is the probability of a customer who defaults in payment being a fraud |
|
| 30106. |
In which software that through we keep control ( fill in the blanks) |
|
Answer» qustodioExplanation:it is most parental control SOFTWARE is AIMED as window USERS |
|
| 30107. |
Consider the following c function definition: int f(int j) { static int i=50; int k; if(i==j) { printf("something "); k=f(i); return 0; } else return 0; } Which of the following is TRUE? A)the function returns 0for all values of j. b)the function prints the string something for all values of j. c)the function returns 0 when j=50. d)the function will exhaust the runtime stack or run into an infinite loop when j=50. |
| Answer» UNCTION will EXHAUST the runtime STACK or run into an infinite LOOP when j=50. | |
| 30108. |
Draw a flowchart to find the perimeter of a square using its area |
|
Answer» o above ATTACHMENT |
|
| 30109. |
True or false In java boolean true value is a non-zero value and false value is zero. |
| Answer» FALSE....................... | |
| 30110. |
Maximum aposteriori classifier is also known as: A Decision tree classifier B Bayes classifier C Gaussian classifier D Maximum margin classifier |
|
Answer» D ANSWERMaximum aposteriori CLASSIFIER is also known as :- A Decision tree classifierB Bayes classifierC GAUSSIAN classifierD MAXIMUM MARGIN Classifier ✔️ |
|
| 30111. |
Maximum aposteriori classifier is also known a |
|
Answer» tion:MAXIMUM aposteriori classifier is also KNOWN as. A. DECISION TREE classifier. B.Bayes classfier.hope it's helpful for you ☺️be brainly ☺️ |
|
| 30112. |
Find the error. The following code attempts to compute the first-order effects of some physical process. You may assume that equation is correct.cofactor = alpha*xx1storder = 1.8/ cofactor2ndorder = 2.2 ** 1storder |
| Answer» E BOLD COFACTOR = ALPHA*xx1storder = 1.8/ cofactor2ndorder = 2.2 ** 1storder | |
| 30113. |
HP offers solutions and products based on the ONF definition. Is the statement true? |
|
Answer» is not true. HP does not offer SOLUTION and products based on the ONF DEFINITION. |
|
| 30114. |
Find and write the output of the following python code: def fun(s): k=len(s) m="" for I in range (0,k): |
| Answer» | |
| 30115. |
Photoshop uses raster images only. true or false |
|
Answer» °•°•°°••°••°°•° |
|
| 30116. |
What is alphanumeric |
|
Answer» tion:It REFERS to all the numbers and alphabets. HOPE it HELPS you |
|
| 30117. |
How can we calculate a address of element of an array in both one dimensional and 2 dimensional by row measure and column measure |
|
Answer» Explanation:Array of an element of an array say “A[ I ]” is CALCULATED using the FOLLOWING formula: Address of A [ I ] = B + W * ( I – LB ) Where, B = BASE address W = Storage Size of one element stored in the array (in byte) I = Subscript of element WHOSE address is to be found LB = Lower limit / Lower Bound of subscript, if not specified ASSUME 0 (zero) |
|
| 30118. |
Which is the largest film frame size and use horizontally for video production animation teq |
|
Answer» t common film format, 35 mm, has a frame size of 36 by 24 mm when USED in a still 35 mm camera where the film MOVES horizontally, but the frame size varies when used for motion PICTURE where the film moves vertically (with the exception of VistaVision and Technirama where the film moves horizontally). The most common video frame sizes today are 1920 x 1080 pixels, and 1280 x 720 pixels, both used for HD video. Both sizes are multiples of 16:9 – the widescreen aspect RATIO. |
|
| 30119. |
Special effect and visual effects are same in this statement wronganimation teq |
| Answer» E not same .both are DIFFERENT | |
| 30120. |
Name the software used for stop motion animation |
| Answer» RAME is the SOFTWARE USED for STOP MOTION animation.❤Mark as brainliest❤ | |
| 30121. |
List the applications of LEDs |
|
Answer» LEDs are used in APPLICATIONS as diverse as aviation lighting, automotive headlamps, advertising, GENERAL lighting, traffic signals, camera flashes, lighted wallpaper, HORTICULTURAL GROW lights, and medical devices |
|
| 30122. |
How Long would it take to make a game code that is functional |
|
Answer» it DEPENDS upon the programmer .. how fast u can make a GAME tyeam animation and write the codesExplanation:HOPE you understand please MARK me as brainliest... |
|
| 30123. |
What is the return type of log() |
|
Answer» urn type of log() is floatExplanation:log() function in CIt is ONE of the Math Functions used in C/C++/Java programmingThe log() function in C/C++ programming language will accept single PARAMETER and then returns a value of data type float i.e. natural logarithm (base = e) of a given number, where e represents the exponential number.C PROGRAM#INCLUDE |
|
| 30124. |
You are given an innite array a[] in which the rst n cells contain integers in sorted order and the rest of the cells are lled with1. You are not given the value of n. Describe an algorithm that takes an integer x as input and nds a position in the array containing x, if such a position exists, in o(log n) time |
|
Answer» tion:.Solution:This algorithm can be broken into two phases: first we find a not too large overestimaten0forn, then we run binary search on the resulting array from 1 ton0.For the first phase, begin at entry 1 and check to see if the element there is infinity or not.If not, then TRY 2, then 4, 8, 16, etc, doubling each time until we see an ∞ . Note that after i steps, we will land on the over estimate n 0 = 2 i . Since the previous entry was not ∞ , it follows that 2 i - 1 ≤ n < n 0 = 2 i . Thus n 0 ≤ 2 n . This first phase takes O ( log 2 n 0 ) steps, and binary search on the array from 1 to n 0 will also take O ( log 2 n 0 ) steps. Thus the total running time is O ( log 2 n 0 ). As n 0 ≤ 2 n , log 2 n 0 ≤ log n +1, so it follows that the running time is also O (log 2 n ). Note that we could have been more efficient by terminating phase 1 early if the array elements we see while incrementing become larger than the array element we are searching for. This would make the algorithm run a bit FASTER if we actually implemented it in some cases, depending on where the element we’re looking for it. HOWEVER, this doesn’t lead to an asymptotic speed up in our worst-case runtime, and makes the algorithm a bit more cumbersome to explain and analyze. So LESSON number 1: For this course (but possibly not in practice), you may as well pick the easier to explain and analyze algorithm if it has the same asymptotic run time. Usually this means trimming off the efficiency hacks that you might add if you were to ever implement these algorithms. 6. You are given an array A [1 . . . n ] of n distinct numbers. You are told the sequence of values A [1] , A [2] , . . . , A [ n ] is unimodal. That means there is an index p where the values in the array Page 5Image of page 5 |
|
| 30125. |
You decide to bulk upload your multiple business locations to google my business. Some of the locations in your upload were disapproved. Which two errors can cause this issue? (choose two.) select all correct responses |
|
Answer» 1. Multiple locations in ONE PHYSICAL ADDRESS 2. Incorrect business nameExplanation:HOPE THIS HELPS U >>>>>THANK U<<<<:> |
|
| 30126. |
Write r code using data "imdb_data" to a. Load csv in r by skipping second row. b. Extract the unique genres and its count and store in data frame with index key. |
|
Answer» a).FIRST, I have cleared the ENVIRONMENT using code in R: rm(list = ls()). Then, I set my directory using code: settled("D:/disorder/Predictive analysis using R and Python/Analytics Basics/directory (R PROGRAMMING)"),where the csv FILE “IMDB_data” was present. I have used the following codes to remove the 2ndcolumn entries. – IMDB_data=read.csv("IMDB_data.csv", header=TRUE)[-2,]b). df =length(unique(IMDB_data$Genre)) - 249c). IMDB_data=as.numeric(IMDB_data)d). IMDB_data=IMDB_data[ORDER(IMDB_data$Genre),]e). x = (as.numeric (IMDB_data$imdbRating))^ 2; y =(as.numeric (IMDB_data$imdbVotes))^ 2; IMDB_data$Square_Diff = with(IMDB_data, (x-y)Explanation: |
|
| 30127. |
You need to delegate ad rms responsibilities to a junior administrator. You don't want to give the administrator more permissions than required to allow her to view rms-related logs and reports. What should you do |
|
Answer» Friends PLZZ prime minister ji ko support kare kyuki WO akele kuch nahi KAR SAKTE hame unka sath dena hogaBss hame ek KAAM karna hoga (Apne aap ko or apne family ko bhar matt nikalne dena ha) |
|
| 30128. |
Using a standard google analytics configuration, which characteristics cannot be used to create a custom segment? |
|
Answer» Users who are FEMALE and have childrenUsers 25 to 34 years old who have their browser SET to SpanishUsers who engaged in a social media or email campaignUsers who viewed a page on a website, then WATCHED a video |
|
| 30129. |
STO sut (V)-Tita 1/garoccurrence-watdrought- /aatitvast portion-বিল অংশundergo-47219 Fett Parafan 75arfssadasalinity=7185tidal surge-owndisaster-prone geographical location-Tastat 7 SITT FARTpose a threat offerta nisicesca coast-AKTalternative to-emission-setthus- oghabitation->21Full marksYour markInternatInsert the right forms of the words in brackets.International Workers' Day! May DayFull marks | 21Uauona WOIKEES Day, also known (know) as Labour Day and May Day, is a celebration onworking classes of people throughout the globe. Indoor and outdoor meetings, rallies, symposiums and w(hold) by national and international labour organizations, socialists, and communists on May Day- (occur) behind the day is that, in 1886 a demonstration - (call) by the Labourer Organization inChicago, the United States, demanding an eight-hour workday. A general strike- (call) by the labour union insupport of the demand in the city. The police were(try) to disperse a public assembly during the generastrike, when an unidentified person was supposed(threw) a bomb at the police. The police(response) by_ (fire) on the workers, killing four_ (demonstrate). This incident infuriated the- (labour) throughout the world and(strong) the demand for the eight-hour workday, bringing allthe Labourers' Organizations under one umbrella. Mass(demonstrate) by the labourers and their rightfuldemands rose in all(country) subsequently. In 1904 the Intemational Socialist Conference which- (hold) in Amsterdam called on all social democratic party organizations and trade unions of all countries toestablish) of the 8-hour work day. The governments all over the globe atdemonstrate energetically for the- (labour). The learning of May Day is that as longlast met the(right) and lawſul demands of theas the working class people stand together against class disparity, - (repress) and(deprive) oftheir fundamental rights, the capitalists will never be(ability) to suck their blood and subdue their spirits.PELC-Word Skill: |
| Answer» | |
| 30131. |
Anna specialises in portrait photography. She uses her website to reach potential customers and has recently set up an SEM campaign to draw more traffic to her site. She wants to use negative keywords to make sure her ads don’t appear for people who aren’t potential customers. Which of the following keywords are the negative keywords? |
|
Answer» You haven't WRITTEN after NEGATIVE keywords , PLEASE check the question. |
|
| 30132. |
Print the array from the last problem to the screen backward. The array should still be named letters and hold the original values in the original order. Sample Run w v u t s r q p o n m l k j i h g f |
| Answer» | |
| 30134. |
Give image of flow chart of computer system(colourful and well labelled) and explain about auxiliary memory and state the unit of memory. #NO SPAM |
|
Answer» memory -- bytes Auxiliary memory (also referred to as secondary STORAGE) is the non-volatile memory lowest-cost, highest-capacity, and slowest-access storage in a computer system. ... Auxiliary memory HOLDS data for FUTURE use, and that retains INFORMATION even the power failshope this May help you. |
|
| 30135. |
What is the read-only file system download error? |
|
Answer» This can HAPPEN even if the file SYSTEM is ONE that is ROUTINELY used for nightly backups. |
|
| 30136. |
Nvidia graphic driver does not continue to install fix and not compatible with my system fix |
| Answer» NICE QUESTION HOPE it HELPS you..... | |
| 30137. |
Computer science Describe what will happen when we run the following code: colour = input("What is your favourite colour?") print("That is my favourite colour too.") |
|
Answer» If U enter the name of any COLOUR ,the OUTPUT will be :This is my favourite colour too.Hiibrainliest plzjoi AAI akhom |
|
| 30138. |
#include int main()int n, i;printf("n: ");scanf("%d", *n);if(n%2=0)for(i=0;i |
|
Answer» 2Explanation:sfdfbvsdsvdvdvsdvsvvdvd |
|
| 30140. |
More people are using ___ and___ operating systems in their computer? Mac, amigo/Solaris, ios/windows, Linux /Android, minix3 |
| Answer» WINDOWS and MAC I THINK | |
| 30142. |
Full form of MSCIT ..... |
|
Answer» it is -The Maharashtra State CERTIFICATE in INFORMATION Technologyhope it HELPS u |
|
| 30143. |
So guys till 14 April locked down in home〜(꒪꒳꒪)〜family ke saath time spand karo yaar |
| Answer» CITIZENS of INDIA SPENDING TIME with there FAMILY. | |
| 30144. |
The role of actuator is to |
|
Answer» tion:Actuators typically are used in MANUFACTURING or industrial applications and might be used in DEVICES such as motors, pumps, switches and valves. A mechanical actuator functions to EXECUTE movement by converting ONE kind of motion, such as rotary motion, into another kind, such as LINEAR motion.hope it's helpful for you ☺️be brainly ☺️ |
|
| 30145. |
Put your _______ finger on the left button |
| Answer» RIGHT right right right | |
| 30146. |
B. Answer in one word: 1.2.Who is known as the Father of Computer?Which button minimizes all the open windows and displays the desktop?....3.Name the type of keys used for moving through the documents or web pages....4.Name the suite of services offered by Microsoft.5. When was Windows 7 released? |
| Answer» | |
| 30147. |
What are the problems associated with rmc(resource monitoring and control) |
|
Answer» RMCExplanation:RESOURSE MONITORING and controlRMC |
|
| 30148. |
What isCOMPUTERORGANIZATION ? |
|
Answer» Computer Organization refers to the level of abstraction above the DIGITAL logic level, but below the operating system level. ... A closely related term, computer architecture, EMPHASIZES the engineering decisions and tradeoffs that must be made in ORDER to produce a "good" design.Explanation:HOPE this is useful for you |
|
| 30149. |
Convert the following if else if construct into switch case if( var==1)System.out.println("good");else if (var==2)System.out.println("better");else if (var==3)System.out.println("best");elseSystem.out.println("invalid") ; |
| Answer» TION:I think that this will HELP. If it HELPS you then PLEASE mark it as the brainliest | |
| 30150. |
Wap a pgm in Java Please help me |
|
Answer» ogram - JavaQuestionTrust Bank CHARGES INTEREST for the vehicle loan as given below:Write a program to model a class with the specifications as given below:Class name: LoanData members / Instant variables:int time : Time for which the loan is sanctioneddouble principal : Amount sanctioneddouble rate : Rate of interestdouble amt : Amount to pay after given timeInterest = (Principal * Rate * Time) / 100Amount = Principal + InterestMember Methods:void getdata() : To accept principal and timevoid CALCULATE() : To find interest and amountvoid DISPLAY() : To display interest and amountAnswerLoan.javapublic class Loan { int time; //Time for which loan is sanctioned double principal; //Amount sanctioned double rate; //Rate of interest double interest; //To store the interest double amt; //Amount to pay after given time void getdata(double p, int t) { //To accept principal ad time principal = p; time = t; } void calculate() { //To find interest and amount /* Different case conditions for rate of interest * Up to 5 years - 15% * More than 5 and up to 10 years - 12% * Above 10 years - 10% */ if(time <= 5) { rate = 15; } else if(time <= 10) { rate = 12; } else { rate = 10; } //Calculate interest = (principal * rate * time) / 100; amt = principal + interest; } void display() { //To display interest and amount System.out.println("Interest = "+interest); System.out.println("Amount = "+amt); }}TrustBank.javapublic class TrustBank { public static void main(String[] args) { Loan loan = new Loan(); //Create Loan object double principal = 10000; int time = 7; loan.getdata(principal, time); loan.calculate(); loan.display(); }}ExplanationThe Loan.java file contains the code for the Loan class, with the required variables and methods. Code comments DESCRIBE the purpose of each thing.The TrustBank.java file contains the main() method which has an example. We first create an object of the Loan class.Then, we take the Principal as 10,000 and Time as 7 years and pass it on to the getdata() method. Finally, running calculate() and display() gets us our answers.Screenshots show the code of the two files and a terminal run of the program. |
|