Sunday, 28 February 2016

GNIIT SEM B MT1 EXAM QUESTION

GNIIT SEM B MT1 EXAM QUESTION

1.Question–>Which of the following function used to specify the build version no. of the current scripting engine.?
Ans–> Script Build Version Engine.
2.Question–>Which of the following HTML  is used to group line of text in web page.?
Ans–> <P>.
3.Question–>The previous field of the first value of a double link list contain?


Ans–>The address of  null node.
The address of last node.
The address of itself node.
The address of the previous node.
4.Question–>Which of the following sorting algorithm is based on the divide and conquer approch.?
Ans–> Insertion Sort.
5.Question–>Sam creating–
1. Set Current = FRONT
2. Set FRONT = FRONT.NEXT
3.Release the memory.?
Ans–> 1.If FRONT = NULL.
a. Display “Queue is empty”.
b. Exit.
2. Set Current = FRONT
3. Set FRONT = FRONT.NEXT.
4. Release the memory  for the node marked as current.
6.Question–>Which of the following Insert Operation on a Queue?
Ans–> 1. If the queue is empty:
a. Set FRONT = 0.
2.Increment REAR by 1.
3. Store the element at index position REAR in the array.
7.Question–>Which of the following Delete Operation on a Queue?
Ans–> 1. Retriveve the element at index FRONT.
2. Increment FRONT by 1.
8.Question–>Which of the following  algorithm to find the inorder sucessor of a node in a thread binary tree.?
Ans–> 1.Identify the node for which you need to locate the inorder sucessor, and mark it
as currentNode.
2. If the right child of currentNode is a thread:
a. Mark the right child of currentNode as sucessor.
b. Exit.
3.Make currentNode point to its right child.
4. Repeat step 5 until the left of currentNode becomes a thread.
5. Make currentNode point to its left child.
6. Mark currentNode as sucessor.
9.Question–>Which of the following  step for traversing a binary tree in the inorder sequence DHBEAFCIG.?                                                                    A
/    \
Ans–> 1. Traverse the left subtree.                                                 B        C
2. Visit the root.                                                                     /    \      /   \
3. Traverse the right subtree.                                            D        E F     G
\                   /
H              I
10. Question–>Which of the following  step for traversing a binary tree in the preorder sequence ABDHECFGI.?
5
A
3/    \ 7
Ans–> 1. Visit the root.                                                                     B        C
2. Traverse the left subtree                                                1/  \ 4  6/   \ 9
3. Traverse the right subtree.                                            D      E  F     G
\  2            8/
H              I
11.Question–>Which of the following  step for traversing a binary tree in the postorder sequence HDEBFIGCA.?
1
A
2/    \ 6
Ans–> 1.Traverse the left subtree.                                                B        C
2.Traverse the right subtree.                                           3/  \ 5  7/   \ 8
3. Visit the root.                                                                 D      E  F     G
\  4            9/
H              I
12.Question–>Which of the following algorithm for the PUSH operation.?
Ans–> 1. If top = Max – 1:
a. Display “Stack Full”
b. Exit
2. Increment top by 1
3. Store the value to be pushed at index top in the array
13.Question–>Which of the following algorithm for the POP operation.?
Ans–>1. If top = -1:
a. Display “Stack Empty”
b. Exit
2. Retrieve the value stored at index top
3. Decrement top by 1
14.Question–>Which of the following  implement Algorithm DFS(v) using the stack  of Traversing a Graph .?
Ans–> 1. Push the starting vertex, v into the stack.
2. Pop a vertex from the stack.
3. Visit the popped vertex.
4. Push all the unvisited vertices adjacent to the popped vertex into the stack.
15.Question–>Which of the following  implement Algorithm BFS(v) using the Queue  of Traversing a Graph .?
Ans–> 1. Visit the starting vertex, v and insert it into the queue.
2. Repeat step 3 until the queue become empty.
3. Deleting the front vertex from the queue, visit all its unvisited adjacent vertices,
and insert them into the queue.
16.Question–>Which of the following  algorithm single starting vertex. Yoy can do this executing.?
Ans–> 1. Repeat step 2 for each vertex, v in the graph
2. If v is not visited:
a. Call DFS(v)
17.Question–>Which of the following Graph.?
5
(V1)———–>(V2)
|                      |     \
3|                   4 |       \   6
|                      |         \
(V4)———->(V3)—->(V6)
\          2       /     3
\                 /
6   \           /    3
\      /
(V5)
Ans–>Weight Graph
18.Question–>Which of the Linear search algorithm for an employee ID in an array?
Ans–>1. Read the employee ID to be searched
2. Set i = 0
3. Repeat step 4 until i > n or arr[i] = employee ID
4. Increment i by 1
5. If i > n:
Display “Not Fount”
Else
Display “Found”
19.Question–>Which of the following  algorithm to be searched for a desired element by using binary searched.?
Ans–>1. Accept the element to be searched
2. Set lowerbound = 0
3. Set upperbound = n – 1
4. Set mid = (lowerbound + upperbound)/2
5. If arr[mid] = desired element:
a. Display ” Found”
b. Go to step 10
6. If desired element < arr[mid]:
a. Set upperbound = mid – 1
7. If desired element > arr[mid]:
a. Set lowerbound = mid + 1
8. If lowerbound <= upperbound:
a. Go to step 4
9. Display “Not found”
10. Exit.
20.Question–> Which of the following algorithm to sort the list by using the insertion
sort.?
Ans–> 1. Repeat step 2, 3, 4, and 5 varying i from 1 to n – 1
2. Set temp = arr[i]
3. Set j = i – 1
4. Repeat until j becomes less than o or arr[i] become less than or equal to temp:
a. Shift the value at index j to index j + 1
b. Decrement j by 1
5. Store temp at index j + 1
21.Question–> Which of the following algorithm to sort the list by using the bubble
sort.?
Ans–>1. Set pass = 1.
2. Repeat step 3 varying j from 0 to n – 1 – pass.
3. If the element at index j is greater than the element at index j + 1, swap the
two elements.
4. Increment pass by 1.
5. If pass <= n – 1 go step 2.
22.Question–>Yoy are sorting a list using shell sort serveral distance poaition.?
Ans–> Shell sort.
23.Question–>Which of the following statement is not true about hasing.?
Ans–> Hasing function.
24.Question–> You are creating a first n natural no. which of the following  factorial algorithm reprents the correct recursive function to solve he probem.?
Ans–>1. If n = o, then:
a. Return(1)
2. Rturn (n *Factorial(n – 1))

