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.

21801.

Which is cloud service where company owns the infrastructure?

Answer»

cloud PLATFORM, AMAZON WEB Services, Alibaba Cloud and a lot more

21802.

Which is important to connect the cell in series or parallel?

Answer» ING the cell in SERIES will GIVE more current as compared to PARALLEL.
21803.

Which feture is used to make selected sentence to all capital letters or sll small letters?

Answer»

) - for UPPER CASE.LOWER() - for lower case

21804.

When entering field name how many characters you can type in maximum?

Answer» NG to me it MIGHT be 64 CHARACTERS
21805.

When a child class function is called the compiler looks first for a matching function name in the?

Answer»

pe you will understand the ANSWERIF a CHILD class function is called looks first for a matching function name in theCLASS OF THE OBJECT USING FUNCTION NAME I THINK this answer will help you!RegardsIF YOU UNDERSTAND CLEARLY THEN PLEASE MARK BRAINLIEST

21806.

What precautions should be taken while using a software on computer?

Answer»

cautions for Computer Users If this is your first visit, use these tips as a SECURITY checklist. Patch, Patch, PATCH! ... Install protective software. ... Choose strong passwords. ... Back up on a regular basis. ... Control access to your machine. ... Use email and the internet safely. ... Use secure CONNECTIONS. ... PROTECT SENSITIVE data.Use desktop firewalls. Mac and Windows computers use basic desktop firewalls to protect your computer files from being scanned. MAKE sure they are properly configured. Most importantly, stay informed.

21807.

WRITE A PROGRAMME IN C++ TO PRINT THE PRIME NUMBERS BETWEEN 100-200.

Answer»

e USING namespace std;INT main(){    int low, high, i, flag;    cout << "ENTER TWO numbers(intervals): ";    cin >> low >> high;    cout << "Prime numbers between " << low << " and " << high << " are: ";    while (low < high)    {        flag = 0;        for(i = 2; i <= low/2; ++i)        {            if(low % i == 0)            {                flag = 1;                BREAK;            }        }        if (flag == 0)            cout << low << " ";        ++low;    }    return 0;}

21808.

Write a program to enter a number and check whether the number Is a unique or not . (a number is said to be unique if digits are not repeated in it). sample input:5463sample output:it is a unique number.sample input: 3272sample output:it is not a unique number......give the answer by using scanner

Answer»

n():            list = ""    user_input = str(INPUT("Enter a no: "))    for x in user_input:        if x in list:            PRINT("The digit already exists !")        ELSE:            list.append(x)while True:    MAIN()

21809.

कंप्यूटर में डिजिटल क्लॉक का उपयोग किया जा सकता है ?

Answer» SWER is no......
21810.

What to do when window 7 is not responding after running window is loadimg?

Answer»

aight a SERIOUS FAULT in the hard DISK. Trying fixing the MBRS and if NOTHING happens, reinstall windows.

21811.

Using short cut key how to replace the word safety with save

Answer» N's SAFE safe I STHE safe where safe will helinwo dafe
21812.

Wabp to input any character and count how nany vowels are there

Answer»

अरमां आँसुओ में #बह_गएहम तो चपरासी लगने से भी #रह_गए

21813.

What is the use of matlab in monitoring substation parameters?

Answer»

paper, models have been BUILT in matlab/simulink to finish related simulation, and all these simulation are USED as a BACKGROUND service in the substation simulation system; A substation monitoring INTERFACE has been designed and built USING Kingview, and it is set as a interface in the substation ...

21814.

What is the relation between linear transformation and inner product space?

Answer»

ar algebra, an inner product SPACE is a VECTOR space with an ADDITIONAL STRUCTURE called an inner product. This additional structure associates each pair of vectors in the space with a scalar quantity KNOWN as the inner product of the vectors

21815.

What is the processin which auser sends computer information from his computer to another computer to another computer through modem?

Answer»

s many network connection though which we can SEND INFORMATION from one computer to another then another if there is a central PC then which CONNECTED to other by P2P connection the information can transported to other computers . the other computers can be sent information to the central hub. there was another connection i.e ( client-server) connection.

