For what, Memo data type is used? (a) To add table (b) To store objects created in other programs -Technology

1 Answer

Answer :

(c) As we know, Memo provides character upto 65536 so, it is used for long text entries.

Related questions

Description : Memo data type allows you to store character type values in a table. -Technology

Last Answer : True Memo data type allows upto 65536 characters.

Description : Memo data type allows you to store only 255 characters in the table. -Technology

Last Answer : False Memo data type is used when character size is more than 255.

Description : Write one example of data for which Memo data type is used. -Technology

Last Answer : To store resume of an employee in Employee table is an example of Memo data type.

Description : When Memo data type is preferred over Text type for a field? -Technology

Last Answer : When the length of the field is more than 255 characters. Text data type is not capable to store the project description because its length cannot be more than 255 characters so, Memo data type is preferred over the Text data type.

Description : Distinguish between Text and Memo data types. -Technology

Last Answer : Distinguishing between Text and Memo are as follows:TextMemoIt is used for relatively short entries.It is used for long text paragraphs.It can store upto 255 characters only.It can store upto 65536 ... the number of characters.It does not use field size property.e.g. Emp_namee.g. Emp_description

Description : How are field types Text and Memo different from each other? -Technology

Last Answer : Distinguishing between Text and Memo are as follows:TextMemoIt is used for relatively short entries.It is used for long text paragraphs.It can storeupto255 characters only.It can storeupto65536 characters. ... number of characters.It does not use field size property.e.g. Emp_namee.g. Emp_description

Description : A table named School (containing data of students of the whole school) is created -Technology

Last Answer : AdmissionNo should be set as the primary key because admission numbers are unique for each and every student of the school, which is not possible in the case with RollNo and Name.

Description : In a school, a database named “school” is created in mysql whose password is “cbse”. Smith is trying to add a new record of a student having details -Technology

Last Answer : import mysql.connectormydb = mysql.connector.connect{host='localhost',user='root',passwd='cbse',database='school'}mycursor = mydb.cursor()mycursor.execute('INSERT INTO student values(3,'Michelle', 'Agartala');')mydb.commit()

Description : Can a voice memo be used as a ringtone on the iPhone 3GS?

Last Answer : answer:Take the recording and put it into itunes, then, right click and click Create AAC version. Then, drag the new file onto the desktop. Rename it from .m4a to .m4r , and you have a ... straight forward., although I am a major techy. I don't get why itunes doesn't have this feature.

Description : A relationship cannot be created with the help of a table. -Technology

Last Answer : False A relationship is a connection between two tables of data.

Description : What are table sections? How can they be created? -Technology

Last Answer : In HTML tables, there are three different sections: header, body and footer. These sections can be created using (header section), (body section) and (footer section) tags.e.g MonthSavings January$100February$80Sum$180

Description : Ms. Shalini has just created a table named “Employee” containing columns Ename, Department, Salary. -Technology

Last Answer : SQL command to add a primary key column:Alter table employee add empid int primary key;Importance of Primary key in a table:Primary key column is used to uniquely identify each record of the table. A column defined as primary key cannot have a duplicate entry and can't be left blank.

Description : Mr. Manav, a database administrator in “Global Educational and Training Institute” has created following table named “Training” -Technology

Last Answer : i. Select count(name) from training where name like ‘Ms.%’;ii. Select * from training where fee is NULL;iii. Select city, fee from training where topic = ‘Cyber Security’;iv. Alter table training add feedback varchar(20);

Description : What are Macros: a) Small add - on programs that are installed afterwards if you need them b) Small programs created in MS - Word to automate repetitive tasks by using VBA c) Automatic Virus Scanning Programs d) None of The Above

Last Answer : b) Small programs created in MS - Word to automate repetitive tasks by using VBA

Description : To store object like image, you need to create a field in a table, having field type as …………. . -Technology

Last Answer : To store object like image, you need to create a field in a table, having field type as OLE Object.

Description : How can you add a record in the table in Datasheet View? -Technology

Last Answer : Insert a RecordSteps to insert a record in a Datasheet View are as follows:Step 1When you create a table, a new blank record automatically appears in the second row of the table or If you enter ... into the fields.Step 3When you have finished adding records in the datasheet, save it and close it.

Description : In order to add border to a table, border attribute is specified in which tag? (a) (b) -Technology

Last Answer : (b) border attribute is specified in tag.

Description : Memo ”Why is data type used ?

Last Answer : Data type ( Memo) is used for descriptive writing or description . 65536 characters (letters , numbers , symbols , dates, etc.) can be written for this field . Usually the do type memo of that field is used for writing comments.

Description : Explain in detail about Data objects in C Language. -Technology

Last Answer : Definition: A Data object represents a container for data values, a place where data values may be stored and later retrieved.Definition: A runtime grouping of one or more pieces of data in a virtual ... component is often represented by a pointer value. And may be modified by a change in pointer.

Description : Sanchita is working for a nationalized bank and is in the process of creating a table to store the details of customers of the bank. -Technology

Last Answer : Primary key AccountNoCandidate key AccountNo and PAN NumberAlternate key PAN Number

Description : You cannot insert ………………… into a main document until after the data source has been created in Word. -Technology

Last Answer : fields into a main document until after the data source