25.Question–>Which of the following CANNOT be a static data structure?
Ans–>Linked list.
26.Question–>Which of the following CANNOT be a dynamic data structure?
Ans–> Arrary
27.Question–>Which of the insert value 55 in a height balanced tree and restore its balanced whenever required?
Ans–>A double rotation is required to restore the balance.
28.Question–>Which of the type of a graph has an ordered pair of vertices?
Ans–> Directed graph.
29.Question–>Which of the following algorithm, worst by selecting element from the list for a pivot and the partision the list into two parts the may or may not be equal?
Ans–>Quick sort.
30.Question–>Which of the following  reffred to the tecnick of defing in process in terms of its self?
Ans–> Recursion.
31.Which of the following  used for storing the keystrokes as you type on a keyboard?
Ans–> Keyboard buffering.
32.Question–>Which of the involves dividing the key value by the hash table to obtain the remainder of the division as the address of the record corresponding to the key value?
Ans–>Modular mathod.
33.Question–>Which of the following mid square the key, and then take some digit from the middle of the number as an address of the corresponding key?
Ans–>Mid Square method.
34.Question–>Which of the following first duivide the keys into parts and then add and them?
Ans–>Folding mehod
35.30.Question–>Which of the following storage area is divide into parts, the prime area and overflow area?
Ans–> Coalesced chaining.
36.Question–>Which of the following option is the  correct code snipped to add a row in a table with the border of with 5 pixels?
Ans–> <TABLE WIDTH = “5”>
<TR><TD> Joe </TD><TD> martin </TD>
</TR>
</TABLE>
37.Question–>Which of the following implemented linear order of the group?
Ans–>0(1)
38.Question–>Identy the correct sequence of steps required to display a website?
Ans–> 1. Register an account with the internet service.
2. Register a domain name.
3. Choose the services.
4. Upload the files on the web server.
5. Test the website.
39.Question–>Which of the following searches for the specified element at any node level.?
Ans–> // PRODUCTNAME
40.Question–>Which of the following select the PRODUCTNAME element, which exists within the parent of the corrent element?
Ans–> .. /PRODUCTNAME
41.Question–>Which of the following select the immediate child elements of PRODUCTDATA. If this operator occur at the start of the pattern, the child elements should be selected from the root node?
Ans–> / PRODUCTDATA
42.Question–>Which of the following Returns the largest integer that is less than or equal to the argument?
Ans–> floor(num).
43.Question–>Which of the following Returns the smallest integer that is less than or equal to the argument?
Ans–> celing(num)
44.Question–>Which of the following returns the sum of the all nodes in the node-set that is passed as the argument?
Ans–> sum(ns)
45.Question–>Which of the represents a time duration that recurse after a specific intervel.?
Ans–> recrringDuration
46.Question–>Which of the represents an instance of time that recurs every day?
Ans–>time.
45.Question–>Which of the represents  certain duration of time?
Ans–> timeDuration.
47.Question–>Which of the following derived from the atomic and list data types?
Ans–> Union data type.
48.Question–> yoy wants to create an attribute name PRODID?
Ans–> <xsdf:attribute name=”PRODID” type= “pID” use=”required”/>
49.Question–> Joe has created the following XSD schema a to declare the resuable data types that store product ID and order ID type which of the correct code resuable?
Ans–>  <schema xmlns=”http://www.w3.org/2001/XMLSchema”
targetNamespace=”www.ecomatcybershop.com/purchase”>
<simpleType name=”prstring”>
<restriction base=”string”>
<pattern value=”[P] {1}\d{3}”/>
</restriction>
</simpleType>
<simpleType name=”orstring”>
<restriction base=”string”>
<pattern value=”[o] {1}\d{3}”/>
</restriction>
</simpleType>
</schema>
50. Question–> You need to create another XML schema to declare the elements and attributes used to store the purchase order.this schema should contain a reffrence to the schema specified in tototype.xsd in order to be able to use the data type declared in that schema?
Ans–>  <schema xmlns=”http://www.w3.org/2001/XMLSchema”
targetNamespace=”www.ecomatcybershop.com/purchase”
xmlns:prd=”ecomatcybershop.com/purchase”>
<include schemaLocation=”potype.xsd”/>
<element Name=”PURCHASEORDER” type=”prd:purord”/>
<complexType name=”purord”>
<sequence>
<element name=”ORDER” type=”prd:ord”/>
</sequence>
<attribute name=”PRODID” type=”prd:prstring”/>
<attribute name=”ORDERID” type=”prd:orstring” use =”required”/>
</compexType>
<complexType name=”ord”>
<sequence>
:




:
</sequence>
</complexType>
</schema>
52.Question–> Which of the following algorithm that attempts to find the sum of the first n natural numbers?
Ans–> 1. If (n = 1)
Return(1)
2. s = n + Sum(n – 1)
3. Return(s)
53.Question–> Who can search for sorting algorithm?
Ans–> Binary search.
54.Question–> Which of the following linear algorithm has quardratic order of growth?
Ans–>O(n2).
55.Question–> Which of the following used as a parent for the TR and TD elements.?
Ans–>TBODY.
56.Question–> Which of the following used to represent a row in a table  container for theTH and TD elements?
Ans–> TR.
57.Question–> Which of the following used to add column headings?
Ans–> TH.
58.Question–> Which of the following used to specify headings for table?
Ans–>THEAD.
59.Question–> Which of the following top-level object in aa XML DOM?
Ans–> Document object.
60.Question–> You can provides the list of nodes present in an XML document for manipulation?
Ans–> NodeList object.
61.Question–>Which of the list inserted and deleted first-in-first out(FIFO)?
Ans–> Queue.
62.Question–>Which of the algorithem for heap tree?
Ans–> 1. Set last = n-1.
2. Convert the list arr[0] to arr[last] into a heap.
3. Swap arr[0] with arr[last].
4. Decrement last by 1.
5. If last>0, go to step 2.
63.Question–> Which of the following statement true about XML namespace?
Ans–> xmlns.
64.Question–> Which of the following creating style sheet product details PRODUCTID,PRODUCTNAME, and PRICE have to be stored in the order of the PRODID attribute. which of the correct code?
Ans–> <xsl:stylesheet xmlns:xsl=”http://www.w3.org/1999/XSL/Transform”
version=”1.0″>
<xsl:template match=” / “>
<xsl:for-each select=”PRODUCTDATA / PRODUCT”>
<xsl:sort select=”@PRODID” order=”ascending”/>
<LI>
<xsl:text>product ID: </xsl:text>
<font color=”red”><xsl:value-of select=”@PRODID”/>
</font>
<xsl:text>product Name: </xsl:text>
<font color=”red”><xsl:apply-templates select=”PRODUCTNAME”/>
</font>
<xsl:text> Price Per Unit (In U.s. $): </xsl:text>
<font color=”red”><xsl:value-of select=”PRICE”/>
</font>
</LI>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
65.Question–> Which of the following code to associate the XML document with the schema specified by user code script:
var namespace=xmlDoc.documentElement.namespaceURI;
xmlDoc.ValidateOnParse=true;
xml xsdschemacache = new ActivXObject(“Maxm12.XMLSchemaCache.6.0″);
xsdschemacache.add(namespace,document.frmTransform.TxtXSDFileName.value);
xmlDoc.schema=xsdSchemacache;
xmlDoc.load (document.frmTransform.TXTFileName.value);
?
Ans–>add
Read More »

Gniit SEM A MT2 Dumps C#

Gniit SEM A MT2 Dumps C#

  1. You are creating a Windows-based application that takes age from the user. The application should convert the age from character data type to integer data type. Which of the following functions you need to use to accomplish the desired task?
 1, Convert.ToInt32
2, convert.ToInt32
3, Parse.ToInt32
4, Convert.ToInt

  • 2.The _______ model is based on a real world perception that comprises a collection of objects or entities and the relationships among these.