21816.

Who is father of computer science ?

Answer» RECT ANSWER is CHARLES BABBAGE
21817.

suppose tuple1=(36,96,88,74) ,in PHP which of the follwing is incorrect 1]print(tuple1[3]) 2]tuple1[3]=45 3]pring(min[tuple1]) 4]print(len[tuple1])

Answer»

e1[3]=45  is incorrect.A Tuple is a linear data structure LIKE ARRAYS,lists or VECTORS and is immutable (unchangable).  So, once a tuple is defined, no change can be made to it. In the above CODE, the tuple was defined as :tuple1=(36,96,88,74) and now, if we try to REPLACE tuple[3] which is 74, with any other value, it will cause an error. The

21818.

Through ChatOps, communication can be bi-directional. i.e. users can submit commands from the chat room to the bots, which direct the commands to the respective systems; the systems can automatically push status to the chat room directly.

Answer» HAT is your QUESTION in this HA
21819.

A company is developing a security policy for secure communication. In the exchange of critical messages between a headquarters office and a branch office, a hash value should only be recalculated with a predetermined code, thus ensuring the validity of data source. Which aspect of secure communications is addressed?

Answer»

ect of secure communication being addressed in this example is Data Integrity. Data Integrity means to ensure that the data is maintained properly and is consistent so that the integrity of the data isn't compromised. This is made sure using HASH values among which the most preferred and COMMONLY USED hashing algorithm is the SHA (Secure Hash Algorithm). Data Integrity is ONE of the most important concepts of secure communication.

21820.

A programmer writes a program to find an element in the array A[5] with the elements:8 30 40 45 70 the program is run to find a number X,that is found in the first iteration of binary search.what is the value of X?

Answer»

ue of X is 40.To understand this question, first we need to understand how binary search works. Binary search usually employs the use of three variables, which can be named as UL (upper limit) , ll (lower limit), mid (middle element). So, binary search slices the search domain into half with each pass. And how it's done is by assigning ul the value of the last index of array, ll the value of first index of the array which is usually 0 and then assigning mid = (ul+ll)/2.Now, with each iteration, first the element at mid is checked for equality with the search term. If it's a MATCH, the respective decisions are taken and the search is HENCE complete. If not, then the search term is compared with the term at mid and search domain for next iteration is adjusted by shifting either ll or ul to mid. Now COMING back to the question, if the number is found in the first iteration of the given array, then it MEANS that the element is at the mid(i.e.(0+4)/2). So the number which was searched is A[2], which is 40.

21821.

The timer prevents a long idle connection between two tcps and is called

Answer»

er that PREVENTS long idle connection between TWO TCPs is called Keep Alive timer. A KeepAlive is a MESSAGE that one TCP host sends to the other host to check if the link that is between both of them is not broken and is still FUNCTIONAL. Because a long idle connection MAY lead to problems later on when one of the hosts tries to send something to the other. So, as soon as the Keep Alive timer hits 0, it sends an ACK (acknowledgement) packet to the other host "keep the connection alive.

21822.

9th class half yearly exam paper computer 2018 19

Answer»

then what is your QUESTION from 2018-19 question PAPER???humm..

21823.

Is a directed tree in which outdegree of each node is less than or equal to two?

Answer»

Search Tree (also called BST) is a directed tree in which out degree of each node is LESS than or equal to two. A tree is a non-linear data structure in which each element has one PARENT element and may have any number of children ELEMENTS which further may have any number of children elements. A directed tree is a tree having specific relations between it's elements. For instance, in a Binary Search tree, the left child of an element is always smaller than it and the RIGHT child of the element it always greater than it.

21824.

write a program to enter an integer number and check whether it is a pal prime or not.where the number should be a prime number as well as palindrome.

Answer»

n in C++ =>#include #include using namespace std;bool palindrome(int n) { int i,R,s=0; for(i=n;i!=0;i=i/10) { r=i%10; s=s*10+r; } if(s==n) return TRUE; else return false;}bool prime(int n) { int i; if(n==1) return false; else { for(i=2;i<=SQRT(n);i++) { if(n%i==0) return false; } } return true;}int main() { int n; cin>>n; if(palindrome(n)) { if(prime(n)) cout<<"YES"; else cout<<"no"; } else cout<<"no"; return 0;}