Description : Copy of data created for safe storage is ………… -Technology

Last Answer : Copy of data created for safe storage isback up.

Description : Copy of data created for safe storage is a) Saved copy b) Backup c) Dcopy d) Stored copy -Technology

Last Answer : Copy of data created for safe storage isBackup

Description : The primary purpose of software is to turn data into _____ 1) Web sites 2) Information 3) Programs 4) Objects 5) None of these

Last Answer : Answer :2

Description : The primary purpose of software is to turn data into: a) Information b) Programs c) Objects d) None of These

Last Answer : a) Information

Description : The primary purpose of software is to turn data into ______: a) websites b) information c) programs d) objects e) None of The Above

Last Answer : b) information

Description : The primary purpose of software is to turn data into a) Websites b) Information c) Programs d) Objects e) None of these d) Sub Directory e) None of these

Last Answer : d) Sub Directory

Description : The primary purpose of software is to turn data into 1) Websites 2) Information 3) Programs 4) Objects

Last Answer : 2) Information

Description : What data type should you choose for a zipcode field in a table? (a) Text (b) Number -Technology

Last Answer : (b) Number data type should be chosen for a zip code field in a table.

Description : Help Ramesh in identifying any two columns for a table named student along with their suitable data type. -Technology

Last Answer : Column NameData TypeRollNoIntegerNameVarchar(20)

Description : While creating a table named “Employee”, Mr. Rishi got confused as which data type he should chose for the column “EName” out of char and varchar. -Technology

Last Answer : Varchar would be the suitable data type for EName column as char data type is a fixed length data type while varchar is a variable length data type.Any employee‟s name will be of variable length so it‟s advisable to choose varchar over char data type.

Description : Name the data type that should be used to store Student’s Admission numbers. -Technology

Last Answer : Data type should be Text.

Description : Write the data type of variables that should be used to store : 1. Marks of students 2. Grades of students (Grade can be ‘A or ‘B’ or ‘C’) -Technology

Last Answer : (i) int data type(ii) char data type

Description : Name the data type that should be used to store AccountCodes liko “A1001” of Customers -Technology

Last Answer : varchar data type should be used to store AccountCodes like ”A100111 of customers.

Description : In SQL, the CREATE TABLESPACE isused A. to createa place in the databasefor storageof scheme objects, rollback segments, andnaming the data files to comprise the tablespace B. to createa database trigger C. to add/rename data files, to change storage D. All of theabove E. None of the above

Last Answer : to createa place in the databasefor storageof scheme objects, rollback segments, andnaming the data files to comprise the tablespace

Description : ) One of the initial project documents, issued by senior management, which outlines the  authority of the project manager, is called Project charter. As a seller, what other document can  be used in this place: 1. Work breakdown structure  2. Project scope  3. Contract  4. Internal memo

Last Answer : 3. Contract

Description : Memo of admission of payment is obtained a) When duplicate money order are issued b) When a money order is lost before payment c) When a money order is lost after payment d) When money order was paid to a person other than the payee

Last Answer : c) When a money order is lost after payment

Description : Data is stored in RDBMS in the form of (a) table (b) query -Technology

Last Answer : (a) Relational Database Management System stores data in the form of relation. As we know, relations are known as table.

Description : Out of the following, which one is the most appropriate data field in context of employee table, if only one of these is required? -Technology

Last Answer : (b) Date of birth is the most appropriate data field in the context of the employee table.

Description : ………….. is the smallest part of a table in which one data item can be kept. -Technology

Last Answer : Fieldis the smallest part of a table in which one data item can be kept.

Description : Which field property helps in setting data validation in a table? -Technology

Last Answer : (d) Validation Rule property specifies a condition that must be met before the data is accepted into the database.

Description : The Datasheet View displays the data in a table in tabular format. -Technology

Last Answer : True A datasheet is a simple view of data arranged in rows and columns.

Description : Design View allows users to enter data in the table. -Technology

Last Answer : False Because Design View is used to edit the table design only.

Description : The tag is used to specify the individual table data in a table. (a) (b) -Technology

Last Answer : (b)The tag is used to specify the individual table data in a table.

Description : Which one of the following is not an option for aligning data in a table? (a) justify (b) right -Technology

Last Answer : (a) justify option is not used for aligning data in a table.

Description : In the tag, td stands for (a) Table Data (b) Table Time and Date -Technology

Last Answer : (a) td stands for Table Data.

Description : What is data cell? Name the tag, which is used as data cell. -Technology

Last Answer : The data cell defines a cell of a table that contains data. The table data cell is coded with tag of tag. Here, td stands for Table Data. The content in the table data cell is normal and left-aligned.

Description : …………… tag is used to insert data into a table. -Technology

Last Answer : tag is used to insert data into a table.

Description : Write the code in python to read the contents of “number.csv” file consisting of data from a mysql table and print the data of the table -Technology

Last Answer : f = open('numbers.csv', 'r') with f:reader = csv.reader(f)for row in reader:for e in row:print(e)

Description : Consider a table SALESMAN with the following data: SNO SNAME SALARY BONUS DATE OF JOIN A01 Beena Mehta 30000 45.23 29_10_2019 A02 K. L. -Technology

Last Answer : alternative answer