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.

9151.

Write the steps to replace text that you have already finding​

Answer»

ANSWER:

kkkkkkkkkkkkkjjiiiiiiiiiiiiiiiiiiiiiii

9152.

Write statement for the following - create a database, open database , create table, describe structure,enter records​

Answer»
  1. A DATABASE is an organized COLLECTION of data, generally STORED and accessed electronically from a computer system.
  2. A database is an organized collection of data, generally stored and accessed electronically from a computer system.Open Database is an application programming interface that lets software connect with database management system.
  3. A database is an organized collection of data, generally stored and accessed electronically from a computer system.Open Database is an application programming interface that lets software connect with database management system.CREATE TABLE is the keyword telling the database system what you want to do.
  4. A database is an organized collection of data, generally stored and accessed electronically from a computer system.Open Database is an application programming interface that lets software connect with database management system.CREATE TABLE is the keyword telling the database system what you want to do. A structure is an arrangement and organization of interrelated elements.
  5. A database is an organized collection of data, generally stored and accessed electronically from a computer system.Open Database is an application programming interface that lets software connect with database management system.CREATE TABLE is the keyword telling the database system what you want to do. A structure is an arrangement and organization of interrelated elements.A record is a collection of fields, possibly of different data types, typically in a FIXED number and sequence.

HOPE HELPS

9153.

Presentation can be made by________methods. ​

Answer»

DIFFERENT.......

HOPE this HELPS U.......

9154.

A _____ is used to sort & find data faster​

Answer»

ANSWER:file

Explanation:

9155.

डिस्क्राइब द मेथड टू ड्रॉ टेबल इन एमएस वर्ड​

Answer»

ANSWER:

hello good afternoon friend

here is your answer

  • Open a blank word document.
  • In the top ribbon,press INSERT.
  • click on the table button.
  • EITHER use the diagram to select the NUMBER of columns and rows you need.
  • Or click insert table and a dialog box will APPEAR where you can specify the number of columns and rows.
  • The blank table will now appear on the page.

hope it helps you.

9156.

क्लिप आर्ट इज अ सिंगल पीस ऑफ रेडीमेड आर्ट​

Answer»

SORRY I can't UNDERSTAND your LANGUAGE.........

9157.

#includeint main(){for (i=0:1--4;i++) {printf("%d" ,i);if (i!=-3)break;}return 0;}

Answer»

ANSWER:

Hello please I think there is a mistake in the for loop statement. it should have some LOGICAL operator. Please check again and repost the question.

and if not then program will be ended at its first iteration because i = 0 is not equal to i != - 3;

Hope you understand. you can contact me if you want any further Information. I am a Computer Engineering STUDENT. I can HELP you well. just text message me on WhatsApp or anywhere.

my number is 8625996825.

don't worry I am a teacher and I have lot experience I can definitely help you for free.

9158.

True/falseeport present the data in a printed format​

Answer»

Answer:

FALSE

EXPORT present the DATA in a Microsoft OFFICE

9159.

2.Electronic Spreadsheet Software *1 pointa)c. writerO b)e. calcc)a. impressd)b. Adobe PhotoshopO e)d. Adobe Falah Player​

Answer»

EXPLANATION:

WRITER is the CORRECT ANSWER...

9160.

B) the text to be displayed when an imageCannot be shown can be specified using the whatattribute of the tag.the​

Answer»

ANSWER:

the attribute is 'alt'

Explanation:

alternative text here

See BRO IMAGE cannot be loaded for multiple reasons at such times this alt text is shown which describes the image. alt text ALSO help in improving the SEO of our website. Which you will learn ahead.

have a GOOD Day.

Thank You

9161.

Write a python code to find out the sum of square number 1 to 6 ​

Answer»

Answer:

ABC and DBC are two triangles on the same base BC such that A and D lie on the opposite SIDES of

BC, AB = AC and DB = DC. SHOW that AD is the PERPENDICULAR BISECTOR of BC.

9162.

________is a presentation software.​

Answer»

Answer:

POWERPOINT presentation

Explanation:

PLEASE MARK my ANS as brainliest

9163.

Explain the role of my documents and my computer in the desktop?​

Answer»

Explanation:

My Documents is the COMMONLY recognized name of a special folder in MICROSOFT Windows (even THOUGH starting with Windows Vista, it is called Documents only, and the ACTUAL name of the folder might be DIFFERENT when the language of the installed copy of Windows is not English.)

9164.

The sum of two consecutive integers in 39. find the two integers​

Answer»

ANSWER:

ANSWER

Let 2 integers are x(x+1) consecutive

⇒x+(x+1)=39

⇒2x+1=39

⇒2x=38

x=19

integers are 19 and 20

9165.

By default Footers are printed on :First PageO Last PageAll PagesEven PagesNext​

Answer»

ANSWER:

All page

I HOPE it will HELP U

9166.

Write a program using Java language to generate the cube of a given number.​

Answer»

Answer:

import java.util.SCANNER;

PUBLIC class FindingCube {

public static void main(String args[]){

INT n = 5;

System.out.println("Enter a number ::");

Scanner sc = NEW Scanner(System.in);

int num = sc.nextInt();

System.out.println("Cube of the given number is "+(num*num* num)

Enter a number ::

5

Cube of the given number is 125.

9167.

Which option is used to present data or information visually in the form of graphics, lle pyramid.charts, etc?​

Answer»

Answer:

The first way to present visual data is through the use of textual graphics, which are the use of text to create a visual message mainly through the use of tables. Tables are best suited for printed REPORTS to reveal business details. Tables consist of columns, rows and headings.

Explanation:

The correct visual presentation of your data helps communicate a business message more EFFECTIVELY. It provides a quick summary of information for individuals to skim and remember. Using visuals to present data can be ACCOMPLISHED through both textual and visual graphics. Let's take a look at each to see when it's best to choose one over the other.

Crazi TOYS' national sales meeting is next month, and the marketing team is creating a yearly summary of the toy industry. The team has been developing a multimedia slide show to inform the entire sales FORCE about the past year and also highlight upcoming product launches.

9168.

What is schema..? in dbms

Answer»

EXPLANATION:

MARK as BRAINLIST

PLEASE follow me and GIVE a thanks

9169.

Light pen is a pointing device​

Answer»

ANSWER:

The light is a hand held POINTING input DEVICE.

9170.

a) Consider an example of declaring the examination result. Design three classes: Student, Exam and Result. The Student class has data members such as those representing registration number, name etc. Create a class Exam by inheriting the student class. The exam class adds data members representing the marks scored in six subjects. Derive class Result from the exam class and it has own data members such as total_marks. Write an interactive program in C++ to model this relationship

Answer»

Answer:

#include

using namespace std;

 

#define MAX 10

 

class student

{

   private:

       char  name[30];

       int   ROLLNO;

       int   total;

       float perc;

   public:

       //MEMBER function to get student's details

       void getDetails(void);

       //member function to print student's details

       void putDetails(void);

};

void student::getDetails(void){

   cout << "Enter name: " ;

   cin >> name;

   cout << "Enter ROLL number: ";

   cin >> rollNo;

   cout << "Enter total marks outof 500: ";

   cin >> total;

     

   perc=(float)total/500*100;

}

void student::putDetails(void){

   cout << "Student details:\n";

   cout << "Name:"<< name << ",Roll Number:" << rollNo << ",Total:" << total << ",Percentage:" << perc;

}

 

int main()

{

   student std[MAX];        

   int n,loop;

     

   cout << "Enter total number of students: ";

   cin >> n;

     

   for(loop=0;loop< n; loop++){

       cout << "Enter details of student " << loop+1 << ":\n";

       std[loop].getDetails();

   }

     

   cout << endl;

     

   for(loop=0;loop< n; loop++){

       cout << "Details of student " << (loop+1) << ":\n";

       std[loop].putDetails();

   }

     

   return 0;

}

Explanation:

9171.

Write characteristics of computer system.​

Answer»

SPEED. A computer works with much higher speed and accuracy compared to humans while performing mathematical CALCULATIONS. ...

Accuracy. COMPUTERS perform calculations with 100% accuracy. ...

Diligence. A computer can perform millions of tasks or calculations with the same consistency and accuracy. ...

Versatility. ...

Reliability. ...

MEMORY.

9172.

What is network? describe the different typs of network.​

Answer»

Answer:

The computers on a network may be linked through cables, telephone lines, radio waves, satellites, or infrared LIGHT beams. TWO very common types of networks include: Local Area Network (LAN) WIDE Area Network (WAN)

9173.

Define web clint and web server​

Answer»

ANSWER:

and then we have been TRYING, but it WOULD

9174.

3. A remote of a car lock usestechnology(a) Wi-Fi(b) Infrared(c) Bluetooth4. An audio - visual file can have the following as an extension(a).wav(b) mpeg4(c).jpeg5. laas. Paas. Saas are the services provided by(a) Internet Service Provider(b) YouTube(c) Cloud service Provider​

Answer»

Answer:

3 bluetooth

4 jpeg

5 INTERNET SERVICE provider....

Explanation:

HOPE U understand....✌✌

9175.

Google calendar is a paid software true or false ​

Answer»

ANSWER:

Here's your answer mate

Google CALENDAR is not a PAID software.

So, the above STATEMENT is FALSE..

9176.

multiple choice question. 1. what is the keyboard shortcut to open an existing project? a. ctrl + S b. ctrl + O c. ctrl + P​

Answer»

ANSWER:

CTRL + O

Explanation:

ctrl + S :- to save file

ctrl + P :- to PRINT a file

9177.

How you will create a series of month of year​

Answer»

ANSWER:

This tutorial discusses how to use the autofill feature of Microsoft Excel to fill a spreadsheet column or row with NAMES of the months, or YEARS. We provide detailed worksheet examples for both sequential and non-sequential patterns.

fun intro image

We have a variety of autofill tutorials for you on the menu. Or check out How to Auto Fill Anything in Excel for fast instructions and LINKS to full tutorials.

Explanation:

If you like my answer and feel its correct for your question then just follow me nothing more needed

9178.

Write a program to display sum of the following series by scanner class 1/√2+2/√3+3/√4+4/√5+5/√6+6/√7+7/√8+8/√9IT'S ARGENT

Answer»

Answer:

Program to FIND the SUM of the series (1/a + 2/a^2 + 3/a^3 + … + N/a^n)

Given two integers

a and

n. The TASK is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.

Examples:

Input: a = 3, n = 3

Output: 0.6666667

The series is 1/3 + 1/9 + 1/27 which is

equal to 0.6666667

Input: a = 5, n = 4

Output: 0.31039998

9179.

The_______ is the brain of computer​

Answer»

Answer:

The COMPUTER brain is a MICROPROCESSOR CALLED the central processing unit (CPU). The CPU is a chip containing millions of tiny transistors. ... With RAM, COMPUTERS can read from and write to that memory.

9180.

3.Explain the relative and absolute cell reference in the spread?​

Answer»

ANSWER:

MKE the brainloest answer

Łêťß Béčømë Á Hãćkèř

9181.

N131 Welle altowsers do not developedhat developed by miedosoft.​

Answer»

ANSWER:

Yes

Explanation:

MAKE the BRAINLIEST answer

Łêťß Béčømë Á Hãćkèř

9182.

How can you insect in a presentation ​

Answer»

Make a Slide SHOW Presentation

Start by opening a "Blank presentation" in PowerPoint. ...

SELECT the "Title Slide" option. ...

TYPE in your title and subtitle. ...

Select a background for the entire presentation. ...

ADD NEW slides. ...

Set the transitions for your slides. ...

Add some more pizzazz to your presentation with animation!

9183.

Which among these is a type of form?i) Columnar ii) Design iii) Database iv) Tabloid​