21825.

Which element of a business document provides additional information but is not a part of the body of the text? A. subject B. footer C. salutation D. closing note

Answer»

r is an element of a business document that provides additional information but is not a part of the body of the TEXT. So, the correct answer is B. FOOTER. These MAY contain NAME of the company, phone numbers , email address, or website of the company. Sometimes these may merely contain the company name and COPYRIGHT information. A footer is not considered as part of the text body.

21826.

What is a printed report containing news or information of the activities of a business or an organization

Answer»

al report is a printed report CONTAINING news or information of the activities of a business or an organization. An ANNUAL report usually contains all the activities of the COMPANY or organization during that period and the account of FINANCIAL gains and losses during the concerned period. It contains financial statements like BALANCE sheet and auditor's report. It also contained a summarized section of the financial report.

21827.

A long strip of cloth bearing a slogan or design carried in a demonstration, procession or hung in a public place

Answer»

r is a long strip of cloth BEARING a SLOGAN or DESIGN carried in a demonstration, procession or hung in a public place. Banners may contain text as well as graphic DATA. These are generally used in protest, parades or any other public procession. Banners are efficient way of demonstration of an ideology or plain simple name of some organization effectively such that it's visible to everyone from distance.

21828.

A compliment card is a piece of card or high quality paper expressing friendship or any other sentiment.

Answer»

for your help in this you can do it is the same thing is that the same as the ONE I sent you can get some REST time waste avthumdhi I have to go BACK and forth with my rope to the store to Dec page for I can get some more info about the same time as the store is open

21829.

What is a form of paper advertisement used for wide distribution, posted or distributed in a public place, handed out to individuals or sent through the mail?

Answer»

ure is a form of PAPER advertisement used for wide distribution, posted or distributed in a public place, handed out to individuals or sent through the mail. It has been widely used since ages and is still prevalent in modern era. A brochure usually contains the information about NEW products or schemes of a COMPANY and are usually employed for PROMOTIONAL purposes.

21830.

MS - Publisher offers templates and other tools to help us create a variety of publications, including brochures, newsletters, ................, and ................

Answer»

blisher offers templates and other tools to help us CREATE a variety of publications, including brochures, newsletters, MAGAZINES , and brochures. MS Publisher makes PUBLISHING easy and accessible for each and every user, ranging from basic user to an expert user. It offers simple and EFFICIENT tools and layouts to create professional grade publishing material along with ease of working.

21831.

What is a piece of paper, cloth, wood or any other material which is painted with pictures or words and which gives some information about a particular place, product, or event

Answer»

oard is a PIECE of paper, cloth, wood or any other material which is painted with pictures or words and which gives some information about a particular place, product, or event. Signboards USUALLY contain the name and logo of the company or store. Signboards are of different shapes and sizes and may be SIMPLE, glowing or digital, DEPENDING upon the demand and NECESSITY of the moment.

21832.

A catalog cannot be a list of anything, arranged in some order.

Answer»

ve what this statement is referring to is catalog. It's a commonly misspelled word. A catalogue of a company, STORE or any brand is generally the list of it's AVAILABLE products arranged categorically with the general description, TECHNICAL specifications and few images of each product clicked from different angles. Catalogues make it very easy for a customer to go through all the products WITHOUT physically viewing each and every one of them.

21833.

A resume provides a summary of our ......... credentials, and other accomplishments and skills.

Answer»

e provides a SUMMARY of our academic credentials, and other accomplishments and skills. It contains all the scores of the CANDIDATE in major exams like high school, intermediate, GRADUATION, etc and other certifications or awards throughout his life compiled into a standard format. The description of each achievement is brief and apt. A resume should be well organized and the text arranged in it must not be cluttered. Some resumes MAY also have passport sized pictures of the candidate at the TOP.

21834.

What are Business Cards? Write steps for creating Business Card in Publisher?

