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.
| 1951. |
Find two numbers whose sum is 28 and product is 180say |
|
Answer» here is your ANSWER ...... |
|
| 1952. |
Write a java program to display the following pattern using loop: # #* #*# #*#* #*#*# |
| Answer» | |
| 1953. |
The ...................... tab contains most of the properties you work with.LookupGeneralFile |
|
Answer» Explanation: 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» 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» 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» |
|
| 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» ऊ ए ऐ ओ भैया को फिर से एक है |
|
| 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» |
|
| 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» |
|
| 1964. |
Write ten formatting commands of page layout. |
| Answer» | |
| 1965. |
2.A device that is used for1 poinconverting printed documents orphotos into electronic format is called aAnswer: |
|
Answer» scanner KAHTE HAI usko agar ye AAPKI kuchh madad kare to PLEASE mujhe brainiest bana dijiye |
|
| 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. ...
..
...
.
...
|
|
| 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 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» 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» 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: |
|
| 1975. |
Write the resultant array after 3 pass of Bubble sort: [1]{ 34, 76, 12, 89, 22, 66, 3} |
|
Answer» 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» Can't write a PROGRAM Explanation: |
|
| 1978. |
Cr(en)3)C13सकुल का IUPAC नाम लिखिए |
Answer» C13 = Tris(ethane-1,2-diamine)CHROMIUM(III) CHLORIDEHOPE 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. |
|
| 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» 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 . |
|
| 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» |
|
| 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» SUM *= 10; long y = NUM % 10; sum += y; num /= 10; } while(num != 0); |
|
| 1988. |
What is the full form of NOIDA |
|
Answer» Here is UR answer dude :- NOIDA - New OKHLA Industrial Development Authority Explanation:
HOPE IT HELPS YOU
|
|
| 1989. |
कहलाने एकत बसत, अहि,मयूर, मृग, बाघ |
|
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» 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» FORMATTING text. Explanation: |
|
| 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» any disk Explanation: |
|
| 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. |
|