1, ER
2, Network
3, Hierarchical
4, Relational
3.The ABC University used to offer a course in Visual Basic. However, due to less demand of the subject, the university dropped the course from its IT curriculum. This resulted in modification of the complete IT curriculum. Identify the type of entity that the Visual Basic course is.
1, Independent entity
2, Dependent entity
3, Weak entity
4, Subentity
4. A computer institute offers courses on various programming languages for students. The students can select any number of offered courses. Which type of relationship exists between the students and offered courses?
1, One-to-Many Relationship
2, Many-to-One relationship
3, Many-to-Many Relationship
4, One-to-One relationship
5. Sam is accessing a table that contains details of all the employees of his organization. He needs to retrieve the details of those employees who have more than $10000 salary per month. He has decided to use the PRODUCT relational operator to accomplish this task. However, his manager has informed him that the use of this relational operator will not give the desired result. Analyze the situation and provide the operator that Sam should use.
1, PROJECT
2, UNION
3, DIVIDE
4, RESTRICT
6. Smith works as a Manager in TechnoWorld, Inc. He manages and evaluates the performance of his team. Identify the entities and relationship in the given scenario.
1, Entities: Smith, team
Relationship: manage
2, Entities: Smith
Relationship: manage and evaluate
3, Entities: Smith, team
Relationship: evaluate
4, Entities: Smith,        team        Relationship: manage and evaluate
7. Identify the type of relationship in the following sentence: Software engineers can work on various programming languages.
1, One-to-One Relationship
2, Many-to-One Relationship
3, One-to-Many Relationship
4, Many-to-Many Relationship
8. There are _______ types of relationships that exist between entities.
1, one
2, two
        3, three   
4, four
9. Peter is working as a Senior Software Engineer in NewSol, Inc. His Employee ID is N0065. He joined the organization on 19 Aug, 2008. Identify the attributes of the entity instance.
1, Date of joining(19 Aug, 2008), Employee_ID(N0065), and Designation(Senior Software Engineer).
2, Employee_ID(N0065) and Designation(Senior Software Engineer).
3, Date of joining(19 Aug, 2008) and  Employee_ID(N0065)
4, Employee_ID (N0065)
10. Peter has been given a task to simplify a database structure. He has to represent the data and the relationships among them in the form of rows and columns. He has decided to use the Network model for completing this task. However, his manager has informed him that the use of this model will not generate the desired result. Analyze the situation and provide the correct model that Peter should use.
1, Hierarchical model
2, Conceptual model
                 3, Relational model
4, ER Model
11. Sam is working on two tables, Employee Details and Department Details. The Employee Details table contains employee ID, employee name, department ID, and designation of all employees. The  Department Details table contains department ID and department names. Sam has to retrieve the name of the department that has the maximum number of employees working. Which operator should Sam select for the given scenario?
1, Join
2, Intersect
3, Union
4, Product
12. Subtypes are connected to the supertype by a relationship known as _________.
1, one-to-one
2, one-to-many
3, many-to-many
 4, unnamed
13. __________ is a scientific method of breaking down complex table structures into simple table structures by using certain rules.
1, Normalization
2, Renormalization
3, Functional Dependency
4, Specialization
14. When each cell of the table contains precisely one value, the table is said to be in the ______ normal form.
1, first
2, second
3, third
4, Boyce-Codd
15. Jim works as a database administrator in TechnoSol, Inc. He has a table that contains details of employees and location of the meetings they have attended in the last one year. Jim has to normalize the table. The table columns consist the details of Employee ID, Department ID, meeting date, and location of the meeting. On analyzing the table he found that meeting date and location of the meeting columns consist of more than one value in each cell. Jim has decided to normalize the table by using second normal form. However, his manager has informed him that using second normal form for the given scenario will not be correct. Analyze the situation and provide the normal form that Jim should use.
1, BCNF             2, First normal form         3, Second normal form       4, Third normal form
16. A table lists the details of all the students studying in an institute. Identify the determinant among the four columns of the given table. Click the Exhibit button to view the table.
1, Student Name       2, Student Roll Number         3, Student Address       4, Student Fathers’ Name
17. Which of the following sentences is CORRECT about second normal form?
1, A table is said to be in second normal form if Boyce-Codd normal form is applied to it.
2, A table is said to be in second normal form when every attribute in a row is not functionally dependent on any particular key.
3,A table is said to be in second normal form, when every attribute in a row is dependent on just part of the whole key.
          4, A table is said to be in second normal form, when every attribute in a row is functionally dependent upon the whole key, and not just part of the key.
18. A table is said to be in _____ normal form when it is in second normal form and every non-key attribute is functionally dependent only on the primary key.
1, first      2,fourth           3, third           4, Boyce-Codd
19. Which of the following processes can increase disk space utilization?
1, Normalization        2, Denormalization  3,Generalization     4, Specialization
20. Stella is working on a table that contains the details of students who have appeared for different course exams. She has to normalize the table. The primary key of the given table is Roll Number + Exam Code. On analyzing, Stella found that any modification in Student Name column will lead to modification in the whole table and Student Name + Exam Code can also be chosen as the primary key. To avoid this redundancy, which normal form should Stella select? Click the Exhibit button to view the table.
1, 1NF     2, 2NF      3, 3NF        4, BCNF
21. Jim is working on an ER diagram. He has been instructed by his manager to map the given ER diagram to its corresponding tables. On analyzing the whole ER diagram, he is planning to create a table called Account Details. However, his colleague has advice him that creating only one table will not give the desired result. Analyze the given ER diagram and provide the tables that Jim should create.
1, Account Details  and Saving Account Details
2, Account Details , Current Account Details ,and Saving Account Details
3, Salary Account Details , Current Account Details ,and Saving Account Details
4, Account Details, Salary Account Details , Current Account Details ,and Saving Account Details
22. The _________ operator builds a relation from tuples appearing in either or both of the specified relations.
1, Project         2, Divide         3, Join         4, Union
23. The ________ model represents all data in a database as simple tables in the row-column format.
1, Relational           2, Hierarchical         3, Network         4, ER
24. Replacing optional attributes with subentities is called __________.
1, denormalization         2, normalization         3, generalization         4, specialization
25. Which of the following sentences is NOT correct about normalization?
3, There should be atleast one column that accepts a NULL value.
26. Which of the following sentences is NOT true about an attribute?
4, It cannot refer to another entity.
27. The Employee_Details table lists the details of an employee. If Employee ID is the primary key, identify the alternate key in the table?
  1. Click the Exhibit button to view the table.