Answer»

EXPLANATION:

TABLOID........

...........

9184.

Java program to store 20 numbers in array A and sort it in descending order using bubble sortguys my exam is going on I have time only till 11 o clock please help me complete my questions ​

Answer»

ANSWER:

MAKE the BRAINLIEST answer

Explanation:

Łêťß Béčømë Á Hãćkèř

9185.

Write program to reserve a number sample 512output 215​

Answer»

Answer:

CLS.

INPUT "ENTER any DIGIT"; n.

WHILE n <> 0.

r = n MOD 10.

s = s * 10 + r.

n = n \ 10.

WEND.

PRINT "Reversed digits is "; s.

Explanation:

9186.

मिनी टूल बार अपीयर ओनली व्हेन यू हाइलाइट टेक्स्ट ट्रू ओर फॉल्स​

Answer»

ANSWER:

don't KNOW....................

9187.

The_is the brain of computer​

Answer»

Answer:

CPU PLEASE FOLLOW me I will follow you and MARK me às brainlist

9188.

1. Write about successful keyboard tips?​

Answer»

Answer:

➜Position feet on FLOOR for balance (don't CROSS).

➜Center body to the "H" key with elbows a

sides

➜ Sit up straight.

➜Adjustable CHAIR so you are a "hand SPAN" AWAY from edge of keyboard.

➜Curve fingers over the home keys.

➜Keep wrists off the keyboard.

➜Keep eyes on printed copy.

➜Key by touch.

9189.

Excel 2003 offers function auto complete true or false​

Answer»

Your ANSWER in TRUE.

9190.

(2) Differentiate between choropleth and isopleth methods.​

Answer»

Answer:

choropleth method tint of same colour are used to value ACCORDING to distribution and they have one value assigned to the sub- administrative REGION. in ISOPLETH method lines of DIFFERENT shapes are used to show values according to distribution and here , value of the sub-administrative does not matter here.

Explanation:

hope it help you

9191.

राइट अ प्रोग्राम टू रिजर्व नंबर सैंपल 512 और आउटपुट 215​

Answer»

ANSWER:

bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb

Explanation:

9192.

The shortcut command for italic is _________​

Answer»

HEYA mate

Ctrl+A: Select all of the text on the page or in the active window. Ctrl+B: BOLD the SELECTED text. Ctrl+I: Italicize the selected text. Ctrl+U: Underline the selected text.

9193.

Explain if, elseif and else with the help of example i will malke him braillist answer and i will give hin 20 9oints

Answer»

ANSWER:

HI I am NISHITHA FOLLOW me

9194.

What is fax machine ? write the uses of fax machine.​

Answer»

Answer:

A fax machine is a device that is used to SEND DOCUMENTS electronically over a TELEPHONE network. The transmissions it SENDS are called “faxes, ” and these can be between two fax machines, or between a fax machine and computer or online fax service that is EQUIPPED to send and receive faxes.

Explanation:

9195.

java program to store 10 numbers in array a and 10 numbers in array b find its sum and product and store in array s and p​

Answer»

ANSWER:

MAKE the BRAINLIEST answer

Explanation:

Łêťß Béčømë Á Hãćkèř

9196.

Worksheet can not be deleted from a workbook , included those containg data true or false​

Answer»

Your answer in False.

You cannot delete a worksheet from a workbook if that workbook is being SHARED. You can REMOVE the active worksheet by selecting (Edit > Delete Sheet). You can quickly INSERT a new worksheet before the active sheet by using the shortcut key (Shift + F11).

9197.

1KB= ______bytes tell me please​

Answer»

Answer:

1000 BYTES

Explanation:

     1 KILOBYTES = 1000 bytes

9198.

Structures of column and row is called a cell​

Answer»

ANSWER:

STRUCTURES of column and row is CALLED a cell.

exactly brother

9199.

Use the following words in sentences of your own so as to bring out thedifference in their meaning clearly:Dua(ii) Duel​

Answer»

EXPLANATION:

urzxtuxxyxfzgjfhf,H,hxuxuryxyxxvucsexvxxxxxxxxxxxuzuxhgx

9200.

Records can be displayed in _____ order in the query results.i) Sorted ii) Unsorted iii) Related iv) Unrelated​

Answer»

ANSWER:

RELATED is the answer of this QUESTION