Answer»

s cards are the SMALL standard sized cards containing important infor about a business, ORGANIZATION or individual. The information usually contained in a business card is the name of the organization/individual, one or two contact NUMBERS,ADDRESS of the office/headquarters and opening-closing time.The steps to create a business card using a Publisher software are-•Open the New File menu.•From the available set of layout categories, browse to Business Cards.•Now select the layout you prefer.•Add the text(address, name, contact numbers) and GRAPHICS (logo) to the card•Finalize by doing the minor edits that you want•Save the file and print the card.

21835.

What is something given to a person, a group of people, or an organization in recognition of their excellence in a certain field?

Answer»

d is something given to a person or group of people or an organization in RECOGNITION of their EXCELLENCE in a CERTAIN field. SOMETIMES the award given to a person or a group MAY be monetary sometimes along with a trophy or medal, or may be non-monetary along with simply a trophy/medal or any other memento. An awardee is usually chosen by a comittee whose composition differs from one award to other.

21836.

Write the steps for Moving Objects in publisher.

Answer»

ow GIVEN steps are to be followed to displace an object in the publishers, Step 1: Click the object or group of OBJECTS that we want to move. Step 2: Drag the object to a NEWER position. Step 3: Position the pointer on the object till the pointer transforms into move pointer. Note: If we are displacing a text box, we need to place the mouse pointer on the corner of the text box.

21837.

What are longer than resumes - at least two or three pages? a)Curriculum vita (CV) b) Banner c) Invitation d) Catalogue

Answer» KNOW MAN SORRY
21838.

How to print your Publication? Write their steps.

Answer» FILE > PRINT”. In the print section we can perform the following functions,* We can set the NUMBER of copies to be printed. * If there are many PRINTERS, we can select the required printer from which we need to print.* We can also select the orientation, SIZE, and margin of the pages.* We can also select the sides to be printed whether it is one side of the page or both the page sides.Finally, we can send our publication to the printer by clicking “Print” button.
21839.

Write the steps for Changing the design of Templates in publisher?

Answer»

ps for changing a TEMPLATE are - - OPEN New file menu.- SELECT ""PERSONAL"" and then double click the template that you want to CHANGE.- Make all the NECESSARY changes that you want.- Now select ""Save As"" from the menu.- Now select the directory where you want to save the template and click ""Save"".

21840.

Most publications are divided into several different areas called frames.

Answer» E STATEMENT is true.The data inside a publication is mainly arranged in frames.When we open a MAGAZINE, we can see the texts and images will be arranged in frames. The frames used for the text will be different from the frames used for images. These frames can be arranged to the requirement of the writer.These frames play a MAIN role in making a magazine or web page attractive.Thus, all the publishing software programs GIVE more features to the frames.
21841.

We can ______ and______on the handles to resize our frame.

Answer» DRAG and MOVE the FRAME to resize it.The Microsoft Publisher is mainly used to prepare a professional looking document. The “Text Frames” in the publisher is used to INSERT image and GRAPH required for the document. It helps the user to create a complex document very easily.So, people use MS publisher than MS word for professional things.
21842.

System use multiple processors to serve multiple real-time applications and multiple users.

Answer» UTED systems use multiple central processors to serve multiple real-time applications and multiple USERS. Data PROCESSING jobs are distributed among the processors accordingly. The processors communicate with one another through VARIOUS communication lines (such as high-speed buses or telephone lines).
21843.

Give comparison between desktop publishingand word processing software.

Answer»

h word processing softwares and publishing softwares are similar in a lot of aspects, there still are two major differences that SEPARATE them both:•Word processing softwares mainly DEAL with TEXT only and are not as efficient with IMAGES whereas Desktop Publishing softwares are more efficient for editing and formatting text as WELL as graphics.•With desktop publishing it is more easier to layout the text for the purpose of magazines,newspapers and books which is much more time consuming with Word processing softwares.

21844.

In Ink -jet Printer ,the ink cannot be absorbed into the paper and dries instantly.

Answer»