2, Designation Code
28. In the database structure, a table is called by which of the following name?
3, Relation
29. Jack is working on a table that describes salary details of an employee. Which of the columns in the table will you use to uniquely identify all the rows of the table? Click the Exhibit button to view the table.
1, Employee ID +Account Number
30. Ryan is working on a table containing details of projects that the students have submitted after completing a course on a specific programming language.
31. The primary key in the table is Student ID + Project Code. Ryan is thinking of applying third normal form to simplify the table structure. On discussing with his senior, he found that his decision of selecting the third normal form is not correct. Analyze the given table and identify which normal form should Ryan select.
Click the Exhibit button to view the table.
2, Second Normal Form
32. John is working on a table that includes the details of employees and their departments. He has to normalize that table. The primary key of that table is Employee ID. Which normal form should he choose to simplify the table? Click the Exhibit button to view the table.
3, 3NF
33. Which of the following commands is used to initiate a chat session in Linux?
2, talk
34. Joe is communicating with Jack by using the Chat utility of Linux. Now, he wants to end the chat session. Which of the following commands would help him do so?
1, Ctrl + C keys
35. Kim has logged on to the Linux system. She received a query from the customer. To resolve the query, she has to communicate with the back office. Identify the correct sequence of steps that she needs to follow to communicate with the back office.
1, 1. Identify the user with whom she needs to communicate.
2. Check whether the user is online and ready to receive messages.
3. Identify the mechanism for communication.
4. Identify the contents of the message.
36. Joe is working on a Linux system. He has to chat with Angela. He first wants to check whether Angela is online and ready to receive messages. For this, he types the following command at the shell prompt and presses the Enter key:
  1. who
    However, the preceding command displays the list of currently logged on users. This list does not indicate whether the user is ready to receive messages. Identify the correct command that Joe should use to accomplish the required task?
2, who -T
37.  Which of the following options is NOT an example of Mail User Agent (MUA)?
4, sendmail
38. Which of the following statements is a function of Mail User Agent (MUA)?
4, MUA is used to read the message at the recipient’s end.
39. Jack is working on his Linux system. His boss has sent him a mail that lists the tasks to be performed by Jack. Jack has to access his inbox to read the new mails received on his Linux system. Identify the correct sequence of steps that Jack needs to follow to read the new mails.
3, 1. Type pine at the shell prompt, and press Enter.
2. Press L.
3. Select the relevant mail by using the up and down-arrow keys.
4. Press Enter.
40. Julia is logged on to the Linux system. She has to access her Inbox to read mails. She invoked the pine MUA and pressed the S key to display the list of folders. Analyze whether Julia has pressed the correct key to display the list of folders. If not, provide the correct solution.
2, No, Julia needs to press the L key.
41. Which of the following options do you need to press on the main menu of pine to configure the pine options?
1, S
42. You have sent a mail by using the pine utility of Linux. Now, you need to verify whether the mail has been sent or not. How will you perform this task?
3, By checking the contents of the sent-mail folder.
43. You have sent an E-mail to your friend by using the pine utility of Linux. After you have sent the mail, its copy is saved automatically in the sent-mail folder. Now, you need to verify this by checking the content of the sent-mail folder. Which of the following sequence of steps do you follow to perform this task?
1, 1. Press the M key.
2. Select the Folders List option, and press Enter.
3. Select the sent-mail option from the Folders List by using the Tab key, and press Enter.
44. You have a Linux system. You have to send an E-mail to your friend. For this, you performed the followed steps:
  1. 1. Type pine at the shell prompt, and press Enter.
    2. Press C.
    3. Type the name of the recipient in the To: block, and press Enter.
    4. Type the subject in the Subject: block, and press Enter.
    5. Type the contents of the mail.
    6. Press the Ctrl and C keys to send the e-mail.However, you are not able to send the e-mail by using the preceding steps. Identify the problem and provide the correct solution.
