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.
| 12401. |
A collection of predefined methods is called |
|
Answer» Explanation: Like other Java inbuilt classes String class also provides NUMEROUS predefined methods. A method is a collection of instructions. When a method executes, it ACCOMPLISHES SOMETHING. The general expression to use a predefined method on a REFERENCE variable is: ReferenceVariable.MethodName(parameters) |
|
| 12402. |
Algorithm to find largest and smallest number in an array |
|
Answer» are given a array CONTAINING only 0s and 1s . You have to TELL the number of subarrays which has equal number |
|
| 12403. |
Which one is a quality attribute? Reliability availability security all of the above |
|
Answer» Some Quality Attributes such as performance, SECURITY, and availability are ... Five-9's means LESS than 5 minutes when the system is not operating CORRECTLY over the span of one YEAR |
|
| 12404. |
Which process is responsible for recording the current details status interfaces and dependencies |
|
Answer» A. Service level management B. Service catalogue management C. Demand management D. Service TRANSITION |
|
| 12405. |
Which scheduling algorithm allocates the cpu first to the process that requests the cpu first? |
|
Answer» Answer: Dispatcher is the module that gives CONTROL of the CPU to the process SELECTED by the short-term scheduler. It receives control in kernel MODE as the result of an interrupt or system call Explanation: |
|
| 12406. |
Which of the computer languages is a mathematically oriented languages used for scientific problem? |
|
Answer» Answer: According to the COMPUTER SCIENCE, FORTRAN is a mathematically oriented language which is used for solving scientific problems. |
|
| 12407. |
1. Which module gives control of the cpu to the process selected by the short-term scheduler? A) dispatcher b) interrupt c) scheduler d) none of the mentioned |
|
Answer» Dispatcher.It receive the CONTROL in kernelmode as the RESULT of an INTERRUPT or SYSTEM call. |
|
| 12408. |
Which level show the data stored in database and the relationshis btw them |
|
Answer» Answer: LOGICAL legal SHOWS the DATA stored I DATABASE and the relationship between them .. |
|
| 12409. |
Which model can be used if user is involved in all the phases of sdlc? Waterfall rad prototype both rad and prototype |
|
Answer» |
|
| 12410. |
Give the out put of n=6,s=0;for(int i=1;i |
|
Answer» Answer: 6 Explanation: itteration -1 : i = 1 , i < N (TRUE), n%i==0 (true) , s=s+i = 0+1=1 itteration -2 : i = 2 ,i < n (true), n%i==0 (true) , s=s+i = 1+2 =3 itteration -3 : i = 3 ,i < n (true), n%i==0 (true) , s=s+i = 3+3=6 itteration -4 : i = 4 , i < n (true), n%i==0 (false) , s = 6 itteration -5 : i = 5 , i < n (true), n%i==0 (false) , s = 6 itteration -6 : i = 6 , i < n (false), s = 6 System.out.println(s) = 6 -----Hope this answer will help you..:) |
|
| 12411. |
Name it= they are used for software objects to interact and communicate with each other. |
|
Answer» FACEBOOK!!!......... |
|
| 12412. |
Advantage and disadvantage of randomized algorithm |
|
Answer» ADVANTAGES OF RANDOMISED ALGORITHM |
|
| 12413. |
Advantage and disadvantage of array in data structure |
|
Answer» ADVANTAGES OF THE ARRAY IN DATA STRUCTURE : |
|
| 12414. |
Which is known as extension best or communicates with external components such as usb or icsi device |
|
Answer» USB is used to STORE soft copy It is used by our parents in OFFICES |
|
| 12415. |
write a program in java to check for a special 2-digit number when the sum of the digits is added to the product of the digits the result is the number itself. |
Answer» Program:import java.io.*; import java.util.*; public class Main{ public static void main(String args[]){ int sum = 0; int TEMP = 0; int pro = 1; int j; for(int i = 10 ; i < 100 ; i++){ j = i; while (j>0){ temp = j % 10; sum = sum + temp; j = j/10; } temp = 0; j = i; while(j>0){ temp = j % 10; pro = pro * temp; j = j/10; } if ((sum+pro) == i){ System.out.println(i); temp = 0; sum = 0; pro = 1; } temp = 0; sum = 0; pro = 1; } } } Output:19 29 39 49 59 69 79 89 99 Explanation:
-----Hope This Program Helps You :) |
|
| 12417. |
➡️What is spreadsheet?? |
|
Answer» A SPREADSHEET is an INTERACTIVE computer APPLICATION for organization, analysis and storage of data in tabular form. |
|
| 12418. |
write a java program to accept and store 10 elements in a single dimensional array and enter the new element and check whether the element is present or not by using selection Sort algorithm |
Answer» Programimport java.io.*; import java.util.*; PUBLIC class Main{ public static void main(String args[]){ int arr[] = new int[10]; Scanner sc = new Scanner(System.in); System.out.println("Enter 10 elements into the array"); for(int i = 0; i < 10; i++){ arr[i] = sc.nextInt(); } System.out.println("Enter number to check : "); int temp = sc.nextInt(); for( int i = 0 ; i < 10 ; i++ ){ if( arr[i] == temp ){ System.out.println("given number FOUND at "+(i+1)+" POSITION"); break; } } } } OutputEnter 10 elements into the array 12 14 56 34 786 345 23 987 5467 3 Enter number to check : 5467 given number found at 9 position |
|
| 12419. |
Name the software bundle of bundles of variables and related methods. |
|
Answer» Answer: ➡good morning !! ☺☺☺☺☺☺ ➖➖➖➖➖➖➖➖➖ hey here is your answer... ➕ ➕ ➕ ➕ ➕ ➕ ➖➖➖➖➖➖➖➖➖ hope it will HELP You be brainly ❤ |
|
| 12420. |
Biography of theodo schwann |
|
Answer» Answer: PLZ mark me as the thanks pplz or BRAINLIEST PLZZZ |
|
| 12421. |
In object oriented technology a particular object is called |
|
Answer» Explanation: Object-oriented programming (OOP) is a programming paradigm based on the concept of "OBJECTS", which can contain data, in the form of fields (OFTEN known as attributes), and code, in the form of PROCEDURES (often known as methods). A feature of objects is an object's procedures that can access and often modify the data fields of the object with which they are associated (objects have a notion of "this" or "self"). In OOP, computer programs are designed by making them out of objects that interact with one another.[1][2] OOP languages are diverse, but the most popular ones are class-based, meaning that objects are instances of classes, which also determine their types. Many of the most widely used programming languages (such as C++, Object Pascal, Java, Python, etc.) are multi-paradigm and they support object-oriented programming to a greater or lesser degree, typically in combination with imperative, procedural programming. Significant object-oriented languages include Java, C++, C#, Python, PHP, JavaScript, Ruby, Perl, Object Pascal, Objective-C, Dart, Swift, Scala, Common Lisp, MATLAB, and Smalltalk. |
|
| 12422. |
Name the complete description of a system from a particular perspective. |
|
Answer» system is a group of interacting or interrelated entities that FORM a unified whole.[1] A system is delineated by its spatial and temporal BOUNDARIES, surrounded and INFLUENCED by its environment, described by its structure and purpose and expressed in its FUNCTIONING. |
|
| 12423. |
What are the prominent areas where is is used in science and engineering |
|
Answer» Explanation: Science, technology and engineering for innovation and CAPACITY-building in education and research Report of the Secretary-General Executive summary Although there is consensus that technological change is a driver of ECONOMIC growth, many developing countries have yet to benefit from the promises of science, technology and innovation (STI). The potential contribution of STI to the achievement of development goals is, and will continue to be, constrained by structural barriers and systemic weaknesses at the local, national and global levels, and by the long LEAD time required to build indigenous technical and non-technical indigenous STI capabilities. Indigenous capabilities in STI are essential for the achievement of both short- and long-term development goals. Therefore, building science, technology and engineering for innovation capacity should be elevated from a missing or marginal component of the development agenda of many developing countries to an essential policy of every country’s strategy for alleviating poverty, achieving the Millennium development Goals (MDGS), and enhancing economic and social development. Efforts should be stepped up to SHARE policy-related experiences, through North–South and South–South cooperation, and through existing and new regional and international agreements. |
|
| 12424. |
Which are the prominent areas where it is used to in science and engeenering |
|
Answer» Answer • Engineering and Technology • MEDICAL and health science • AGRICULTURAL science • SOCIAL science • Humanities These are the prominent areas ,it is used.
|
|
| 12425. |
If the computer does not operate properly that means it has -----sector. |
|
Answer»
⭐⭐⭐⭐⭐⭐ ⭐ ⭐ ⭐ ⭐ ⭐ ❤❤❤⭐⭐⭐⭐ ⤵⤵⤵⤵ FOLLOW , BRAINLIST ME☺☺PLZZ =========== BOOT |
|
| 12426. |
It there are 32 segments,each of size 1 kb then the logical address should have____bits |
|
Answer» Answer: 15 Explanation: |
|
| 12427. |
Name the three characteristic that is shared by objects |
|
Answer» glass WATER rubber gum flower |
|
| 12429. |
What is hardware's?! |
|
Answer» Answer: hardware is SUBSTANCE that we can touch and fell it are CALLED hardware |
|
| 12430. |
PLz answer the attchment fast |
|
Answer» sum = 0 i = 0 PRINT("Natural number from 1- 10") while i < 10: print(i) sum = sum + i i = i + 1 Print("sum of the 10 natural number") print(sum) NOTE: you did not mention the language so i wrote the CODE in python 3 |
|
| 12431. |
All the domain extensions are monitored and regulated by |
Answer» Hey GUYS
Explanation: A domain NAME registry is a database of all domain NAMES and the associated registrant information in the top level domains of the Domain Name System (DNS) of the Internet that enables third party ENTITIES to request administrative control of a domain name. Most registries operate on the top-level and second-level of the DNS MARK AS BRAINLIST |
|
| 12432. |
I will mark the person brainlist who answer the questionWAP to input the type of department(cloth/electronices) and amount and print discount ,amount payable , purchase amount purchase amount discoun onclothupto 2500 2%2501 to 5000 3%5001 to 7500 3.5%more than 7500 4%amount dis on electronicsupto 2500 3%2501 to 5000 4%5001 to 7500 6%mare than 7500 8%output should be like this:enter type of departmentclothenter purchase amount1000purcahse amount =Rs1000discount=Rs20amount payable=Rs 980Remember:If you input any other departmebt except for cloth/electronics output should be invalid department only |
|
Answer» dept = ["cloth","electronics"] print("Enter Type Of Department:") temp_dept = input() print("Enter Purchase Amount") temp_pur = INT(input()) print("Purchased Amount is") print(temp_pur) temp_disc = 0 if temp_dept == dept[0]: if temp_pur < 2500 and temp_pur != 0: temp_disc = (2/100) * temp_pur elif temp_pur > 2500 and temp_pur < 5000: temp_disc = (3/100) * temp_pur elif temp_pur > 2500 and temp_pur < 5000: temp_disc = (3.5/100) * temp_pur elif temp_pur > 7500: temp_disc = (4/100) * temp_pur else: print("Purchase Amout Should Not Be 0") print("Discount") print(temp_disc) print("amount payable") print(temp_pur - temp_disc) elif temp_dept == dept[1]: if temp_pur < 2500 and temp_pur != 0: temp_disc = (3/100) * temp_pur elif temp_pur > 2500 and temp_pur < 5000: temp_disc = (4/100) * temp_pur elif temp_pur > 2500 and temp_pur < 5000: temp_disc = (6/100) * temp_pur elif temp_pur > 7500: temp_disc = (8/100) * temp_pur else: print("Purchase Amout Should Not Be 0") print("Discount") print(temp_disc) print("amount payable") print(temp_pur - temp_disc) else: print("INVALID Department.") NOTE: you did not MENTIONED the language so i used python 3 to write the program Hope you will mark this as Brainliest |
|
| 12433. |
Write a python program to find the average of 4 number |
|
Answer» while True: PRINT("Enter 'x' for exit.") print("Enter any 3 NUMBERS to find average: ") n1 = input() n2 = input() n3 = input() if n1 == 'x': break else: number1 = int(n1) number2 = int(n2) NUMBER3 = int(n3) number4 = int(N4) sum = number1 + number2 + number3 + number4 average = sum/34 print("Average of entered 4 numbers is ", average, "\N") |
|
| 12434. |
I installed Visual studio Community 2019 ,but can not see MVC option while creating a mvc Project.Attached screenshot for referenceCould anyone help on this |
| Answer» | |
| 12435. |
I installed Visual studio Community 2019 ,but can not see MVC option while creating a mvc ProjectCould anyone help on this |
|
Answer» TRY To REINSTALL or GIVE a SCREENSHOT |
|
| 12436. |
The definition of computer |
|
Answer» Answer: computer is ELECTRONIC device which is USED to calculate arithmetic and logical PROBLEMS and it was a very easier we can do our WORK very fastly and calculate our data and stores our various information. it is very important to have computer because all of the works was done by the HELP of computers |
|
| 12437. |
What name is given to a type of ethernet port connection that uses twisted pair cabling? |
|
Answer» Answer: Twisted PAIR Ethernet. Ethernet is a standard for connecting computers to a local area network (LAN). Twisted pair is the most economical LAN cable and is often used by older telephone NETWORKS, although MANY networks have twisted pair wiring somewhere within the network. Explanation: |
|
| 12438. |
Which is the most common language used in web designing? |
| Answer» | |
| 12439. |
(1) what is a computer network?(2) what is internet?(3) what is protocol? which set of protocols is used by the internet?answer like a mod, no spam |
Answer» COMPUTER NETWORKA computer network, also referred to as a data network, is a series of interconnected nodes that can transmit, receive and exchange data, voice and video traffic. Network devices use a variety of protocols and algorithms to specify exactly how endpoints should transmit and receive data. For example, the Ethernet standard establishes a common language for wired networks to communicate, and the 802.11 standard does the same for wireless local area networks (WLANs). INTERNETInternet is a global system of interconnected computer networks that use the standard Internet protocol suite (OFTEN called TCP/IP, although not all protocols use TCP) to serve billions of users worldwide. It is a network of networks that consists of millions of private, public, academic, business, and government networks, of local to global scope, that are linked by a BROAD array of electronic, wireless and optical networking technologies. The Internet carries an extensive range of information resources and services, such as the inter-linked hypertext documents of the World Wide Web (WWW) and the infrastructure to support email. PROTOCOLSometimes referred to as an access method, a protocol is a standard used to define a method of exchanging data over a computer network, such as local area network, Internet, Intranet, etc. Each protocol has its own method of how data is formatted when sent and what to do with it once received, how that data is compressed, or how to check for errors in the data.Protocol can also be told as "set of rules IMPLEMENT to protect the network" protocols is used by the internetFTP - File Transfer Protocol HTTP - Hyper Text Transfer Protocol HTTPS - Hyper Text Transfer Protocol Secure TCP/IP - Transmission Control Protocol/Internet Protocol ARP - Address Resolution Protocol DHCP - Dynamic Host Configuration Protocol DNS - DOMAIN Name System ICMP - Internet Control Message Protocol TFTP - Trivial File Transfer Protocol UDP - User Datagram Protocol SMTP - Simple Mail Transfer Protocol RTP - Real-time Transport Protocol VoIP - Voice over Internet Protocol NTP - Network Time Protocol IGMP - Internet Group Management Protocol IMAP4 - Internet Message Access Protocol version 4 |
|
| 12440. |
An article of 200 words on operating system |
|
Answer» Explanation: An operating system (OS) is system software that manages computer hardware and softwareresources and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient USE of the system and may also include accounting software for cost allocation of processor time, MASS STORAGE, printing, and other resources. For hardware functions such as input and output and memory allocation, the operating system acts as an intermediary between programs and the computer hardware,[1][2] although the application code is usually executed directly by the hardware and frequently makes system calls to an OS function or is interrupted by it. Operating systems are found on many devices that contain a computer – from cellular phones and video game CONSOLES to web servers and supercomputers. The dominant desktop operating system is Microsoft Windows with a market share of around 82.74%. macOS by Apple Inc. is in second place (13.23%), and the varieties of Linux are collectively in third place (1.57%).[3] In the mobile (smartphone and tabletcombined) sector, use in 2017 is up to 70% of Google's Android[4] and according to third quarter 2016 data, Android on smartphones is dominant with 87.5 percent and a growth rate 10.3 percent PER year, followed by Apple's iOS with 12.1 percent and a per year decrease in market share of 5.2 percent, while other operating systems amount to just 0.3 percent.[5] Linux distributions are dominant in the server and supercomputing sectors. Other specialized classes of operating systems, such as embedded and real-time systems, exist for many applications. I hope it will helps you. Mark it as a brainliest. plz..follow me. I think it is about 200 words. |
|
| 12441. |
Which of the followingis a personalised computer? |
|
Answer» where are the FOLLOWINGS my DEAR................................. |
|
| 12442. |
My tablet was working fine but then suddenly the screen went black. if I press on the volume button I can hear the volume sound. So as a result it is a black screen and can't see was is going on with my tablet. Do any of you have an solution? |
|
Answer» just restart it BOY, it will be fine follow meee or its JST discharged..... charge it |
|
| 12443. |
Which is your favorite Windows operating system?(1) Windows XP(2) Windows Vista(3) Windows 7(4) Windows 8(5) Windows 8.1(6) Windows 10 |
| Answer» | |
| 12444. |
Dir command is used toa)Rename the directoryb)list the directoryc)Open directoryd)Make directory |
|
Answer» DIR is a COMMAND which is used to sort or list the directory. So, option B is the answer. ======== Let us go for the REMAINING commands too. To rename a directory, we need to use the command - ren or mv To open a directory, we need to use the command - cd or path To make a directory, we need to use the command - mkdir |
|
| 12445. |
HTML এর সম্পূর্ণ নাম কি |
|
Answer» ⏩HTML= HYPER Text MARKUP Language... ✔✔✔✔✔✔ Hope it helps...:-)✨❤⭐♥✨❤⭐♥✨ Be Brainly ..✌✌✌ |
|
| 12446. |
Write a program to find the Nth term in this series. The value N in a positive integer that should be read from STDIN. The Nth term that is calculated by the program should be written to STDOUT. Other than the value of Nth term , no other characters / string or message should be written to STDOUT. For example, when N=14, the 14th term in the series is 17. So only the value 17 should be printed to STDOUT. |
|
Answer» Answer: In C Language: #include #define MAX 1000 void FIBONACCI(int n) { int i, T1 = 0, T2 = 1, nextTerm; for (i = 1; i<=n; i++) { nextTerm = t1 + t2; t1 = t2; t2 = nextTerm; } printf("%d", t1); } void PRIME(int n) { int i, j, flag, count =0; for (i=2; i<=MAX; i++) { flag = 0; for (j=2; j { if(i%j == 0) { flag = 1; break; } } if (flag == 0) if(++count == n) { printf("%d", i); break; } } } int main() { int n; scanf("%d", &n); if(n%2 == 1) fibonacci (n/2 + 1); else prime(n/2); return 0; } |
|
| 12447. |
THE FIRST NETWORK THAT PLANTED THE SEED OF INTERNET WAS |
|
Answer» The first network that planted the seeds of Internet was ARPANET.Apr 22, 2018 |
|
| 12448. |
........... memory has less storage capacitya) Auxillaryb) primaryc) secondaryd)cache |
|
Answer» cache Explanation: |
|
| 12449. |
Que -can you explainme about thefirst generationcomputer. |
|
Answer» First Generation: Vacuum Tubes (1940-1956) The first COMPUTERSYSTEMS used vacuum tubes for circuitry and magnetic drums for memory, and were often enormous, taking up entire rooms. ... The UNIVAC and ENIAC computers are examples offirst-generation COMPUTING devices. |
|