e statement is CORRECT. In the high quality INKJET paper, there's a coating of waxy film to keep the ink on the surface of paper. If the ink is absorbed too much, the prints in the paper will look a bit blurred, especially on the edges. This waxy film MAKES the OPTIMAL level of ink to be absorbed when printed.

21845.

Write the procedure of uploading a site.

Answer»

ps for uploading a site may vary according to the web hosting company that you're using. But a common way to CREATE your WEBSITE which is generally PRESENT in all the web hosting Cpanels is uploading via FTP. Here are the steps to uploading a website using the FTP web interface in your web hosting Cpanel-1. Login to your web hosting account.2. From the available OPTIONS in the Cpanel, try to     find the one that says- """"FTP File Manager"""" or something like that. Click on it.3.You'll be provided a username and password for the FTP interface on the Cpanel. Enter those credentials in the  FTP login page.4.In the root (outermost) directory, you'll find a folder named public_html (Note: Only this folder's files will be accessible to the public users). Open that folder.5.Now find the upload option and upload your website files INSIDE public_html.6.Congrats! Your website should be up and live now.Note:You can also upload the file using normal File Manager option in the Cpanel. The only thing to remember is that the website files should  be uploaded inside public_html.

21846.

What points are to be taken care of while designing a webpage?

Answer»

ortant points which should be considered while designing a web page are-• The text and images should be of appropriate size (not too large or small).•The website should have a responsive design. (i.e. The website should be comfortable to access on all sorts of devices like phones, tablets, phablets, ETC having DIFFERENT sized display screens.    •The buttons should be of CLICKABLE size and placed appropriately.•If the website design requires a colored BACKGROUND, then the background-text color combination should be such that the text is easy to read.•The text color should not be too bright.•The website should be light-weight and fast with a short loading time.

21847.

Programs that can be used to create books, magazines, newspapers, flyers, pamphalets, and many other kinds of printsed documents ? A) Desk publishing b) Desk top publishing C)Top publishing d)Publishing

Answer»

rect answer is B) Desktop PUBLISHING. Desktop Publishing software is used to design PAGES for magazines, NEWSPAPERS, pamphlets, etc. We have come across many such PUBLISHERS and their publishings. Yet, the TWO highly popular Desktop Publishing software is Microsoft Publisher and Adobe PageMaker. These programs can be used to efficiently create, format and manipulate text as well as graphic content.

21848.

How can Designer prevent loss of data and protect against malware and other damages.

Answer»

ps through which can be taken during website designing to prevent data loss and protect against cyber threats are-•Decide from the BEGINNING and take note of the elements in your website ( For instance,forms) which may be a cause of a web application VULNERABILITY and may be an injection POINT. So, safeguard the weak points from start. •Try using Model View Octopus (Model View Octopus) or Model View Control(MVC), where the code for a website is organized into THREE main parts- Model (containing the state/data of the page), View (or the display of the page and Octopus (which acts as an interface between model and view). The entire purpose of MVC/MVO APPROACH is the the Model shouldn't directly manipulate the Octopus.•Try checking the libraries in your tech stack of the website for vulnerabilities which may weaken the security of your website

21849.

Off line testing of a site should be done on a single browser only.

Answer»

statement is INCORRECT. Offline testing of a SITE should be DONE on as many browsers as possible. Not only multiple browsers, but also multiple devices. Nowadays, it has become a need of the moment to make the sites responsive (i.e. accessible for as many devices as possible.) since a major sector of population uses internet via devices other than PERSONAL Computers and laptops. So, it is important to check how the data is ARRANGED  on the screen in different devices and if the cached elements are working properly or not.

21850.

The modes of works to carry out for achieving the goal is called a. Work-strategy. b. Plan Strategy. c. Design Strategy. d. None of the above.

Answer»

Option : AThe modes of works to carry out for achieving a goal is called Work STRATEGY. Deciding a work strategy involves deciding the APPROACH that one's going to follow in order to finish the project. It involves the selection of tools and techniques which are going to be employed while DEVELOPING the project from beginning to the end stage of the DEVELOPMENT. It's one of the most IMPORTANT steps in planning a project.