4, At step 6, the Ctrl and X keys should be pressed to send the E-mail.
45. Which of the following statements is NOT the correct file naming guideline of the Linux operating system?
2, A file name can have maximum of 286 characters.
46. Which of the following options do you need to press to switch to the Insert mode and then type the contents at the current cursor position of the vi editor?
1, i
47. Which of the following commands can be used to replace a character at the current cursor position and switch back to the Command mode?
4, r
48. You have written a file by using the vi editor. Now, you need to save the file by the name myfile.txt. Which of the following steps do you need to follow to save the file and close the vi editor?
1, 1. Press the Esc key.
2. Type :w /home/Complaints/myfile.txt, and press Enter.
3. Type :q, and press Enter.
49. You have opened a file in the vi editor. You have to make some changes in the third line of the file. The cursor is currently at the end of the second line. To make changes in the third line, you pressed the k command. However, the cursor moved to the first line instead of the third line. Analyze the situation and provide the correct command that should have been used to move the cursor from the second to the third line.
1, You need to press the j command to move to the third line.
50. You have to view the files stored in the /home/bill directory. You are currently in the bill directory. Which of the following commands would you use for this purpose?
1, ls
51. There are three files in the /home/math directory. The file names are math001.2009, math002.2009, and math003.2009. You need to copy all the files in the /home/math directory to the /home/backup directory. You are currently in the math directory. Which of the following commands would you use to perform this task?
4, cp /home/math/math00[1-3].2009 /home/backup
52. There is a file named myfile001.txt in the /home/mydir directory. You need to rename the file to myfile002.txt. You are currently in the mydir directory. For this, you typed the following command at the shell prompt:
  1. rm /home/mydir/myfile001.txt /home/mydir/myfile002.txt
    Analyze and predict whether the preceding command is able to accomplish the required task. If not, predict the correct command.
2, No, the correct command is:
mv /home/mydir/myfile001.txt /home/mydir/myfile002.txt
53. ABC Bank is offering personal loans to its customers at reduced interest rates. This offer is valid for only a limited period. The bank intends to use a software application to record all loan details. The bank wants that once the offer period ends, the interest rates and other details such as loan limits are changed to the original values. The bank does not want to modify the complete software application as a result of change in such loan details. Identify the tier on which the bank should place such details in order to accomplish their requirement.
3, Business tier
Read More »

Book Hive Corp Project

Book Hive Corp Project


CLICK HERE

Read More »

Thursday, 11 February 2016

Essay about my self: Introducing Yourself to Your Instructor

Subject: Introducing Yourself to Your Instructor

Introduction

My name is xxxxxxxxx. I am from India. I am in my first semester of senior year in Civil Engineering at Clemson University, SC. In this memo, I am going to tell you little bit about my background, interests, achievements and my goals.

Background
I was born in a small village called Bilimora. Bilimora is located about 70 kilometers south of the city of Surat which is 8th largest city in India, in the state of Gujarat. I spent my first 16 years of life in Bilimora. Bilimora is famous for temples, textile mills.
My everyday activities included going to school, playing cricket, watching television, and going to temple at the night time.


I spend my first 16 year of life in Bilimora before moving here in Greenville, SC on August 23, 2002 with my family. I started going to South Side Highschool as a sophomore and was enrolled in ESL program for a year. At South Side, I focused on achieving my goals including learning English language, participating in extracurricular activities, and doing well in all my classes. In my junior year, I had joined Math club, Robotics club and also enrolled in few honor classes. Along with school, I also found a part time job at a local restaurant to help my parents financially. Moving in to a new country and settling there (here) was a huge challenge for me and my family.

Interests
I like playing Chess and Cricket. I
always enjoyed reading, writing and doing math. Growing up as a child and until now, (my adulthood) it has been mine (my) and my parents dream for me to become a Doctor or an Engineer.
----- I decided to become a Civil Engineer because I have always been fascinated by looking at the bridges, buildings, and skyscrapers.
------I decided to become a Civil Engineer because I am always fascinated by looking at the bridges, roads, and skyscrapers.

A degree in Civil Engineering enables me to achieve my goals and also gives me an opportunity to make a difference in the community.

Achievements:
I have achieved many different goals in life. Some of my achievements are bigger than the others, which has given me greater satisfaction. The top five achievements that gave me the greatest personal satisfaction includes:
1. Being student of the month in my English class
2. Getting my first job
3. Going to college
4. Learning English language
5. Getting my driver's license
My achievements have helped me to get ahead in life.


Goals
I hope to get better at technical communication this term. Five years from now, I want to become a project manager of a construction project, and technical communication is one of the most important skills that a project manager should have. As a project manager, my primary goals are managing people, set budgets, and making decisions of all kinds.

need help with editing and grammar
thank you.........................
Read More »

HOW TO GIVE SELF INTRODUCTION IN INTERVIEW

THIS POINTS ARE VERY MAIN PART OF SELF INTRODUCTION:









1. Start with a smile on your face & give details about Name, Place after greeting.
2. If necessary only add your family details.
3. Tell about your educational details.
4. Share about why you want to do JOB so.
5. About your Project in Brief.
6. The person who inspired you a lot.
7. Then about your intrests/hobbies.
8. Also how you will spend your time when you are free.
9. Tell about skills.
10. Then conclude by saying THANKS to the Person who is listining to you.

FOR EXAMPLE:1

Well, good morning sir/madam,

Hi Friends, my name is shivaji rao patil from Hyderabad. I parsuing my B-Tech in stream of computer science and engineering from nict college, xxx with aggregate 65%. I have completed HSC from GURU BASAVA junior college with aggregate of 6% and SSC from Pratibha we. N. High school with aggregate 73%.

We are five in my family. My father is a private employee and my mother is a homemaker. I have two sibblings.

About my achievements, I never made any achievements at state level. But in my schooling I got certificate in singing level competition. In college I got NSS certificate which I participated as volunteer in my 1st year of engineering.

My strengths are hardworker, self motivating and dedicated towards my work. And also I'm a good learner as well as teacher.

My hobbies are making crafts, painting, surfing net.

My short term goal to get placed in well reputed company.

My long term goal to palced in any mnc company and give my best to your.

Organisation.

As a fresher, I don't have any working experience, but I will prove once the opportunity comes.

FOR EXAMPLE:2

Good morning mam/sir.

It's my pleasure to introduce my self..well, I'm Rehana born and raised in Anantapur.
I have done my schooling in Little flower Montessori English Medium High School with 77% ,then i did my plus 12 from S.S.B.N junior college with 77.7% and now i'm pursuing my final year B.tech from Anantha Lakshmi Institute of Technology and Sciences Anantapur with an aggregate of 78.33%

My strengths are my attitude that i like to take challenges that I CAN do it,my way of thinking that i take both success and failure in a balanced manner..
I dont like to say weakness but i like to say scope for improvement that is i wont leave any ask in completely,i believe in my self and my hard work and i want perfection in every thing.

My short term goal is i want a such a platform where i can grow my career along with the organisation growth like yours and
My Long term goal is i want to be one of the reason for the success of the organisation and i want to seeyour organisation as a bench mark to other organisations.

My ethic is "i never neglect an opportunity for my improvement".

thats all about me sir....thank you for giving me such a wonderful oppurtunity.

FOR EXAMPLE:3
My name is XXX and I am from Chennai. I am currently studying Finance and Economics at Hong Kong University. I was raised in Bengalu and when I was 18 I moved to Hong Kong to take my university study. Last year I went to London to join the school's exchange program. During my exchange I went backpacking with other backpackers from all over the world to other countries across Europe. It was a fun experience. I think I have been fortunate enough to be able to live in different parts of the world and thus be able to broaden my horizon.

I have a strong interest in banking and financial services industry. The reason is I'd like to leverage my detail-oriented mind and apply the skills and knowledge that I have attained throughout my degree courses. I see myself as a people-oriented and over-achiever person. I demonstrated this through working in various group projects with different types of people in which I had been able to perform well.

I would like to be part of your company to further develop myself in banking field and to use my capabilities to serve both your company and your clients.

(Note: all locations here are fiction, the rest is based on my factual experience even though some parts have been distorted a little bit. The purpose is just to let you know a structure of self-introduction that I think is good and appropriate.)

FOR EXAMPLE:4
Good morning sir/madam,

It's my pleasure to introduce myself. I'm sunil from delhi. Currently, I'm pursing my final year electronics and communication engineering from meri college of engg n tech with an aggregate of 79%. I completed my +2 from government co edu senior secondary school also I have done my schooling from same school
My father is a government employee and my mother is house wife

My strengths are my attitude that I like to take challenges that I CAN do it, self motivated person, self disciplined I am a good team player as well as has a good ability to lead the team. I can adopt to any kind of environment. I am a good listener and quick learner.

My weakness is I can not tolrete any leniency in work
My short term goal is I want a such a platform where I can grow my career along with the organisation growth like yours and.

My Long term goal is I want to be one of the reason for the success of the organisation and I want to see your organisation as a bench mark to other organisations

Thats all about me sir. Thank you for giving me such a wonderful oppurtunity.

FOR EXAMPLE:5

Good morning sir/madam;

Firstly I would like to thank you for giving me this opportunity and it's my pleasure to introduce myself.

I am arun from erode tamil nadu. I completed my BCOM with CA from arulanadar college it affiliated to Madurai kamaraj university with 64.5% and i have completed my +2 from government higher secondary school with 63.58%.I have done my schooling from same school.

Telling me about my family my mother working in school my father was passed away And coming to my hobbies are net surfing, playing chess.

I am fresher and have no work experience in any company.

My strength is i can adopt easily in any type of environment.

My short term goal is to get placed in a reputed company like yours which will give me an opportunity to enhance my skills and Knowledge.

My long term goal would be reaching the higher position in your company.


That's all about me sir .Thank you for giving such a wonderful opportunity.

FOR EXAMPLE:6

Good morning mam/sir.

It's my pleasure to introduce my self. Well, I'm VINITHA born and raised in Anantapur.

I have done my schooling in Little flower Montessori English Medium High School with, then I did my plus 12 from NARAYANA JR COLLEGE and now I'm pursuing my final year B-Tech from CBIT.

My strengths are my attitude that I like to take challenges that I CAN do it, my way of thinking that I take both success and failure in a balanced manner.

I don't like to say weakness but I like to say scope for improvement that is I won't leave any ask in completely, I believe in my self and my hard work and I want perfection in every thing.

My short term goal is I want a such a platform where I can grow my career along with the organisation growth like yours and.

My Long term goal is I want to be one of the reason for the success of the organisation and I want to seeyour organisation as a bench mark to other organisations.

My ethic is "i never neglect an opportunity for my improvement".

Thats all about me sir. Thank you for giving me such a wonderful oppurtunity.

FOR EXAMPLE:7

Good morning sir/madam;

Firstly I would like to thank you for giving me this opportunity and it's my pleasure to introduce myself.

I am satyagiri from A.P. I have completed my M.C.A from swami ramananda college of engineering with an aggregate of 74%.I completed my UG from Ekashila college it affiliated to kakatiya university with 60% and i have completed my +2 from s.v college with 65%.I have done my schooling from Z.P,H.S high school.

Telling me about my family bock ground my father is former and my mother is helping to my father.we are four siblings my elder brother is teacher and my younger brothers are studying.And coming to my hobbies are net surfing,playing cricket.

I am fresher and have no work experience in any company.

My strength is i can adopt easily in any type of environment.

My short term goal is to get placed in a reputed company like yours which will give me an opportunity to enhance my skills and Knowledge.

MY long term goal is i want to be one of the reason for success of the organization and i want to be one of responsible person in organization growth.

that's all about me sir .Thank you for giving such a wonderful opportunity.

FOR EXAMPLE:8

Good evening sir/madam
I am glad to be here for this interview.thanks for given this chance to show myself.

My name is XXX from YYY.I have a B.Tech degree with a major in Information Technology field.Graduated in XXX college in 2011 and secured 74% mark in degree.

I am seeking an opportunity to work as a software engineer.As i have the necessary skills you specified for the educational qualification and having solution based thinking in every tasks,I will work in time and fulfill the tasks allotted to me.

I was not achieve big,but i was the one of the good in the environment i met.I got prizes for my academic excellence.

My good thing is positive thinking.My negative point is i would like to do everything with myself,its from my childhood habit and i get some more experience by being like this.

My goal:i always wants to finish my every day work correctly.It will lead me to a good position.

My roll model is YYYY because of his effective use of time and the way communicate with others.

Telling about my family background,My mum is working as a school teacher and my sister is studying BE.As my mum and relatives are educated,i bought up by them well discipline and correct in my work.

I am expecting to be a colleague in someday.

FOR EXAMPLE:9


Good morning sir/madam,
I am Mukesh Kumar,Basically I am from Bihar.I belongs to Vaishali District.I am belongs to a family where discipline does matter.My father is in police department and my mother is housewife. I have 2 brother and 2 sister.

About My qualification, I have completed Bachelor of engg. from cec bilaspur in the year 2011. I have done +2 from Kendriya Vidyalaya Jawaharnagar located at Bihar and I have done schooling from sitamarhi high school which is near at my hometown.

A part from that I have also completed MCP Certtification in ASP.NET with version 2.0.

I am a good listener as well as good learner.I can hard work to achieve my targets in time. I am self confident,positive attitude and patience.

My hobbies including to help my mother in her some time work and listining music.

My short term goal is to join your organization and enhance my skills. My long term goal is to see your organization at peak level where I am one of the person responsible for it.

About My achievements I have choosen vice president of my college in my final year and I have scored 83% in MCP certification.

My weakness is fear,But I will overcome from this.

FOR EXAMPLE:10


(This is not a big introduction.Try to say it and you will see it finishes in less than 2mins.But I occasionally added some comments with in () to give you some tips.I hope it helps)

Hello Sir/mam;

It's my pleasure to introduce myself to you.My name is Yashaswini Mohanty.I was born and raised in Cuttack city of Odisha.I completed my education from there as well(Not mentioning the details of education,because it's already on my cv).

I have a beautiful family of five members.My father is a retired Govt Employee.My mother is a homemaker.I have two elder sisters and both of them work in different MNCs.

My hobbies are drawing,painting,reading books(say this only if you read some nice motivational books.They might ask you to name some of the books you read. Then if you will say something like Harry Potter and Twilight,it will show how childish you are.)

My achievements are,I was selected as the class representative in my college.(Shows your managerial skills).I self taught myself photoshop and participated in many online digital art competitions.I was selected in State Talent Scholarship Examinations conducted by World Health & Education services of Odisha.I have participated in many blood donation camps by Red Cross Organizations.

My greatest strength are I'm a fast learner,smart and hard worker.(Mention Hardwork after Smart work.They always need organized smart worker than hard but dumb workers.I was told this by a HR and member of interview panel board.)My greatest weakness are my love for food,but I'm trying to overcome that.(You can add something really unimportant thing that won't affect your work.Or you can say my weakness I don't have any real time experience in the software field as I'm a fresher.As said by Jothi Boss,but different interviewers can take different meaning out of it.)

My short term goal is to be placed in a MNC and my long term goal is to be the member of the team that is responsible for the success of the organization I'm placed in.

That is all about myself and thank you for giving me an opportunity to introduce myself to you.

Ps:-I tried to keep this informative as well as short and free of errors,but if did some mistakes,then let me know :)
Read More »