Data Structure using C (CSIT124)-Semester II

Data Structure using C (CSIT124)-Semester II

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

1st Module Assessment

Which of these best describes an array?

Select one:

a. A data structure that shows a hierarchical behavior

b. Container of objects of similar types

c. Arrays are immutable once initialised

d. Array is not a data structure

Question 1. Which of the following operations is not O(1) for an array of sorted data. You may assume that array elements are distinct.

Select one:

a. Find the ith largest element

b. Delete an element

c. Find the ith smallest element

d. All of the above

Clear my choice

Question 2. Which of the following highly uses the concept of an array?

Select one:

a. Binary Search tree

b. Caching

c. Spatial locality

d. Scheduling of Processes

Clear my choice

Question 3. Two-dimensional arrays are also called

Select one:

a. tables arrays

b. matrix arrays

c. both of above

d. none of the above

Clear my choice

Question 4. Elements in an array are accessed _____________

Select one:

a. randomly

b. sequentially

c. exponentially

d. logarithmically

Clear my choice

Question 5. The memory address of the first element of an array is called

Select one:

a. floor address

b. foundation address

c. first address

d. base address

Clear my choice

Question 6. Assuming int is of 4bytes, what is the size of int arr[15];?

Select one:

a. 15

b. 19

c. 11

d. 60

Clear my choice

Question 7. What are the advantages of arrays?

Select one:

a. Objects of mixed data types can be stored

b. Elements in an array cannot be sorted

c. Index of first element of an array is 1

d. Easier to store elements of same data type

Clear my choice

Question 8. When does the ArrayIndexOutOfBoundsException occur?

Select one:

a. Compile-time

b. Run-time

c. Not an error

d. Not an exception at all

Clear my choice

Question 9. In general, the index of the first element in an array is __________

Select one:

a. 0

b. -1

c. 2

d. 1

Clear my choice

Question 10. How do you initialize an array in C?

Select one:

a. int arr[3] = (1,2,3);

b. int arr(3) = {1,2,3};

c. int arr[3] = {1,2,3};

d. 1.     int arr(3) = (1,2,3);

Clear my choice

What is the maximun number of dimensions an array in C may have?

Select one:

a. Two

b. eight

c. sixteen

d. Theoratically no limit. The only practical limits are memory size and compilers

Question 11. Which of the following is an illegal array definition?

Select one:

a. Type COLONGE : (LIME, PINE, MUSK, MENTHOL); var a : array [COLONGE] of REAL;

b. var a : array [REAL] of REAL;

c. var a : array [‘A’…’Z’] of REAL;

d. var a : array [BOOLEAN] of REAL;

Clear my choice

Question 12. What is the output of the below code?

#include <stdio.h> 

                int main() 

                { 

                   int arr[5]={10,20,30,40,50}; 

                   printf(“%d”, arr[5]); 

                  }

                    return 0; 

                }

Select one:

a. Garbage value

b. 10

c. 50

d. None of the above

Clear my choice

Question 13. A program P reads in 500 integers in the range [0..100] exepresenting the scores of 500 students. It then prints the frequency of each score above 50. What would be the best way for P to store the frequencies?

Select one:

a. An array of 50 numbers

b. An array of 100 numbers

c. An array of 500 numbers

d. A dynamically allocated array of 550 numbers

Clear my choice

Question 14. Consider an array A[20, 10], assume 4 words per memory cell and the base address of array A is 100. What is the address of A[11, 5] ? Assume row major storage.

Select one:

a. 560

b. 565

c. 570

d. 575

Clear my choice

Question 15. What is the output of the following piece of code?

public class array

{

public static void main(String args[])

{

int []arr = {1,2,3,4,5};

System.out.println(arr[2]);

System.out.println(arr[4]);

}

}

Select one:

a. 3 and 5

b. 5 and 3

c. 2 and 4

d. 4 and 2

Clear my choice

Question 16. Let A be a square matrix of size n x n. Consider the following program. What is the expected output?

C = 100

for i = 1 to n do

for j = 1 to n do

{

Temp = A[i][j] + C

A[i][j] = A[j][i]

A[j][i] = Temp – C

}

for i = 1 to n do

for j = 1 to n do

Output(A[i][j]);

Select one:

a. The matrix A itself

b. Transpose of matrix A

c. Adding 100 to the upper diagonal elements & subtracting 100 from diagonal elements of A

d. None of the above

Clear my choice

Question 17. What will be the address of the arr[2][3] if arr is a 2-D long array of 4 rows and 5 columns and starting address of the array is 2000?

Select one:

a. 2048

b. 2056

c. 2052

d. 2042

28

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

2nd Module Assessment

Question 1. Which of the following principle does Queue use?

Select one:

a. LIFO principle

b. FIFO principle

c. Linear tree

d. Ordered array

Clear my choice

Question 2. Which data structure is mainly used for implementing the recursive algorithm?

Select one:

a. Queue

b. Stack

c. Binary tree

d. Linked list

Clear my choice

Question 3. If the size of the stack is 10 and we try to add the 11th element in the stack then the condition is known as___

Select one:

a. Underflow

b. Garbage collection

c. Overflow

d. None of the above

Clear my choice

Question 4. Which one of the following is the process of inserting an element in the stack?

Select one:

a. Insert

b. Add

c. Push

d. None of the above

Clear my choice

Question 5. Which one of the following is not the application of the Queue data structure?

Select one:

a. Resource shared between various systems

b. Data is transferred asynchronously

c. Load balancing

d. Balancing of symbols

Clear my choice

Question 6. When the user tries to delete the element from the empty stack then the condition is said to be a ____

Select one:

a. Underflow

b. Garbage collection

c. Overflow

d. None of the above

Clear my choice

Question 7. Which of the following is the infix expression?

Select one:

a. A+B*C

b. +A*BC

c. ABC+*

d. None of the above

Clear my choice

Question 8. A list of elements in which enqueue operation takes place from one end, and dequeue operation takes place from one end is__

Select one:

a. Binary tree

b. Stack

c. Queue

d. Linked list

Clear my choice

Question 9. Which one of the following is not the application of the stack data structure

Select one:

a. String reversal

b. Recursion

c. Backtracking

d. Asynchronous data transfer

Clear my choice

Question 10. Which one of the following is not the type of the Queue?

Select one:

a. Linear Queue

b. Circular Queue

c. Double ended Queue

d. Single ended Queue

Clear my choice

Question 11. The time complexity of enqueue operation in Queue is __

Select one:

a. O(1)

b. O(n)

c. O(logn)

d. O(nlogn)

Clear my choice

Question 12. Which one of the following is the overflow condition if linear queue is implemented using an array with a size MAX_SIZE?

Select one:

a. rear = front

b. rear = front+1

c. rear=MAX_SIZE -1

d. rear = MAX_SIZE

Clear my choice

Question 13. If the elements ‘1’, ‘2’, ‘3’ and ‘4’ are inserted in a queue, what would be order for the removal?

Select one:

a. 1234

b. 4321

c. 3241

d. None of the above

Clear my choice

Question 14. What is the outcome of the prefix expression +, -, *, 3, 2, /, 8, 4, 1?

Select one:

a. 12

b. 11

c. 5

d. 4

Clear my choice

Question 15. Which of the following option is true if implementation of Queue is from the linked list?

Select one:

a. In enqueue operation, new nodes are inserted from the beginning and in dequeue operation, nodes are removed from the end.

b. In enqueue operation, new nodes are inserted from the end and in dequeue operation, nodes are deleted from the beginning.

c. In enqueue operation, new nodes are inserted from the end and in dequeue operation, nodes are deleted from the end.

d. Both a and b

Clear my choice

Question 16. Consider the following code.

int fun() 

                { 

                   if(isEmpty()) 

                   { 

                      return -10;  

                   } 

                  else 

                  { 

                     int n; 

                     n= q[front]; 

                     front++; 

                     return n;  

                  } 

                }  

Which operation does the above code perform?

Select one:

a. Enqueue

b. Dequeue

c. Return the front element

d. Both b and c

Clear my choice

Question 17. What would be the output after performing the following operations in a Deque?

Insertfront(10); 

Insertfront(20); 

Insertrear(30); 

Insertrear(40); 

Deletefront(); 

Insertfront(50); 

Deleterear(); 

Display(); 

Select one:

a. 10, 20, 30

b. 50, 10, 30

c. 40, 20, 30

d. None of the above

28

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

3rd Module Assessment

Question 1. What is the space complexity for deleting a linked list?

Select one:

a. O(1)

b. O(n)

c. Either O(1) or O(n)

d. O(logn)

Clear my choice

Question 2. In circular linked list, insertion of node requires modification of?

Select one:

a. One pointer

b. Two pointer

c. Three pointer

d. None

Clear my choice

Question 3. In a circular linked list

Select one:

a. Components are all linked together in some sequential manner.

b. There is no beginning and no end.

c. Components are arranged hierarchically.

d. Forward and backward traversal within the list is permitted.

Clear my choice

Question 4. In linked list each node contain minimum of two fields. One field is data field to store the data second field is?

Select one:

a. Pointer to character

b. Pointer to integer

c. Pointer to node

d. Node

Clear my choice

Question 5. What is the time complexity to count the number of elements in the linked list?

Select one:

a. O(1)

b. O(n)

c. O(logn)

d. O(n2)

Clear my choice

Question 6. Which of these is not an application of a linked list?

Select one:

a. To implement file systems

b. For separate chaining in hash-tables

c. To implement non-binary trees

d. Random Access of elements

Clear my choice

Question 7. Doubly linked list is also called as

Select one:

a. list

b. two-way linked list

c. skip list

d. none

Clear my choice

Question 8. Which of the following operations is performed more efficiently by doubly linked list than by singly linked list?

Select one:

a. Deleting a node whose location in given

b. Searching of an unsorted list for a given item

c. Inverting a node after the node with given location

d. Traversing a list to process each node

Clear my choice

Question 9. In doubly linked lists, traversal can be performed?

Select one:

a. Only in forward direction

b. Only in reverse direction

c. In both directions

d. None

Clear my choice

Question 10. A linear collection of data elements where the linear node is given by means of pointer is called?

Select one:

a. Linked list

b. Node list

c. Primitive list

d. None

Clear my choice

Question 11. public void function(Node node)

{

            if(size == 0)

                        head = node;

            else

            {

                        Node temp,cur;

                        for(cur = head; (temp = cur.getNext())!=null; cur = temp);

                        cur.setNext(node);

            }

            size++;

}

Select one:

a. Inserting a node at the beginning of the list

b. Deleting a node at the beginning of the list

c. Inserting a node at the end of the list

d. Deleting a node at the end of the list

Clear my choice

Question 12. Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time?

i) Insertion at the front of the linked list

ii) Insertion at the end of the linked list

iii) Deletion of the front node of the linked list

iv) Deletion of the last node of the linked list

Select one:

a. I and II

b. I and III

c. I,II and III

d. I,II and IV

Clear my choice

Question 13. Consider the following definition in c programming language

struct node

{

int data;

struct node * next;

}

typedef struct node NODE;

NODE *ptr;

Which of the following c code is used to create new node?

Select one:

a. ptr=(NODE*)malloc(sizeof(NODE));

b. ptr=(NODE*)malloc(NODE);

c. ptr=(NODE*)malloc(sizeof(NODE*));

d. ptr=(NODE)malloc(sizeof(NODE));

Clear my choice

Question 14. In worst case, the number of comparison need to search a singly linked list of length n for a given element is

Select one:

a. log n

b. n/2

c. log2n-1

d. n

Clear my choice

Question 15. public int function(int data)

{

Node temp = head;

int var = 0;

while(temp != null)

{

if(temp.getData() == data)

{

return var;

}

var = var+1;

temp = temp.getNext();

}

return Integer.MIN_VALUE;

}

Select one:

a. Find and delete a given element in the list

b. Find and return the given element in the list

c. Find and return the position of the given element in the list

d. Find and insert a new element in the list

Clear my choice

Question 16. The following C function takes a singly linked list as input argument. It modifies the list by moving the last element to the front of the list and returns the modified list. Some part of the code left blank.

typedef struct node

{

int value;

struct node* next;

}Node;

Node* move_to_front(Node* head)

{

Node* p, *q;

if((head==NULL) || (head->next==NULL))

return head;

q=NULL;

p=head;

while(p->next != NULL)

{

q=p;

p=p->next;

}

return head;

}

Choose the correct alternative to replace the blank line

Select one:

a. q=NULL; p->next=head; head =p ;

b. q->next=NULL; head =p; p->next = head;

c. head=p; p->next=q; q->next=NULL;

d. q->next=NULL; p->next=head; head=p;

Clear my choice

Question 17. consider the function f defined here:

struct item

{

int data;

struct item * next;};

int f (struct item *p)

{

return((p==NULL) ||((p->next==NULL)||(p->data<=p->next->data) && (p->next)));

}

For a given linked list p, the function f returns 1 if and only if

Select one:

a. the list is empty or has exactly one element

b. the element in the list are sorted in non-decreasing order of data value

c. the element in the list are sorted in non-increasing order of data value

d. not all element in the list have the same data value

30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

4th Module Assessment

Question 1. While converting binary tree into extended binary tree, all the original nodes in binary tree are …….

Select one:

a. Internal nodes on extended tree

b. External nodes on extended tree

c. Vanished on extended tree

d. Intermediate nodes on extended tree

Clear my choice

Question 2. If every node u in G adjacent to every other node v in G, A graph is said to be

Select one:

a. isolated

b. complete

c. finite

d. strongly connected

Clear my choice

Question 3. If every node u in G is adjacent to every other node v in G,A graph is said to be ……..

Select one:

a. isolated

b. complete

c. finite

d. strongly connected.

Clear my choice

Question 4. A connected graph T without any cycles is called

Select one:

a. a tree graph

b. free tree

c. a tree

d. All of above

Clear my choice

Question 5. A graph is said to be ……. if every node u in G is adjacent to every other node v in G

Select one:

a. Absolute

b. Entire

c. Inclusive

d. Complete

Clear my choice

Question 6. In a graph if e=[u,v], then u and v are called

Select one:

a. endpoints of e

b. adjacent nodes

c. neighbours

d. all of the above

Clear my choice

Question 7. Three standards ways of traversing a binary tree T with root R …….

Select one:

a. Prefix, infix, postfix

b. Pre-process, in-process, post-process

c. Pre-traversal, in-traversal, post-traversal

d. Pre-order, in-order, post-order

Clear my choice

Question 8. The post order traversal of a binary tree is DEBFCA. Find out the pre order Traversal.

Select one:

a. ABFCDE

b. ADBFEC

c. ABDECF

d. ABDCEF

Clear my choice

Question 9. A binary tree whose every node has either zero or two children is called ………

Select one:

a. Complete binary tree

b. Binary Search tree

c. Extended binary tree

d. E2 tree

Clear my choice

Question 10. The post order traversal of binary tree is DEBFCA. Find out the pre order traversal.

Select one:

a. ABFCDE

b. ADBFEC

c. ABDECF

d. ABDCEF

In a graph if e=(u,v) means …….

Select one:

a. u is adjacent to v but v is not adjacent to u.

b. e begins at u and ends at v

c. u is node and v is an edge.

d. both u and v are edges.

Clear my choice

Question 11. In linked representation of Binary trees LEFT[k] contains the …….. of at the node N, where k is the location.

Select one:

a. Data

b. Location and left child

c. Right child address

d. Null value

Clear my choice

Question 12. In-order traversing a tree resulted E A C K F H D B G; the pre-order traversal would return.

Select one:

a. FAEKCDBHG

b. FAEKCDHGB

c. EAFKHDCBG

d. FEAKDCHBG

Clear my choice

Question 13.

What is the average case time complexity for finding the height of the binary tree?

Select one:

a. h = O(loglogn)

b. h = O(nlogn)

c. h = O(n)

d. h = O(log n)

Clear my choice

Question 14. What is a complete binary tree?

Select one:

a. Each node has exactly zero or two children

b. A binary tree, which is completely filled, with the possible exception of the bottom level, which is filled from right to left

c. A binary tree, which is completely filled, with the possible exception of the bottom level, which is filled from left to right

d. A tree In which all nodes have degree 2

In a full binary tree if number of internal nodes is I, then number of nodes N are?

Select one:

a. N = 2*I

b. N = I + 1

c. N = I – 1

d. N = 2*I + 1

Clear my choice

Question 15. In the given graph identify the cut vertices.

Select one:

a. B and E

b. C and D

c. A and E

d. C and B

Clear my choice

Question 16. For which of the following combinations of the degrees of vertices would the connected graph be eulerian?

Select one:

a. 1,2,3

b. 2,3,4

c. 2,4,5

d. 1,3,5

Clear my choice

Question 17. In a complete k-ary tree, every internal node has exactly k children or no child. The number of leaves in such a tree with n internal nodes is:

Select one:

a. nk

b. (n – 1) k+ 1

c. n( k – 1) + 1

d. n(k – 1)

29

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

5th Module Assessment

Question 1. The worst-case occur in linear search algorithm when …….

Select one:

a. Item is somewhere in the middle of the array

b. Item is not in the array at all

c. Item is the last element in the array

d. Item is the last element in the array or item is not there at all

Clear my choice

Question 2. Which of the following is not a limitation of binary search algorithm?

Select one:

a. must use a sorted array

b. requirement of sorted array is expensive when a lot of insertion and deletions are needed

c. there must be a mechanism to access middle element directly

d. binary search algorithm is not efficient when the data elements more than 1500.

Clear my choice

Question 3. The Average case occurs in the linear search algorithm ……….

Select one:

a. when the item is somewhere in the middle of the array

b. when the item is not the array at all

c. when the item is the last element in the array

d. Item is the last element in the array or item is not there at all

Clear my choice

Question 4. Is putting an element in the appropriate place in a sorted list yields a larger sorted order list.

Select one:

a. Insertion

b. Extraction

c. Selection

d. Distribution

Clear my choice

Question 5. If the number of records to be sorted is small, then …… sorting can be efficient.

Select one:

a. Merge

b. Heap

c. Selection

d. Bubble

Clear my choice

Question 6. Which of the following sorting algorithm is of divide and conquer type?

Select one:

a. Bubble sort

b. Insertion sort

c. Merge sort

d. Selection sort

Clear my choice

Question 7. Complexity of linear search algorithm is ………

Select one:

a. O(n)

b. O(logn)

c. O(n2)

d. O(n logn)

Clear my choice

Question 8. Binary search algorithm cannot be applied to …

Select one:

a. sorted linked list

b. sorted binary trees

c. sorted linear array

d. pointer array

Clear my choice

Question 9. Consider the situation in which assignment operation is very costly. Which of the following sorting algorithm should be performed so that the number of assignment operations is minimized in general?

Select one:

a. Insertion sort

b. Selection sort

c. Heap sort

d. None

Clear my choice

Question 10. Which of the following is not a stable sorting algorithm?

Select one:

a. Insertion sort

b. Selection sort

c. Bubble sort

d. Merge sort

Clear my choice

Question 11. Suppose we have a O(n) time algorithm that finds median of an unsorted array. Now consider a QuickSort implementation where we first find median using the abovealgorithm, then use median as pivot. What will be the worst case time complexity of this modified QuickSort.

Select one:

a. O(n^2 Logn)

b. O(n^2)

c. O(n Logn Logn)

d. O(nLogn)

Clear my choice

Question 12. The total number of comparisons in a bubble sort is ….

Select one:

a. O(n logn)

b. O(2n)

c. O(n2)

d. O(n)

Clear my choice

Question 13. If the number of record to be sorted large and the key is long, then …… sorting can be efficient.

Select one:

a. Merge

b. Heap

c. Quick

d. Bubble

Clear my choice

Question 14. The given array is arr = {1,2,4,3}. Bubble sort is used to sort the array elements. How many iterations will be done to sort the array?

Select one:

a. 4

b. 2

c. 1

d. 0

Clear my choice

Question 15. Select the appropriate code that performs bubble sort.

Select one:

a. for(int j=arr.length-1; j>=0; j–)

{

                for(int k=0; k<j; k++)

                {

                                if(arr[k] > arr[k+1])

                                {

                                                int temp = arr[k];

                                                arr[k] = arr[k+1];

                                                arr[k+1] = temp;

                                }

                }

}

b. for(int j=arr.length-1; j>=0; j–)

{

                for(int k=0; k<j; k++)

                {

                                if(arr[k] < arr[k+1])

                                {

                                                int temp = arr[k];

                                                arr[k] = arr[k+1];

                                                arr[k+1] = temp;

                                }

                }

}

c. for(int j=arr.length; j>=0; j–)

{

                for(int k=0; k<j; k++)

                {

                                if(arr[k] > arr[k+1])

                                {

                                                int temp = arr[k];

                                                arr[k] = arr[k+1];

                                                arr[k+1] = temp;

                                }

                }

}

d. for(int j=arr.length; j>=0; j–)

{

                for(int k=0; k<j; k++)

                {

                                if(arr[k] > arr[k+2])

                                {

                                                int temp = arr[k];

                                                arr[k] = arr[k+1];

                                                arr[k+1] = temp;

                                }

                }

}

Clear my choice

Question 16. How can you improve the best case efficiency in bubble sort? (The input is already sorted)

Select one:

a. boolean swapped = false;

                for(int j=arr.length-1; j>=0 && swapped; j–)

                {

                                swapped = true;

                                for(int k=0; k<j; k++)

                                {

                                                if(arr[k] > arr[k+1])

                                                {

                                                                int temp = arr[k];

                                                                arr[k] = arr[k+1];

                                                                arr[k+1] = temp;

                                                                swapped = false;

                                                }

                                }

                }

b. boolean swapped = true;

                for(int j=arr.length-1; j>=0 && swapped; j–)

                {

                                swapped = false;

                                for(int k=0; k<j; k++)

                                {

                                                if(arr[k] > arr[k+1])

                                                {

                                                                int temp = arr[k];

                                                                arr[k] = arr[k+1];

                                                                arr[k+1] = temp;

                                                }

                                }

                }

c. boolean swapped = true;

                for(int j=arr.length-1; j>=0 && swapped; j–)

                {

                                swapped = false;

                                for(int k=0; k<j; k++)

                                {

                                                if(arr[k] > arr[k+1])

                                                {

                                                                int temp = arr[k];

                                                                arr[k] = arr[k+1];

                                                                arr[k+1] = temp;

                                                                swapped = true;

                                                }

                                }

                }

d. boolean swapped = true;

                for(int j=arr.length-1; j>=0 && swapped; j–)

                {

                                for(int k=0; k<j; k++)

                                {

                                                if(arr[k] > arr[k+1])

                                                {

                                                                int temp = arr[k];

                                                                arr[k] = arr[k+1];

                                                                arr[k+1] = temp;

                                                                swapped = true;

                                                }

                                }

                }

Clear my choice

Question 17. Suppose we are sorting an array of eight integers using quicksort, and we have just finished the first partitioning with the array looking like this:

    2 5 1 7 9 12 11 10

    Which statement is correct?

Select one:

a. The pivot could be either the 7 or the 9.

b. The pivot could be the 7, but it is not the 9

c. The pivot is not the 7, but it could be the 9

d. Neither the 7 nor the 9 is the pivot.

29

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Assignment 2

Question 1. To implement Forward and Backward functionality in the Internet Browser, which data structure would be the appropriate to choose

Select one:

a. Array

b. Stack

c. Queue

d. Linked Lists

Clear my choice

Question 2. How many stacks are needed to implement a queue. Consider the situation where no other data structure like arrays, linked list is available to you.

Select one:

a. 1

b. 2

c. 3

d. 4

Clear my choice

Question 3. Which of these is an application of linked lists?

Select one:

a. To implement file systems

b. For separate chaining in hash-tables

c. To implement non-binary trees

d. All of the mentioned

Clear my choice

Question 4. As part of the maintenance work, you are entrusted with the work of rearranging the library books in a shelf in proper order,at the end of each day. The ideal choice will be .

Select one:

a. Bubble Sort

b. Insertion Sort

c. SelectionSort

d. Merge Sort

Clear my choice

Question 5. In a binary tree, certain null entries are replaced by special pointers which point to nodes higher in the tree for efficiency. These special pointers are called .

Select one:

a. Leaf

b. Branch

c. Path

d. Thread

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Basic Mathematics I

Basic Mathematics I

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

1st Module Assessment

If det(A)= 0, then A is _
Singular

Transpose of a rectabgular matrix is a __ matrix.
Select one:
a. uper traingular
b. square
c. rectangular
d. row

Question 2

In product of matrices “A × B”, being conformable confirms that______.
Select one:
a. None of these
b. No. of columns in B=No. of rows in A
c. Both of these
d. No. of columns in A=No. of rows in B

Question 3

_ matrix has number of rows same as number of columns.
Select one:
a. square
b. rectangular
c. row
d. uper traingular

Question 4

Elements of the cartesian product of two sets (A x B) is of the type __
Select one:
a. 5-tuple
b. 3-tuple
c. 2-tuple
d. 4-tuple

Question 5

In a symmetric matric A transpose = _.
Select one:
a. A
b. 3A
c. minus A
d. 2A

Question 6

Order of a row matrix can be of the form __.
Select one:
a. 1 x n
b. 2 x n
c. n x 1
d. n x 2

Question 7

De Morgan’s Law of intersection states that, complement of of A and B is same as __ of “A complement” and “B complement”.
Select one:
a. union, difference
b. union, intersection
c. intersection, union
d. difference, intersection

Question 8

If in matrix “A”, element “a_11=3”, then in matrix “5A”, element “a_11=?”
Select one:
a. 9
b. 3
c. 15
d. 25

Question 9

In a skew-symmetric matric A transpose = _.
Select one:
a. A
b. minus A
c. 3A
d. 2A

Question 10

A set is an unordered collection of _ objects.
Select one:
a. distinct
b. different
c. same
d. none of these

Which set amongst can be considered as a trivial subset of any set?
a. empty set phi

Question 11
Which set amongst can be considered as a trivial subset of any set?
Select one:
a. equal set
b. Singleton set
c. empty set phi
d. universal set

Question 12

Cardinality of the power set of the set A = {1,2,3}, will be __.
Select one:
a. 4
b. 8
c. 3
d. 6

Question 13

Set including “cat family animals that can fly”, can be an example of __ set.
Select one:
a. null
b. all of these
c. void
d. empty

Question 14

Which amongst the following is/are features of row echelon form of a mtrix (A) ?
Select one:
a. all entries below a_11 should be zero
b. a_11 should be equal to 1
c. row containing all zeros placed at the bottom
d. all of these

Question 15

Determinant of 3 x 3 matrix having first row [ 1 2 5], second row [ 3 5 7] and third row [ 4 5 0] will be __.
Select one:
a. 4
b. 2
c. -3
d. -4

Question 16

Universal Set (U) = {1,2,3,4,5,6,7,8,9}; Set A = {1,4,6} and Set B = {3,5,2}. Set A union (B complement)= ?
Select one:
a. B complement
b. A complement
c. U
d. A intersection (B complement)

Question 17

Order of the resultant matrix as you multiplyr matrix A of order (3×1) and matrix B of order (1×3), will be _.
Select one:
a. (1×1)
b. (3×3)
c. (3×1)
d. (1×3)
30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

2nd Module Assessment

Question 1
Logical connective “Exclusive OR/XOR” corresponds to the concept of _ in the set theory.
Select one:
a. symmetric difference
b. Complement
c. Union
d. Intersection

Question 2

Sentence “C++ is the best language” is __.
Select one:
a. proposition
b. Interrogatie sentence
c. Opinion
d. Imperative sentence

Question 3

Negation of the truth values represented by XOR, will be reflected by the connective __.
Select one:
a. XNOR
b. NAND
c. XOR
d. AND

Question 4

For an implication “p implies q”, if “~q” becomes hypothesis and “~p” becomes conclusion, then it is __ of the given implication “p implies q”.
Select one:
a. Biconditional 22
b. Inverse
c. Contrapositive
d. Converse

Question 5

Which amongst the following can not be propositions?
Select one:
a. All of these
b. Opinions
c. Interrogative sentences
d. Imperative sentences

Question 6

For an implication “p implies q”, if “q” becomes hypothesis and “p” becomes conclusion, then it is __ of the given implication “p implies q”.
Select one:
a. Contrapositive
b. Converse
c. Inverse
d. Biconditional

Question 7

If p is false and q is false then ~ p Λ ~q is
Select one:
a. FALSE
b. Absurd
c. Can’t Say
d. True

Question 8

Logical connective “conjunction/AND” corresponds to the concept of _ in the set theory.
Select one:
a. symmetric difference
b. Complement
c. Intersection
d. Union

Question 9

Logical operation “negation” corresponds to the concept of _ in the set theory.
Select one:
a. symmetric difference
b. Complement
c. Union
d. Intersection

Question 10

If p is true and q is false then ~(p Λ q) is
Select one:
a. True
b. FALSE
c. Can’t Say
d. Absurd

Question 11

If p = Roses are red and q = Violets are blue then the statement “if roses are red then voilets are blue” can be represented as _.
Select one:
a. ~(p –> q)
b. q –> p
c. p –> q
d. None of these

Question 12

If p = Roses are red and q = Violets are blue then the statement “roses are not red and voilets are not blue” can be represented as _.
Select one:
a. ~p V ~q
b. ~(p Λ q)
c. ~p Λ ~q
d. ~p Λ q

Question 13

If p = Roses are red and q = Violets are blue then the statement “it is not the case that roses are red or voilets are blue” can be represented as _.
Select one:
a. ~p Λ ~q
b. ~p V q
c. ~p V ~q
d. p Λ ~q

Question 14

If p = Roses are red and q = Violets are blue then the statement “it is not the case that roses are red and voilets are blue” can be represented as _.
Select one:
a. ~p V ~q
b. ~(p Λ ~q)
c. ~p Λ ~q
d. ~(p Λ q)

Question 15

~(p Λ q) is logically equivalen to __
Select one:
a. ~ p Λ q
b. ~ p Λ ~q
c. p Λ ~q
d. ~ p V ~q

Question 16

If p = Roses are red and q = Violets are blue then the statement “if roses are not red then violets are not blue” can be termed as _.
Select one:
a. Biconditional
b. Converse
c. Contrapositive
d. Inverse

Question 17

If p = Roses are red and q = Violets are blue then the statement “if violets are not blue then roses are not red” can be termed as _.
Select one:
a. Biconditional
b. Converse
c. Inverse
d. Contrapositive

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

4th Module Assessment

Graph is made of
Both of these

Question 1
In an undirected graph, degree of a node is defined by _.
Select one:
a. numebr of edges coming in
b. number of edges in the graph
c. numebr of edges going out
d. number of edges incident

Question 2

When there is a path between every pair of vertices, it is called __.
Select one:
a. Complete graph
b. Connected graph
c. Biconnected graph
d. Tree

Question 3
_ is subactegory of Directed graphs.
Select one:
a. Biconnected graph
b. DAG
c. Connected graph
d. Complete graph

Question 4

In a type of graph DAG, “A” refers to __.
Select one:
a. additional
b. acyclic
c. accelerated
d. acquired

Question 5

In an undirected graph is (u,v) same as (v,u)?
Select one:
a. Yes
b. Absurd
c. Can’t Say
d. No

Question 6

A DAG with a restriction that a child can have only one parent is called __.
Select one:
a. Connected graph
b. Biconnected graph
c. Tree
d. Complete graph

Question 7

In a directed graph is (u,v) same as (v,u)?
Select one:
a. No
b. Can’t Say
c. Absurd
d. Yes

Question 8

In a directed graph, indegree of the node is defined by _.
Select one:
a. number of edges incident
b. number of edges coming in
c. number of edges going out
d. number of edges in the graph

Question 9

A node ‘v’ is said to be _ node of node ‘u’ if and only if there exists an edge between ‘u’ and ‘v’
Select one:
a. single
b. simple
c. multiple
d. adjacent

Question 10

In a directed graph, outdegree of the node is defined by _.
Select one:
a. numebr of edges going out
b. numebr of edges coming in
c. number of edges incident
d. number of edges in the graph

A _ does not have more than one edge between any two vertices and no edge starts and ends at the same vertex.
Simple Graph

Question 11

Traversing a graph such that we do not repeat a vertex nor we repeat a edge but the starting and ending vertex must be same i.e. we can repeat starting and ending vertex only is called _
Select one:
a. all of these
b. Path
c. Cycle
d. Walk

Question 12

__ allows edges connect a vertex to itself
Select one:
a. pseudograph
b. all of these
c. Multigraph
d. Simple Graph

Question 13
A complete graph has _ number of edges.
Select one:
a. n(n+1)/2
b. n(n-1)/2
c. 2n(n-1)/n
d. None of these

Question 14

__ allows multiple edges between two vertices.
Select one:
a. pseudograph
b. Simple Graph
c. all of these
d. Multigraph

Question 15

The maximum number of edges in a bipartite graph on 12 vertices is __?
Select one:
a. 24
b. 30
c. 36
d. 15

Question 16

A graph G has 8 edges. Find the number of vertices, if the degree of each vertex is 2.
Select one:
a. 8
b. 7
c. 6
d. 5

Question 17

A simple graph G has 24 edges and degree of each vertex is 4. Find the number of vertices.
Select one:

a. 13
b. 12
c. 10
d. 11

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Assignment 2
Case Study

Solve the system of linear equations by matrix inversion method, 3x+5y = 1 and 2x+y=3.

Question 1 : Matrix inversion method can be applied in the following case/es.
Select one:
a. when coefficient matrix is non singular
b. when coefficient matrix is square matrix
c. both of these
d. none of these

Question 2

Determinant os the coefficient matrix (A) is __.
Select one:
a. -7
b. -1
c. 2
d. 0

Question 3

Coefficient matrix (A) is a______ matrix in this case.
Select one:
a. Symmetric
b. Skew-Symmetric
c. Singular
d. Non-Singular

Question 4

First row second column in the cofactor matrix of A is __.
Select one:
a. -2
b. -5
c. 1
d. 4

Question 5

First row first column entry in the inverse of the matrix A is __.
Select one:
a. -3/7
b. -4/7
c. -1/7
d. -6/7

15/15

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Professional communication (BC108)-Semester I

Professional communication (BC108)-Semester I

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help


1st Module Assessment

Question 1

Verbal mode of communication may have barrier in delivering the proper message such as

Select one:

a. Thoughts

b. Perceptions

c. Emotions

d. All of them

Question 2

Which of these is a type of business conversation?

Select one:

a. Office meetings

b. Interviews

c. Seminars

d. All of them

Question 3

Which of these is a type of communication?

Select one:

a. Internal communication

b. Organization communication

c. Agreement communication

d. Sales communication

Question 4

Which of the following should one do for breaking the barrier?

Select one:

a. Be a fixer

b. Be a daydreamer

c. Get proper feedaback

d. Use too many technical jargons

Question 5

Which of these are basic principles for effective communication?

Select one:

a. Know your audience

b. Know your purpose

c. Know your topic

d. All of them

Question 6

Who defines non-verbal communication as “the transmission of messages through means other than words”?

Select one:

a. Sigmund Freud

b. Andrew Dubrin

c. Carl Jung

d. Jacques Lacan

Question 7

Which are the main barriers for communication?

Select one:

a. Language barrier

b. Cultural barrier

c. Individual barrier

d. All of them

Question 8

Communication is an exchange of______

Select one:

a. Ideas

b. Information

c. Opinion

d. All of them

Question 9

Which of these is not the 7c’s of effective communication?

Select one:

a. Correctness

b. Clarity

c. Courtesy

d. Complicity

Question 10

What is the correct terminology for the collective understanding of upward and downward communications?

Select one:

a. External communication

b. Internal communication

c. Vertical Communication

d. Horizontal communication

Other Question

Which of these are the principles for clarity of communication?

Select one:

a. Correct language

b. Proper punctuation

c. Check accuracy of fact and figures

d. All of them

Question 11

Grooming is a form of non-verbal communication that is:

Select one:

a. Hierarchial

b. Conscious

c. Arbitary

d. Subconscous

Question 12

Positive gestures are body signals that make you look:

Select one:

a. Arrogant

b. Hurtful

c. Nervous

d. Rexlaxed

Question 13

By choosing to speak from the floor instead of the dais, a speaker can show the audience a sense of:

Select one:

a. Respect

b. Equality

c. Informality

d. Closeness

Question 14

Between a speaker and a listener, the closest zone of personal space possible is:

Select one:

a. Public

b. Friendly

c. Intimate

d. Social

Paralanguage is a kind of action language that refers to:

Select one:

a. actual words

b. personal space

c. the tone of voice, speed of speech, and hesitation

d.  body language

Question 15

The final line of a business letter says:

Select one:

a. how many people are corresponding

b. how many attaches are with the letter

c. how many enclosures are with the letter

d. goodbye, formally or informally but businesslike

Question 16

 Rooms with comfortable chairs invite relaxation while stiff chairs prompt formality. This refers to ____.

Select one:

a. Chronemics

b. Environmental factors

c. Artifacts

d. Kinesics   

Question 17

Which of these statement is true:

Select one:

a. Oculesics is object based phenomenon

b. Kinesics differ from country to country and culture to culture.

c. Paralanguage does not hold context out of professional sphere

d. Chronemics is detrimental to understand space issue in public

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

2nd Module Assessment

Question 1

When attempting to talk to a stranger, which of the following strategies should you try to include?

Select one:

a. paying attention to nonverbal cues

b. asking a question that requires a lot of self-disclosure  0000

c. making a comment

d. A & C only

Question 2

Which of the following is not part of a sociological definition of a ‘minority group’?

Select one:

a. the minority group is disadvantaged compared to the more powerful and dominant group

b. minority groups are always non-white

c.  the minority group has a strong sense of group solidarity

d. the minority group often experiences prejudice and discrimination 000

Question 3

What term describes the fixed and inflexible characterizations of social groups?

Select one:

a. Stereotypes

b. Prejudice

c. Scapgoating

d. Discrimination

Question 4

When attempting to sustain a conversation, which of the following strategies should you try to include?

Select one:

a.  Using free information

b. Asking questions, particularly closed-ended one

c. Seeking out topics of interest to the other person

d. All of the above

Question 5

You want to close a conversation. You’ve made the appropriate verbal statements. What can you do nonverbally to indicate that you are ready to walk away?

Select one:

a. Scan the scene around you with your eyes

b. Lean in closer to your conversation partner

c. Remain seated

d. Continue to keep your paralanguage upbeat

Question 6

Engaging in ethical dialog includes:

Select one:

a. authenticity, empathy, confirmation, presentness

b. authenticity, presentness, equality, disclosure

c. authenticity, empathy, confirmation, presentness, formality

d. None of the above

Question 7

Your significant other finishes your sentences because she knows you so well. This is called __________.

Select one:

a. deliberation

b. co-narration

c. small talk

d. partnership

Question 8

What was the system of forced racial segregation in South Africa known as?

Select one:

a. apartheid

b. ethnic cleansing

c. multiculturalism

d.  assimilation

Question 9

When engaging in appropriate turn-taking, the following guidelines should be followed:

Select one:

a. Balance each participant’s talk time

b. Allocate more floor time to higher-status people

c. Accommodate those who are more outgoing

d. All of them

Question 10

Which of the following is NOT a conversation characteristic?

Select one:

a. Conversations are extemporaneous.

b. Conversations are locally managed.

c.  Conversations are sequentially organized.

d. Conversations are linear.

What is the meaning of bona fide?

Select one:

a. Genuine

b. Very annoying

c. Feeling of belonging

d. Complete authority

Other Questions

What is multiculturalism?

Select one:

a. the existence of cultural diversity within a society

b. policies encouraging ethnic groups to live together in harmony

c. new immigrants adopting the values and norms of the host culture

d. ethnic group cultures exist separately within a society

Question 11

According to Communication Research Reports, which method of communication rated the highest in satisfaction for communicating easily?

Select one:

a. Face-to-face

b. Instant Message

c. E-mail

d. Cellphone

Question 12

For our purposes, a clear and comprehensive definition of culture is

Select one:

a. an academic term describing members of your parents’ homeland.

b. the music, location and architecture of a specific group of people.

c.  the language, values, beliefs, traditions, and customs people share and learn.

d. demographic shifts based on communication.

Question 13

Permanence in communication is best achieved via

Select one:

a. Face-to-face conversation

b. Hard Copy

c. E-mail

d. Cellphone

Question 14

Noticing what behaviors members of a different culture use and applying these insights to communicate in effective ways is

Select one:

a. commonplace in ethnocentrism.

b. referred to as passive observation.

c. an example of stereotyping.

d. is communication competence.

Other Question

The tendency to transmit messages without considering their consequences is called

Select one:

a. Uncertainity

b. Disinhibition

c. Flaming

d. Spam

How to accept other candidate’s idea?

Select one:

a. I have no objection to that

b. One possibility is..

c. What is your opinion?

d. We must…

Question 15

What tense do you use in writing the Key Features paragraph?

Select one:

a. Present perfect tense

b. Present Continuous tense

c. Past Tense

d. Future tense

Question 16

What phrase is used in the Introduction?

Select one:

a. This report aims to identify….

b. The results show that..

c. In order to find this out, we…

d. None of the above

Question 17

Basic difference between formal and informal report is

Select one:

a. Formal report is complete while informal is incomplete

b. Formal report is precise while informal report is lengthy

c. Formal report has predefined purpose while informal report has not

d. Formal report follows a specific format while informal does not

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

3rd Module Assessment

Question 1

The content of the communication is called:

Select one:

a. Message

b. Noise

c. Media richness

d. Jargon

Question 2

What function does an effective meeting agenda serve?

Select one:

a. provides a blueprint

b. Reminds people of their achievment

c. Helps the leader to evade questions

d. Creates confusion

Question 3

The handshake that conveys confidence is

Select one:

a. Limp

b. Firm

c. Loose

d. Double

Question 4

Manuals and policy statements are referred to as:

Select one:

a. Upward communication

b. Horizontal communication

c. Downward communication

d. None of the above

Question 5

Which of the following is not a medium of transmission?

Select one:

a. Memos

b. Policy statement

c. Discussions

d. None of the above

Question 6

How to create an effective agenda?

Select one:

a. Send an email regarding meeting

b. Give out little information

c. Forego agenda item request

d. Wait for participants to contact you

Question 7

The notice of a meeting must specify:

Select one:

a. Type of meeting

b. Name of company

c. date of issue of notice

d. All of the above

Question 8

Basic form of agenda:

Select one:

a. Welcome/open meeting

b. Support for absence

c. Refreshments

d. All of the above

Question 9

To convert a message into groups of words, symbols, gestures, or sounds that present ideas or concepts is called:

Select one:

a. Feedback

b. Encoding

c. Noise

d. Symbolism

Question 10

The Agenda communicates important information such as:

Select one:

a. topics for discussion

b. presenter

c. time allotment

d. All of the above

Other Question

Which of these should one follow to compose meeting minutes?

Select one:

a. List of expected attendees

b. Use to device to record

c. Be prepared

d. All of the above

Question 11

What is the Adjournment?

Select one:

a. Time the meeting finished

b. Notation of who adjourned the meeting

c. Statement that the meeting is over

d. The conclusion

Question 12

What would you use to inform staff about an upcoming meeting?

Select one:

a. Email

b. Minutes

c. Letter

d. Research report

Question 13

Document that has a list of items to be discussed or acted upon at a meeting?

Select one:

a. Minutes

b. Business Letter

c. Spreadsheet

d. Agenda

Question 14

What goes in a heading?

Select one:

a. Organization name

b. Date and time

c. Location

d. All of the above

Extra Question

Topics and speakers that will present at the next Board meeting is an example of an?

Select one:

a. Agenda

b. Minutes

c. Memo

d. Letter

Question 15

The Keynote Speech is the

Select one:

a. A talk someone gives as at a political convention, that presents important issues, principles, policies

b. An oral translation between speakers

c. The person who speaks to inspire the people at a meeting

d. Both B & C

Question 16

Select the correct definition for “Debrief”

Select one:

a. a case taken to work to hold your personal items

b. to question formally and systematically in order to obtain useful

c. a person who provides an oral translation between speakers

d. None of the above

Question 17

Based on the types of decision-making meetings, which of the statement is correct?

Select one:

a. Persuasion means being attentive to your own opinion to reach goal.

b. Problem solving meetings is focused on interest.

c. In problem solving meetings, the necessary background information is provided.

d. Analysis can be based on weaknesses analysis ONLY.

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

4th Module Assessment

Question 1

Which of these is not a parameter in a report?

Select one:

a. Extent of information

b. Quality of information

c. Age of writer

d. Ability to acquire information

Question 2

In a technical report which of these must be avoided?

Select one:

a. Facts

b. Logical Conclusion

c. Objective Evaluation

d. Subjective Evaluation

Question 3

Which of these is not a formal report?

Select one:

a. Informational

b. Informal

c. Interpretative

d. Routine

Question 4

When you’re writing a report, be sure to adapt to your audience by

Select one:

a.  being sensitive to their needs.

b. controlling your style and tone.

c. both a and b.

d. None of the above.

Question 5

Which of these reports provide information without any evaluation?

Select one:

a. Informational

b. Interpretative

c. Routine

d. Progress

Question 6

Which of the following statements about reports is accurate?

Select one:

a. Informal reports of eight or fewer pages are the most common report in the workplace.

b. Writers develop reports for internal audiences only.

c. Business professionals rarely write reports.

d. Both b and c

Question 7

Which is not basis for a technical report?

Select one:

a. Facts

b. Tests

c. Personal prejudices

d. Experiments

Question 8

A list of illustrations, included; figures and tables, placed on;

Select one:

a. Abstract vision

b. Title page

c. Table of contents

d. Bottom Line

Question 9

Largest section of report writing in technical writing, is termed as:

Select one:

a. Conclusion/Recommendation

b. Discussion

c. Heading

d. Footing

Question 10

 Into which of these types are formal reports not classified?

Select one:

a. Informational

b. Interpretative

c. Oral

d. Routine

Extra Question

Reports that provide data or findings, analyses, and conclusions are

Select one:

a. Informational reports.

b. progress reports.

c. summaries.

d. analytical reports.

Question 11

It is written within an organisation to ______ and examining actual event.

Select one:

a. Prepare

b. Find

c. Identify

d. Write

Question 12

What is the part on writing a research to show the benefits of doing the study?

Select one:

a. Problem Statement

b. Research Objective

c. Definition of terms

d. Siginifcance of research

Question 13

Two (2) examples of analytical report are

Select one:

a. Feasibility Report

b. Laboratory Report

c. Only B

d. Both A&B

Question 14

Field trip report is prepared based on _______ in the actual situation.

Select one:

a. Assumption

b. Research

c. Observation

d. Report

Extra Question

Which section the researcher need to do a literature search and write a literature to support their research

Select one:

a. Introduction

b. Methodology

c. Literature Review

d. Reference

Question 15

What tense do you use in writing the Key Features paragraph?

Select one:

a. Past Tense

b. Present Continuous tense

c. Present perfect tense

d. Future tense

Question 16

What phrase is used in the Introduction?

Select one:

a. The results show that..

b. This report aims to identify….

c. In order to find this out, we…

d. None of the above

Question 17

Basic difference between formal and informal report is

Select one:

a. Formal report is complete while informal is incomplete

b. Formal report is precise while informal report is lengthy

c. Formal report follows a specific format while informal does not

d. Formal report has predefined purpose while informal report has not

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

 

5th Module Assessment

Question 1

What should one avoid during the interview?

Select one:

a. Race

b. Marital status

c. Political affiliation

d. All of them

Question 2

How should one handle questions?

Select one:

a. By confusing audience

b. Anticipate and keep answers ready

c. Know everything

d. Speak fast

Question 3

What is the meaning of ad nauseam?

Select one:

a. Nauseous

b. Reptition to the point of boring

c. Endlessly long

d. Unplanned

Question 4

Which of these are the five elements of inteview process?

Select one:

a. Getting attention

b. Esyablishing a theme

c. Presenting a structure

d. All of them

Question 5

Which of these is not mentioned in a resume?

Select one:

a. Address

b. Age

c. Nationality

d. Experience

Question 6

Which of these are common verbal communication barriers?

Select one:

a. Clarity

b. Lot of questions

c. Speaking in a steady pace

d. Using jargon

Question 7

What is the meaning of bona fide?

Select one:

a. Genuine

b. Very annoying

c. Feeling of belonging

d. Complete authority

Question 8

How can one receive information during the interview process?

Select one:

a. Ask any kind of questions

b. Keep talking at every opportunity

c. Ask only questions that are directly related to the job/position

d. Conceal your experience

Question 9

Which of these is a type of interview?

Select one:

a. One to one interview

b. Phone interview

c. Group interview

d. All of them

Question 10

Which of these is true about stage fright?

Select one:

a. It leads to insomnia

b. key issue is elimation of fear

c. Normal people do not have it

d. Can be used constructively

Other Question

What kind of jokes should be avoided during the interview process?

Select one:

a. Racist

b. Sexist

c. Adult jokes

d. All of them

Question 11

How to accept other candidate’s idea?

Select one:

a. I have no objection to that

b. One possibility is..

c. What is your opinion?

d. We must…

Question 12

Which of these are extremely important during a job interview?

Select one:

a. Eye contact

b. First Impression

c. Your dress

d. All of the above

Question 13

Which is  something you should do at the beginning of an interview?

Select one:

a. Shake the person’s hand

b. Introduce yourself

c. Smile

d. All of the above

Question 14

The difference within a group

Select one:

a. Variety

b. Structured

c. Qualitative

d. Infiite

Extra Question

During a job interview, who should be the one to begin talking?

Select one:

a. Employer

b. You

c. Both

d. Wait for the HR to introduce each other

Question 15

Why should you write a resignation letter?

Select one:

a. To maintain goodwill with your employer

b. So that you can use your employer as a reference in the future

c. Both A &B

d. Only A

Question 16

What is one thing that you should NOT do during the first interview?

Select one:

a. Ask about salary

b. Communicate why you are a good fit

c. Close by arranging next interview

d. Connect with interviewer

Question 17

What should you NOT do to prepare for an interview?

Select one:

a. Research the company

b. Memorize common answers to top interview questions

c. Learn the company’s concerns and problems

d. Practice top interview questions and answers

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

 

 

 

 

Assignment 2

Question 1

The interviewer says, “Tell me about yourself.” Which of these is the best answer?

Select one:

a. “I enjoy helping people and this drives my desire to master the art of fundraising. I have been volunteering with Red Cross for the past two years and have learned many useful skills about organizing fundraisers. I think my experiences have prepared me to be a great Fundraising Coordinator.”

b. ” I was born in Delhi and moved to Bangalore with my family when I was twelve. After graduating from high school, I attended college and worked a couple of part-time jobs.”

c. “I’m a pretty outgoing person with an open personality. I love meeting other people and visiting new places. One of my favorite things to do is spend time with friends. i also like to travel. last summer, i took a trip to Europe with a couple of buddies. We had a great time,”

d. “Hi, my name is ___and I am looking forward to a job”

Question 2

‘Othering’….

Select one:

a. Encompasses the choices people make by defining their identity as a similar culture, heritage, ethnicity and political or economic experience

b. Encompasses the choices people make by defining their identity in opposition to groups of people who do not share (or are perceived as not sharing) a similar culture, heritage, ethnicity and political or economic experience

c. Encompasses the choices people make by defining their identity in the same way as groups of people who do not share (or are perceived as not sharing) a similar culture, heritage, ethnicity and political or economic experience

d. Encompasses the choices people make by defining their identity as people who do not share (or are perceived as not sharing) a similar culture, heritage, ethnicity and political or economic experience

Question 3

Cultural Relativism…

Select one:

a. involves attempting to understand a culture by looking at it according to your own standards. It means analysing a culture from the point of view of your own culture.

b. involves attempting to understand a culture by looking at it according to a different set of standards. It means analysing a culture from the point of view of other people in society.

c. involves attempting to understand a culture by looking at it according to its own standards. It means analysing a culture from the point of view of its members

d. involves not attempting to understand a culture by not looking at it according to its own standards. It means not analysing a culture from the point of view of its members

Question 4

__ is the study about the broadest sense can refer to visual signals or physical movements/positions.

Select one:

a. Social interaction

b. Body language

c. Study of linguistic

d. Personal Space

Question 5

It is easy to misunderstanding the cues from facial expressions made by other because…

Select one:

a. there is no way to understand someone else’s facial expression

b. it can be manipulated of people showing their facial expression that untruth

c. it is too difficult to pay attention to someone else’s facial expression while communicating

d. facial expressions do not add anything to the communication process

15/15

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Human Computer Interaction (CSIT325)-Semester I

Human Computer Interaction (CSIT325)-Semester I

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

1st Module Assessment

In which domains HCI has implemented with great importance ?

All of the mentioned

Question 1

______ is the reaction to the levels of light

Select one:

a. Brightness

b. Hue

c. saturation

d. color

Question 2

The ______is the angle formed from two imaginary lines projecting from the eye.

Select one:

a. Visual distance

b. visual data

c. visual angle

d. Visual line

Question 3

Response or information provided by the computer to the user is known as

Select one:

a. CPU

b. Output

c. Memory unit

d. Input

Question 4

______act as a channel for human to provide some information to the world

Select one:

a. Effectors

b. Senses

c. Design

d. Analyst

Question 5

Response or information provided to the computer by the user is known as

Select one:

a. CPU

b. Output

c. Input

d. Memory unit

Question 6

_______ starts with the vibrations in the air or sound waves

Select one:

a. Vision

b. Movement

c. Understanding

d. Hearing

Question 7

Eye perceives color because of the _____

Select one:

a. Cornea

b. eyelid

c. cones

d. lens

Question 8

·         ________is a design of interactive system and interaction itself.

Select one:

a. Program design

b. System design

c. Mathematical model

d. Interaction Design

Question 9

Which of the following is the main physical receptor for vision?

Select one:

a. Nose

b. Limbs

c. Eyes

d. Ear

Question 10

_____ begins with the light and with the help of eye you can receive light and transform it into electrical energy

Select one:

a. Vison

b. Movement

c. exercise

d. Sound

Iconic memory exist for _____

Select one:

a. visual stimuli

b. movement

c. touch

d. aural stimuli

Question 11

Echoic memory exist for ____

Select one:

a. touch

b. visual stimuli

c. movement

d. aural stimuli

Question 12

  Haptic memory exist for______

Select one:

a. aural stimuli

b. movement

c. touch

d. visual stimuli

Question 13

_____ is the process through which we conclude with the help of knowledge we have.

Select one:

a. Reasoning

b. Logical ability

c. Implementing

d. analysing

Question 14

Which of the following reasoning helps in deriving explanation for the events you observe?

Select one:

a. deductive reasoning

b. abductive reasoning

c. productive reasoning

d. inductive reasoning

Question 15

Which of the following is known for respond to intense pressure, heat and pain?

Select one:

a. Mechanoreceptors

b. Immunoreceptors

c. Thermoreceptor

d. Nociceptors

Question 16

Which of the following is known for respond to heat and cold?

Select one:

a. Immunoreceptors

b. Mechanoreceptors

c. Thermoreceptor

d. Nociceptors

Question 17

Which of the following is known for respond to pressure?

Select one:

a. Nociceptors

b. Mechanoreceptors

c. Immunoreceptors

d. Thermoreceptor

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

2nd Module Assessment

Question 1

Process of evaluating prototypes either paper based or software tool to check whether they are acceptable and is there a need of improvement is known as

Select one:

a. formative evaluation

b. Subjective evaluation

c. Descriptive Evaluation

d. Summative evaluation

Question 2

Standards for interactive system design are set by

Select one:

a. Both of them

b. International bodies

c. National Bodies

d. None of the mentioned

Question 3

________ is the method in the development of software and system

Select one:

a. Civil engineering

b. None of the mentioned

c. Usability engineering

d. Biotechnologyengineering

Question 4

_____ is the simple concept of prototype and a graphical representation of outside appearance of designed system

Select one:

a. designing

b. database

c. scripting

d. Storyboard

Question 5

________is selection of goals and constraints to be ignore so that other goals and constraints can meet the requirement.

Select one:

a. Constraint

b. Trade off

c. Design

d. Implementation

Question 6

________is performed at the end to check whether product is good enough or not

Select one:

a. formative evaluation

b. Summative evaluation

c. Descriptive Evaluation

d. Subjective evaluation

Question 7

What are the different approaches of prototyping?

Select one:

a. Throw away

b. Evolutionary

c. Incremental

d. All of the mentioned

Question 8

What are the uses of White space ?

Select one:

a. Space to separate

b. Space to structure

c. Space to highlight

d. All of the mentioned

Question 9

Which of the following is the step of software life cycle development?

Select one:

a. Requirement specification

b. All of the mentioned

c. Architectural design

d. detailed design

Question 10

Which of the following cover standards to be followed, material to be used, estimation of cost and time to develop it, health and safety issues to be consider?

Select one:

a. Design

b. Implementation

c. Constraint

d. Trade off

How many Heuristic Principles was stated by Nielsen 

10

Question 11

Which of the following is the Nielsen’s Heuristic Principles?

Select one:

a. Design for Error

b. Visibility of system status

c. Simplify task structures.

d. Get the mapping right

Question 12

How many Principles for Transforming Difficult task into simple one was stated by Norman?

Select one:

a. 6

b. 8

c. 7

d. 9

Question 13

________is a procedure to check user interface for usability problems

Select one:

a. Formal Evaluation

b. Heuristics evaluation

c. Descriptive Evaluation

d. Summary Evaluation

Question 14

How many golden rules of interface design was stated by Ben Shneiderman?

Select one:

a. 7

b. 8

c. 4

d. 6

Question 15

Which of the following is the tools for layout to read and interact with screen or device?

Select one:

a. All of the mentioned

b. Decoration

c. clipart

d. Smart Art

Question 16

Test of evaluation is done to identify

Select one:

a. prototype

b. model

c. design

d. Fault

Question 17

Sub-branch that addresses the management and technical issues of the development of software systems called

Select one:

a. Civil engineering

b. software engineering

c. Mechanical Engineering

d. Electronic engineering

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

3rd Module Assessment

Question 1

_________provides experimental proofs to support particular claim.

Select one:

a. None of the mentioned

b. Modelling methods

c. Empirical Methods

d. Designing methods

Question 2

Cognitive Walkthrough needs detailed review of a

Select one:

a. input data

b. series of action

c. architecture

d. test

Question 3

_____is a guideline or general principal that can help to take design decision.

Select one:

a. Innovation

b. Evaluation

c. Technology

d. Heuristic

Question 4

What are the distinct evaluation styles?

Select one:

a. None of the mentioned

b. performed under laboratory conditions

c. conducted in the work environment or in the field

d. Both of the metioned

Question 5

What are the different approaches to test the system using users?

Select one:

a. observational methods

b. All of the mentioned

c. query techniques

d. empirical or experimental methods

Question 6

______is a method for structuring the critique of a system using a set of relatively simple and general heuristics.

Select one:

a. Summative evaluation

b. Heuristic evaluation

c. Descriptive Evaluation

d. formative evaluation

Question 7

_____ predicts user performance with particular interface and used to filter design options.

Select one:

a. Key stroke model

b. spiral model

c. Waterfall Model

d. GOAMS model

Question 8

Which expert analysis model was proposed by Polson and colleagues ?

Select one:

a. Previous work

b. model usage

c. Cognitive walkthrough

d.   Heuristic evaluation

Question 9

——-developed by Jakob Nielsen and Rolf Molich

Select one:

a. formative evaluation

b. Summative evaluation

c. Descriptive Evaluation

d. Heuristic evaluation

Question 10

________ is the prediction of outcome of experiment

Select one:

a. Modelling methods

b. Hypotheses

c. Empirical Methods

d. Designing methods

Question 11

What are the methods to record evaluation session?

Select one:

a. Video recording

b. Audio recording

c. Paper and pencil

d. All of the mentioned

Question 12

What are the various form of questions?

Select one:

a. Multi choice

b. Open ended

c. Scalar

d. All of the mentioned

Question 13

Which of the following is the query technique?

Select one:

a. email

b. letter

c. Phone call

d. Questionnaire

Question 14

What are the advantages of Think aloud process

Select one:

a. The process is easy to learn and use by evaluator

b. The user is encouraged to criticize the system

c. Evaluator can clarify the points where confusion occurred

d. All of the mentioned

Question 15

_______allows to study interaction which occurs in real time.

Select one:

a. Field study

b. Lab study

c. Individual study

d. None of the mentioned

Question 16

In heuristic evaluation, Evaluator can provide severity rating on a scale of —-

Select one:

a. 0-7

b. 0-4

c. 0-5

d. 0-10

Question 17

GOAMS model stands for

Select one:

a. goals, operators, actions, methods and selection

b. goals, operators, actions, methods and standard

c. goals, opinion, actions, methods and selection

d. goals, operators, answer, methods and selection

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

4th Module Assessment

______ denotes levels in task hierarchy and to emphasize this hierarchy numbers have provided

Identity, idea,

Question 1

Single transcript is example of

Select one:

a. Discrete communication

b. Linear communication

c. spatial communication

d. None of the mentioned

Question 2

In which of the following messages are arranged in two-dimensional surface?

Select one:

a. Discrete communication

b. None of the mentioned

c. Linear communication

d. spatial communication

Question 3

Cognitive models can be used in

Select one:

a. All of the mentioned

b. predicting human behaviour

c. modelling the user as a guide

d. substituting models for other participants

Question 4

The process of diving task into subtask is known as

Select one:

a. Task decomposition

b. Network base Analysis

c. Entity-relation-based analysis

d. Knowledge based analysis

Question 5

______ represent a task of user and structure of goal.

Select one:

a. Physical and device models

b. Hierarchical models

c. None of the mentioned

d. Linguistic models

Question 6

_____determines the knowledge of user regarding objects and action involved in the task.

Select one:

a. Network base Analysis

b. Entity-relation-based analysis

c. Task decomposition

d. Knowledge based analysis

Question 7

_______represents human motor skills.

Select one:

a. Hierarchical models

b. Physical and device models

c. Linguistic models

d. None of the mentioned

Question 8

________represents grammar of user-system

Select one:

a. Hierarchical models

b. Physical and device models

c. None of the mentioned

d. Linguistic models

Question 9

Text-based communication includes

Select one:

a. Spatial

b. Discrete

c. All of the mentioned

d. Linear

Question 10

____is an object-based approach and focuses on identifying objects and actors, relation between them and actions performed by them.

Select one:

a. Task decomposition

b. Knowledge based analysis

c. Entity-relation-based analysis

d. Network base Analysis

Question 11

Which of the following is example of Linguistic models?

Select one:

a. GOMS

b. KLM

c. CCT

d. TAG

Question 12

Which of thr following id example of Physical and device models ?

Select one:

a. BNF

b. GOMS

c. TAG

d. KLM

Question 13

Which of thr following id example of Hierarchical models ?

Select one:

a. KLM

b. BNF

c. GOMS

d. TAG

Question 14

TAKD stands for

Select one:

a. task action for knowledge description

b. task analysis for knowledge description

c. total analysis for knowledge description

d. task analysis for knowledge data

Question 15

In TDH (task descriptive hierarchy) taxonomy,object is present exactly in one branch is known as

Select one:

a. OR

b. XOR

c. AND

d. NOT

Question 16

In TDH (task descriptive hierarchy) taxonomy,object is present exactly in one, many or no branch is known as

Select one:

a. OR

b. AND

c. XOR

d. NOT

Question 17

In TDH (task descriptive hierarchy) taxonomy,object is present exactly in both branches is known as

Select one:

a. AND

b. OR

c. XOR

d. NOT

29/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

5th Module Assessment

Question  1

What are the applications of information visualization ?

Select one:

a. Presentation

b.   Confirmation Analysis

c. All of the mentioned

d.    Explorative Analysis

Question 2

Technology behind Speech interface is known as

Select one:

a. Augmented reality

b. Virtual reality

c. recognition technology

d. Mixed reality

Question 3

_______ is the application that allows interaction between human and voice enabled device

Select one:

a. Data Interface

b. Graphical interface

c. Speech interface

d. Vision interface

Question 4

File trees and organization chart are the examples of which structured information?

Select one:

a. object oriented

b. Hierarchies

c. Relational

d. Network

Question 5

_____ is the base of strong research, which binds together different topics and helps researcher to explore subtopics, design ideas and generate new research

Select one:

a. Analysis

b. Survey

c. Data

d. Framework

Question 6

Research framework is based on

Select one:

a. strong literature survey

b. None of the mentioned

c. Both of the mentioned

d. case studies

Question 7

Which of the following computing technology permits human interaction away from a single workstation?

Select one:

a. Distributed computing

b. Parallel computing

c. ubiquitous computing

d. Interface computing

Question 8

Which of the following is the example of speech interface?

Select one:

a. Google assistant

b. Siri

c. All of the mentioned

d. Alexa

Question 9

Program flow chart, hypertext structures are the examples of which structured information?

Select one:

a. Relational

b. Network

c. Hierarchies

d. object oriented

Question 10

Exploration and explanation are the categories of

Select one:

a. Output visualization

b. data visualization

c. Idea visualization

d. Plan visualization

______ means natural interaction with physical environment provides sufficient input to different attendant services without any further user intervention.

Select one:

a. Implicit input

b. Explicit input

c. Relational input

d. XML input

Question 11

Who is the father of terminology ubiquitous computing?

Select one:

a. Dennis Ritchie

b. Ken Thompson

c. Mark Weiser

d. Charles Babbage

Question 12

Which of the following is the Application themes for ubicomp?

Select one:

a. Context Aware Computing

b. Personalized access

c. Graphic computing

d. Customer oriented computing

Question 13

What are the evaluation challenges faced by ubicomp?

Select one:

a. All of the mentioned

b. Ambiguity

c. Scale

d. Applicability of matrices

Question 14

What are the challenges of Ubiquitous computing ?

Select one:

a. Discovering general application features

b. Theories for designing and evaluating the human experience within ubicomp

c. All of the mentioned

d. Defining the appropriate physical interaction experience

Question 15

Site the example of Speech interfaces embedded in various devices that people use in their day to day life

Select one:

a. Calculator

b. 8086 processor

c. Smart watches

d. Barometer

Question 16

In which of the following number of links need to be traversed between two nodes?

Select one:

a. Hypertext Structure

b. hierarchy structure

c. network structure

d. Free Text Structure

Question 17

GPS based car navigation systems is an example of

Select one:

a. Context Aware Computing

b. Automated capture and access

c. Personalized computing

d. Graphic Computing

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Assignment 2

Case Study

Ubiquitous Computing, which makes the user utilize the communication and computing ability more easily and merges the information space with physical space, has become one of the most active research areas. This mergence is an important foundation integrating the human and the computer naturally and makes the computing environments and the software resources available for user adapt to the related history situation and context. The context is an implicit intuition in human reasoning. It normally refers to the surrounding environments of interest center , such as providing the original information about Where, When, What, How and the direct comprehension about this information. Radio Frequency Identification (RFID) has become one of the most promising automatic identification technologies recently.

Compared with other traditional identification technology, RFID has the advantages such as contact-less, multi-object recognition, non-line-of-sight, long distance, large store memory, programmability and penetrability. Especially, the most significant meaning embedded in the RFID technology is the fact that all the existing physical objects can enter the virtual world built by RFID networks by sticking a tag to the physical object as a unique entry. RFID is seen as a bridge between physical space and virtual reality and can offer one of the foundations in the ubiquitous computing  environments. In these new ubiquitous computing environments where information access and service become pervasive, the human-computer interface differs from the WIMP (Windows, Icon, Menu and Pointer) graphic user interface. Owing to the heterogeneity of ubiquitous terminal communication devices in these environments, the interface must accommodate to variant devices of different users and provide different services based on the users’ different locations, time, role and task. The context-awareness and the mobile computing interaction have become the key technology in the human-computer interaction.

Question 1 : Which of the following technology makes the user utilize the communication and computing ability more easily and merges the information space with physical space, has become one of the most active research areas?

Select one:

a. Artificial Intelligence

b. Augmented Reality

c. Cloud Computing

d. Ubiquitous Computing

Question 2

Which of the following is the automatic identification technologies?

Select one:

a. RFID

b. Biometric

c. Pattern lock

d. PIN

Question 3

What are the advantages of RFID?

Select one:

a. contact-less

b. multi-object recognition

c. non-line-of-sight

d. All of the mentioned

Question 4

WIMP stands for

Select one:

a. Windows, Icon, Menu and Pointer

b. Windows, Idea, Menu and Pointer

c. Windows, Icon, Motherboard and Pointer

d. Windows, Icon, Menu and Program

Question 5

Key technology in the human-computer interaction are

Select one:

a. context-awareness and the mobile computing interaction

b. Augmented Reality and the mobile computing interaction

c. context-awareness and software engineering

d. 3D designing

15/15

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Programming in C (CSIT140)-Semester I

Programming in C (CSIT140)-Semester I

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

1st Module Assessment

Question 1

Which of the following component is known as the Brain of computer?

Select one:

a. Screen

b. Mouse

c. Keyboard

d. CPU

Question 2

__is the non-tangible part that tells the computer how to do its job.

Select one:

a. HARDWARE

b. SOFTWARE

c. PEOPLEWARE

d. Firmware

Question 3

ROM stands for

Select one:

a. Read Record memory

b. Read only memory

c. record memory

d. Read write memory

Question 4

Which of the following enables the application software to interact with the computer hardware?

Select one:

a. Operating Software

b. System Software

c. Device software

d. Utility Software

Question 5

Which of the following is non-volatile memory?

Select one:

a. SRAM

b. DRAM

c. All of the mentioned

d. ROM

Question 6

Which of the following is the name of a special program that makes your computer carry out a task?

Select one:

a. Software

b. Hardware

c. Data

d. COMMAND

Question 7

____ is the tangible part of a computer system.

Select one:

a. SOFTWARE

b. Firmware

c. HARDWARE

d. PEOPLEWARE

Question 8

Which of the following is a collection of independent and unorganized facts?

Select one:

a. Output

b. DATA

c. Input

d. Process

Question 9

Which of the following is the processed and organized data presented in a meaningful form?

Select one:

a. Process

b. Output

c. INFORMATION

d. DATA

Question 10

Sequence of 8 bits is known as

Select one:

a. None of the mentioned

b. Value

c. BYTE

d. WORD

Which of the following takes one or more object files generated by a compiler and combines them into one, executable program?

Select one:

a. Assembler

b. Interpreter

c. Linker

d. Loader

Question 11

_______ is the part of an operating system that is responsible for loading programs and libraries

Select one:

a. Assembler

b. Linker

c. Interpreter

d. Loader

Question 12

_______ is a program that converts low level language into machine level language.

Select one:

a. Interpreter

b. Linker

c. Compiler

d. Assembler

Question 13

________converts source code into intermediate code and then this intermediate code is executed line by line.

Select one:

a. Assembler

b. Interpreter

c. Linker

d. Compiler

Question 14

Which of the following transforms source language into object language ?

Select one:

a. Assembler

b. Linker

c. Interpreter

d. Compiler

Question 15

Which of the following operating system does not support multitasking?

Select one:

a. Linux

b. Unix

c. Windows 10

d. MS DOS

Question 16

A 32-bit system can access _______ of RAM

Select one:

a. 4 GB

b. 8 GB

c. 6 GB

d. 12 GB

Question 17

Which of the following is not an operating system?

Select one:

a. Pocket PC

b. KaiOS

c. Tizen

d. Slack

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

2nd Module Assessment

Question 1

c Language is

Select one:

a. Assembly language

b. Machine dependent

c. Machine independent

d. Low level language

 Question  2

Which of the following data type represents the absence of type?

Select one:

a. int

b. string

c. Void

d. double

Question 3

Who has developed C Programming Language?

Select one:

a. Dennis Ritchie

b. Guido van Rossum

c. Linus Torvalds

d. Issac Netwon

Question 4

An ___ is a symbol that instructs the compiler to perform specific mathematical or logical functions

Select one:

a. design

b. Comparator

c. Operator

d. prototype

Question 5

Which of the following data type is a single octet(one byte)?

Select one:

a. char

b. float

c. double

d. int

Question 6

Which of the following is known as Logical OR Operator?

Select one:

a. &&

b. !

c. ~

d. ||

Question 7

C programming language was developed in

Select one:

a. Intel Labs

b. AT & T Labs

c. Bell Labs

d. IBM Lab

Question 8

stdio.h specifies

Select one:

a. core input and output functions

b. several useful types and macros

c. precise width integer types

d. string handling functions

Question 9

What is the formal string for Scan or print an integer as signed decimal number?

Select one:

a. %d

b. %f

c. %c

d. %s

Question 10

A header file is a file with extension ____which comprises C function declarations and macro definitions to be shared between several source files

Select one:

a. .w

b. .h

c. .t

d. .y

Question 11

Which of the following function is utilized to read the values stored in various variables and store these values in a character array?

Select one:

a. scanf()

b. printf()

c. sprint()

d. sscanf()

Question 12

Which of the following function is utilized to read the characters from a string and stores them in variables?

Select one:

a. sscanf()

b. printf()

c. sprint()

d. scanf()

Question 13

Which of the following function is utilized to read one or multiple inputs from the user at the console?

Select one:

a. printf()

b. sscanf()

c. sprint()

d. scanf()

Question 14

What is the formal string for Scan or print a floating point number?

Select one:

a. %d

b. %c

c. %f

d. %s

Question 15

What is the output of the following code snippet? #include <stdio.h>

int main()

{

    int a = 7, c;

    c = a;     

    printf(“c = %d\n”, c);

    return 0;

}

Select one:

a. 7

b. 5

c. 4

d. 9

Question 16

What is the output of the following code snippet?  #include <stdio.h>

int main()

{

    int a = 10, b = 100;

    printf(“++a = %d \n”, ++a);

   return 0;

}

Select one:

a. 11

b. 15

c. 9

d. 12

Question 17

What is the output of the following code snippet?  #include <stdio.h>

int main()

{

    int a = 10, b = 100;

    printf(“++a = %d \n”, ++a);

    return 0;

}

Select one:

a. 101

b. 10

c. 11

d. 100

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

3rd Module Assessment

Question 1

Which statement is used when a sequence of decision is required?

Select one:

a. for

b. switch

c. Nested if-else

d. while

Question 2

Which of the following statement comprises of if, if else and switch statement ?

Select one:

a. Selection Statement

b. Expression Statement

c. Labeled statement

d. Compound Statement

Question 3

Which of the following storage class is defined as static specifier can hold their value between the multiple function calls?

Select one:

a. Automatic

b. External

c. static

d. Register

Question 4

Which of the following statement for loop, while loop and do while loop?

Select one:

a. Selection Statement

b. Jump statement

c. Labeled statement

d. Iteration Statement

Question 5

Which of the following storage class is is used to tell the compiler that the variable defined as extern is declared with an external linkage elsewhere in the program?

Select one:

a. Register

b. static

c. Automatic

d. External

Question 6

In which statement, an identifier followed by : (colon) is a label?

Select one:

a. Selection Statement

b. Compound Statement

c. Expression Statement

d. Labeled statement

Question 7

A _____statement permits a variable to be tested against numerous values for equality

Select one:

a. switch

b. while

c. for

d. Nested if-else

Question 8

A ____ implements the sequence of statements several times until the stated condition becomes false

Select one:

a. Loop

b. design

c. None of the mentioned

d. decision

Question 9

________consists of an expression followed by ; (semi colon)

Select one:

a. Labeled statement

b. Compound Statement

c. Selection Statement

d. Expression Statement

Question 10

Which of the following is termed as an exit-controlled loop?

Select one:

a. do-while loop

b. while loop

c. for loop

d. switch

Question 11

argc refers to

Select one:

a. pointer array which points to every single argument passed to the program

b. list of functions

c. number of arguments passed

d. None of the mentioned

Question 12

Pre-processor directives commence with a ____symbol

Select one:

a. hash(#)

b. asterisk(*)

c. modulo(%)

d. ampersand(&)

Question 13

argv[] refers to

Select one:

a. number of arguments passed

b. Argument Vector

c. list of functions

d. None of the mentioned

Question 14

______ processes program prior to going to the compiler

Select one:

a. Selection statements

b. printf() function

c. scanf() function

d. Pre-processor

Question 15

What is the output of the following code snippet? #include<stdio.h>

int main()

{

   int n;

   for(n = 9; n!=0; n–)

     printf(“n = %d”, n–);

   getchar();

   return 0;

}

Select one:

a. Above program goes in infinite loop because n is never zero when loop condition (n != 0) is checked.

b. n=7 6 5 4 3 2 1

c. n=6 5 4 3 2 1

d. Garbage Value

Question 16

What is the output of the following code snippet?  #include<stdio.h>

main()

{

   int x = 5;

   if(x==5)

   {

       if(x==5) break;

       printf(“program”);

   }

   printf(“computer”);

}

Select one:

a. Compile Error

b. program

c. computer

d. programcomputer

Question 17

What is the output of the following code snippet? #include<stdio.h>

int main()

{

 int i;

 while(0, i < 2)

 {

  printf(“Loop “);

  i++;

 }

 return 0;

}

Select one:

a. 0

b. Loop

c. Loop Loop

d. Compile error

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

4th Module Assessment

Question 1

A function may send back a value is known as

Select one:

a. Function Name

b. Parameter

c. Function Body

d. Return Type

Question 2

Which of the following method copies the actual value of an argument into the formal parameter of the function?

Select one:

a. Return Type

b. Call by Value

c. Call by reference

d. Parameter

Question 3

Which of the following method duplicates the address of an argument into the formal parameter?

Select one:

a. Return Type

b. Call by Value

c. Parameter

d. Call by reference

Question 4

The ______encompasses a collection of statements that describe what the function does.

Select one:

a. Function Name

b. Function Body

c. Return Type

d. Parameter

Question 5

For which reason, functions are used?

Select one:

a. All of the mentioned

b. To enhance the readability of code

c. Decreases the size of the code, identical set of statements are substituted by function calls.

d. Debugging of the code would be simpler if you use functions, as errors are uncomplicated to be traced.

Question 6

A _______is a cluster of statements that together accomplish a task

Select one:

a. Structure

b. Pointer

c. function

d. Union

Question 7

Which of the following is the correct declaration of Array?

Which of the following is the correct declaration of Array?

Select one:

a. int num[100]

b. int [100]

c. int num=100

d. None of the mentioned

Question 8

An _______is a assemblage of one or more values of the identical type

Select one:

a. Union

b. Structure

c. array

d. Pointer

Question 9

Which of the following is organized as matrices which can be exemplified as the collection of rows and columns?

Select one:

a. 1D Array

b. Union

c. 2D Array

d. Structure

Question 10

A _____ is like a placeholder

Select one:

a. Return Type

b. Parameter

c. Function Name

d. Function Body

C Program_______

Select one:

a. None of the above

b. must contain atleast one function

c. Needs input data

d. Need not contain any function

Question 11

What will be the output of the following code? #include”stdio.h”

void main()

{

      int a[20];

      printf(“%d %d”, a[11], a[18]);

}

Select one:

a. Garbage value 0

b. Code will not compile

c. Garbage value Garbage Value

d. 0 0

Question 12

What is right way to Initialize array?

Select one:

a. int n{5} = { 7, 4, 6 };

b. int num[5] = { 7, 4, 2, 5, 6 };

c. int n(6) = { 7, 4, 2, 5, 6 };

d. int n{} = { 7, 4, 2, 5, 6 };

Question 13

What will be printed after execution of the following code? void main()

{

      int arr[8] = {5,6,7,8,9};

      printf(“%d”, arr[6]);

}

Select one:

a. 6

b. 9

c. 0

d. 5

Question 14

Which of the following is the correct syntax for storing word “COMPUTER” in C programming?

Select one:

a. char name[8] = {‘C’,’O’,’M’,’P’,’U’,’T’,’E’,’R’,’\0′}

b. char name[8] = {‘C’,’O’,’M’,’P’,’U’,’T’,’E’,’R’}

c. name = “COMPUTER”

d. char name[8] = {“C”,”O”,”M”,”P”,”U”,”T”,”E”,”R”}

Question 15

Which of the following keyword is used to transfer control from a function back to the calling function?

Select one:

a. switch

b. goto

c. Break

d. return

Question 16

Assume y be an array. Which of the following operations are incorrect?

I. ++y

II. y+1

III. y++

IV. y*2

Select one:

a. I and II

b. II and III

c. I, II and III

d. I, III and IV

Question 17

What will be the output of the program ?

#include”stdio.h”

int main()

{

    int arr[10] = {100};

    printf(“%d”, 10[arr]);

    return 0;

}

Select one:

a. 100

b. 1

c. 16

d. 0

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

5th Module Assessment

A set of simple string manipulation functions are employed in _______

<string.h>

Question 1

Which operator used to get value at address stored in a pointer variable?

Select one:

a. ||

b. &

c. *

d. &&

Question 2

Binary files are predominantly the ____ files in the computer.

Select one:

a. .bin

b. .cpp

c. .c

d. .txt

Question 3

Which of the library function is managed to compare two strings ?

Select one:

a. strcpy

b. strcmp

c. strcat

d. strlen

Question 4

An _______ is a block of sequential data

Select one:

a. pointer

b. Register

c. memory

d. array

Question 5

A _____is a variable that stores the address of another variable.

Select one:

a. Array

b. pointer

c. Register

d. memory

Question 6

Which of the library function concatenates a string onto the end of the new string?

Select one:

a. strcat

b. strlen

c. strcmp

d. strcpy

Question 7

_____ is the container well-defined in C to store data variables of different type and supports for the user defined variables storage

Select one:

a. Array

b. Structure

c. pointer

d. Union

Question 8

Members of a structure are always stored in —-

Select one:

a. Random memory locations

b. Different memory locations

c. consecutive memory locations

d. Alternate memory locations

Question 9

Which of the library function put back the length of a string?

Select one:

a. strcpy

b. strcat

c. strlen

d. strcmp

Question 10

Which of the library function is utilized to copy a string?

Select one:

a. strcpy

b. strcat

c. strlen

d. strcmp

A pointer is defined as

Select one:

a. All of the above

b. A variable that stores address of other variable

c. A variable that stores address of an instruction

d. A keyword used to create variables

Question 11

Which header file is used to defineNULL macro ?

Select one:

a. stdio.h

b. stddef.h

c. stdio.h and stddef.h

d. math.h

Question 12

Why do we use pointers in a C program?

Select one:

a. It enable complex “linked” data structures like linked lists and binary trees.

b. All of the above

c. It allows different functions to share and modify their local variables.

d. To pass large structures so that complete copy of the structure can be avoided.

Question 13

What is (void*)0?

Select one:

a. Representation of NULL pointer constant

b. Error

c. None of above

d. Representation of int pointer

Question 14

How can we merge two statements into one? char *ch; ch = (char*) malloc(100);

Select one:

a. char *ch = (char *)(malloc*)(100);

b. char ch = *malloc(100);

c. char *ch = (char*)malloc(100);

d. char *ch = (char) malloc(100);

Question 15

In this program float takes 4 bytes, what will be the output? #include <stdio.h>

 int main()

{

    float a[5] = {11.5, 10.0, 13.5, 90.5, 10.5};

    float *x1 = &a[0];

    float *x2 = x1 + 3;

    printf(“%f “, *x2);

    printf(“%d”, x2 – x1);

   return 0;

}

Select one:

a. 90.500000 12

b. 90.500000 3

c. 10.000000 12

d. 0.500000 3

Question 16

What is the output of following program?

#include <stdio.h>

 int main()

 {

 int i = 10;

 void *p = &i;

 printf(“%d\n”, (int)*p);

 return 0;

 }

Select one:

a. Run error

b. 20

c. 30

d. Compile error

Question 17

Output of following program? # include <stdio.h>

void pointer(int *z)

{

    *z = 10;

}

int main()

{

  int y = 20;

  pointer(&y);

  printf(“%d”, y);

  return 0;

}

Select one:

a. Compile error

b. 20

c. Run error

d. 10

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Assignment 2

Case Study

Structures in C

A structure is a user-defined data type available in C that allows to combining data items of different kinds. Structures are used to represent a record.

Defining a structure: To define a structure, you must use the struct statement. The struct statement defines a new data type, with more than one member. The format of the struct statement is as follows:

struct [structure name]

   {

       member definition;

       member definition;

       …

       member definition;

   }; 

union

A union is a special data type available in C that allows storing different data types in the same memory location. You can define a union with many members, but only one member can contain a value at any given time. Unions provide an efficient way of using the same memory location for multiple purposes.

Defining a Union: To define a union, you must use the union statement in the same way as you did while defining a structure. The union statement defines a new data type with more than one member for your program. The format of the union statement is as follows:

    union [union name]

    {

       member definition;

       member definition;

       …

       member definition;

    };

Similarities between Structure and Union

Both are user-defined data types used to store data of different types as a single unit.

Their members can be objects of any type, including other structures and unions or arrays. A member can also consist of a bit field.

Both structures and unions support only assignment = and sizeof operators. The two structures or unions in the assignment must have the same members and member types.

A structure or a union can be passed by value to functions and returned by value by functions. The argument must have the same type as the function parameter. A structure or union is passed by value just like a scalar variable as a corresponding parameter.

‘.’ operator is used for accessing members.

Question 1 : In 32-bit system, find the size of the following structure in bytes

#include <stdio.h>

struct student

{

     int b[10];

     char ch;

};

Select one:

a. 41

b. 11

c. 44

d. 5

Question 2

Which of the following is not possible in C when members in a structure are same as that in a union?Let A be a structure and Let B be a union

Select one:

a. None of the above

b. sizeof(A) is greater than sizeof(B)

c. sizeof(A) is less than to sizeof(B)

d.  sizeof(A) is equal to sizeof(B)

Question 3

Which of the following is not possible in C when members are different in a structure and union?Let A be a structure and Let B be a union

Select one:

a. sizeof(A) is greater than sizeof(B)

b. sizeof(A) is equal to sizeof(B)

c. None of the above

d. sizeof(A) is less than sizeof(B)

Question 4

What is the similarity between a structure, union and enumeration?

Select one:

a. All of them define new pointers

b. All of them define new structures

c. All of them define new values

d. All of them define new data types

Question 5

What will be the output of following program ? #include‹stdio.h›

int main()

{

    struct student

    {

        char ch[] = “Godisgreat”;

        int no_ofpages = 100;

    };

    struct student *p;

    printf(“%d “, p->no_ofpages);

    printf(“%s”, p->ch);

    getchar();

    return 0;

}

Select one:

a. 100 Godisgreat

b. 100

c. Compiler Error

d. 600

15/15

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Business Environment (OOBB 203)-Semester II

Business Environment (OOBB 203)-Semester II.docx2

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 1

We all live in some kind of environment. Usually, it includes our family, friends, neighbors, and colleagues, as well as buildings, roads, etc. We need to communicate and cooperate with others. And just like people, businesses don’t exist in isolation, but rather in various types of business environments. Companies that remain passive in their relationships with other firms and the rest of the world risk losing their position and ending up in the last place. To be successful, a company needs to recognize multiple elements of a business environment and to adapt its strategies accordingly. A business environment is a conglomeration of various inner and outer forces, factors, and institutions that have an effect on the functioning and development of companies and firms. Among those factors, you can find the consumers, competitors, suppliers, the government, etc. Some of these have a direct influence on the company’s operations, while others have more of a butterfly effect. The internal environment factors refer to anything within the company and under the control of the company no matter they are tangible or intangible. These factors after being figured out are grouped into the strengths and weaknesses of the company. If one element brings positive effects to the company, it is considered as strength. On the other hand, if a factor prevents the development of the company, it is a weakness. Within the company, there are numerous criteria need to be taken into consideration.

Human resources: It can be said that the human element is among the most important factors that internally exert impacts on the growth of the company. The employees can be either a strength or weakness of the company depending on the level of practical skills, attitudes toward work and so on. For example, if a business has skillful and motivated workers, they are sure to be the biggest asset of this enterprise. Conversely, employees without carefully trained and have negative attitudes to their task will be an enormous challenge for the company to address.  Capital resources: Of course, money is a vital part of any enterprise to perform its plan. No company can survive without having capital resources. Once a company has enough budgets, they can easily launch their projects and expand its scale. There are also several ways for an enterprise to maintain stable budgets by some resources such as investment opportunities, funding, and annual income.  Operational efficiency: The way an enterprise operates directly affects their success in the marketplace. The operation of a company includes a bundle of contributing factors such as products, employees, customers. The business owners need to fully understand how their products manufactured, how it is consumed and favorable by consumers, how their employees perform their tasks, what improvements need to be made, etc. Only when the operator truly knows the level of efficiency the company is, can he thinks about appropriate adjustment methods to handle all current problems. Organizational structure: To have a suitable organizational structure requires the owners have to consider carefully set up a system to work smoothly within the company. Whether it is a centralized or decentralized system, the most important thing is how effective the structure is when applied for the company. The heads of departments need to make sure that the information flow is widely conveyed to all customers. Suitable rules and regulations are being applied to ensure the benefits of employees, and the business as well. Infrastructure: When you already have well-trained and motivated workers, an effective operational and organizational system, make sure that the infrastructure of the company is good enough for all your functions. With the modern and high-quality facilities, stable power, internet, and wifi connection, and so on your company is likely to perform better. In other words, the better your infrastructure, the more opportunities for your company to perform successfully.

Innovation: With the fast pace of the fourth industrial revolution, the world is on the ways to strongly change the life of people including how they work, they communicate with each other. Therefore, each company also needs to innovate themselves firstly to keep up with the development of the whole world and secondly to make themselves outstanding among competitors. Innovations can be taken in the manufacturing process, organizational structure, or even infrastructure.                 On the contrary to internal factors, external elements are affecting factors outside and under no control of the company. Considering the outside environment allows businessmen to take suitable adjustments to their marketing plan to make it more adaptable to the external environment. There are numerous criteria considered as external elements. Among them, some most outstanding and important factors that need to list are the current economic situation, laws, surrounding infrastructure, and customer demands.

Economic situation: Economy is one of the most determining factors for the success of the company even though it is an external element. Within the economy, some contributing factors such as the fluctuation of interest rate, economic crisis, and so on directly and strongly affects the consumption of buyers, and consequently, the profits of businesses. Laws: The rules and regulations from the local government play an integral role in the development of the company. There are some countries which their laws prevent the development of certain industries. That can be a threat to the company. On the other hand, some industries receive positive and continuous support from the local governments via their rules and regulations. Besides, if the laws allow organizations outside the countries to invest in local industries, they will indirectly create an enormous source of financial support for local businesses.   Surrounding: Depending only on inside infrastructure is not enough for the company to develop. If they have a well-structured and modern infrastructure, but the road to access the company is not well created will be deterrence for the business. They will find trouble in the delivery method and looking for a collaborator. Especially, if your company manufactures hi-tech devices; however, the outside infrastructure is not suitable to equip these devices, it would be a big challenge.  Customer demands: We all know that what people want, what people need, and what they demand are usually different from each other. Customers need something to communicate with their family member outside their countries, they want to a smart phone which can perform multi-function; however, they cannot afford that smart phone with a limited budget. Therefore, their demand is just a typical phone which can perform basic functions. If your company is not able to figure out what are your customer demands, you will face difficulty in how to make your products consumed by customers.   In conclusion, there is a bunch of contributing factors to the success of the company which comes from both outside and inside a business. Either outside or inside factors are of utmost importance for the development of the company. If a business hopes to perform smoothly and successfully, they need to take all these elements into consideration before making any decision.

Question -1 In external environmental scanning, interest rates, the cycle of recessions and inflation are classified

Select one:

a. geographic influences

b. government influences

c. economic influences

d. technological advancement

Question 2

In external environmental scanning, tax legislations, social security legislations and tax provisions are classified as

Select one:

a. geographic influences

b. government influences

c. economic influences

d. technological advancement

Question 3

Primary produces such as wheat farmers, construct dams in an attempt to influence their businesses

Select one:

a. internal Environment

b. external Environment

c. Micro Environment

d. Macro Environment

Question 4

Procedure of analyzing threats and opportunities of organization’s environment is classified as

Select one:

a. environmental influences

b. environmental economics

c. environmental planning

d. environmental scanning

Question 5

The influences in a society and/or its culture/s that affect people’s attitudes, beliefs, behaviours, preferences, customers and lifestyles are known as

Select one:

a. Demographic forcces

b. Technological forces

c. Sociocultural forces

d. Legal forces

Question 6

When using the PESTL framework, marketers are investingating___

Select one:

a. Internal forces

b. Macro-environmental forces

c. Micro-environmental forces

d. Competitive forces

Question 7

Which of the following is not a part of an organisation’s external environment?

Select one:

a. Customers

b. Competitors

c. The micro-environment

d. All of the options listed are a part of an organisation’s external environment

Question 8

Which of the following is part of an organisation’s marketing environment?

Select one:

a. The organisation’s micro-environment

b. The organisation’s macro-environment

c. Any internal or external force that affects the organisation’s ability to create, communicate, deliver and exchange offerings of value

d. All of the options listed are part of an organisation’s marketing environment

Question 9

Which of the following statements is correct?

Select one:

a. The internal environment includes those factors that are not controllable by the organisation

b. Weakenesses are internal factors that marketers seek to minimise

c. The internal environment includes factors that are controllable by the organisation

d. Both b and c

Question 10

Which of the following would not be a part of an organisation’s micro-environment?

Select one:

a. Competitors

b. Partners such as suppliers and retailers

c. Customers

d. The economy

Business Environment (OOBB 203)-Semester II.docx2 (1)

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 2

A mixed economy is a market system of resource allocation, commerce, and trade in which free markets coexist with government intervention. A mixed economy may emerge when a government intervenes to disrupt free markets by introducing state-owned enterprises (such as public health or education systems), regulations, subsidies, tariffs, and tax policies. Alternatively, a mixed economy can emerge when a socialist government makes exceptions to the rule of state ownership to capture economic benefits from private ownership and free-market incentives. A combination of free-market principles of private contracting and socialist principles of state ownership or planning is common to all mixed economies.  In developed Western economies, the historical development of the mixed economy is the evolutionary change of the free market concept as it adapted to avoid the risks of widespread social unrest and potential revolutionary socialist or Marxist change. Social democratic programs that arose in continental Europe in the 20th century created coalitions of business interests with major social groups to improve social welfare without jettisoning private property and the market economy. This mixed economic approach included economic planning, high tariffs, guarantees of group rights, and social welfare programs.

Mixed economies also arose in many countries that formerly had centrally planned and socialist economies. The mixed economies in modern China and Russia, for example, evolved from communist systems that were too inefficient to compete in the modern global economy. The social experience of the Chinese and Russian people during that process was a profound testament to the personal difficulties and turmoil that people endure when a country makes a transition to a mixed economy.

Question 1: A situation that occurs when two or more businesses try to sell the same type of product to the same customers is referred to as

Select one:

a. Competition

b. Factors of production

c. Consumer goods

d. Free enterprise

Question 2

An economic system in which business are allowed to produce any goods and services they wish to is referred to as …

Select one:

a. A centrally planned economy

b. Free enterprise

c. A mixed economy

d. A private economy

Question 3

An economic system in which private property is almost totally restricted is called …

Select one:

a. A mixed economy

b. Competition

c. Free enterprise

d. A centrally planned economy

Question 4

An economic system that has Government restrictions on the actions of individuals and businesses is called

Select one:

a. A mixed economy

b. A centrally planned economy

c. Free enterprise

d. Factors of production

Clear my choice

Question 5

Out of the given options , the Three basic types of economic systems are …

Select one:

a. Natural resources, labour, capital

b. What to produce, how to produce, who will receive the goods and services

c. Free enterprise, centrally planned economy, mixed economy

d. Government, business, consumers

Question 6

The term that indicates ownership, either by individuals or by a business, is …

Select one:

a. Centrally planned economy

b. Competition

c. Free enterprise

d. Private property

Question 7

Things that are needed to produce goods and services are called__

Select one:

a. Efficient use of resources

b. Factors of production

c. Economic systems

d. Private property

Question 8

What are the limitations of a Mixed economy?

Select one:

a. High taxation and less incentive to work hard

b. All profit goes to the government

c. Restrictions on personal freedoms

d. Uneven distribution of resources, consumer difficulty in obtaining information, and health-risk products

Question 9

What is the basic question(s) all economic systems try to answer?

Select one:

a. What to produce?

b. How to produce it?

c. For whom to produce?

d. All of the above

Question 10

What is the main goal of a Mixed Economy?

Select one:

a. To gain private property

b. To ensure fairness in business

c. To get rid of high taxation

d. To promote individual and social rights

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 3

Unemployment is a term referring to individuals who are employable and seeking a job but are unable to find a job. Furthermore, it is those people in the workforce or pool of people who are available for work that does not have a job. Usually measured by the unemployment rate, which is dividing the number of unemployed people by the total number of people in the workforce, unemployment serves as one of the indicators of an economy’s status. The term “unemployment” can be tricky and often confusing, but it certainly includes people who are waiting to return to a job after being discharged from it. However, it does not anymore encompass individuals who have stopped looking for a job in the past four weeks due to various reasons such as leaving work to pursue higher education, retirement, disability, and personal issues. Even people who are not actively seeking a job anywhere but actually want to find one are not considered unemployed.

Interestingly, people who have not looked for a job in the past four weeks but have been actively seeking one in the last 12 months are put into a category called the “marginally attached to the labor force.” Within this category is another category called “discouraged workers,” which refers to people who have lost all their hope of finding a job.

The too many details and exclusions mentioned above make a lot of people believe that unemployment is vague and that the unemployment rate does not fully represent the actual number of people who are unemployed. So, it is a good idea to also look at the term “employment,” which the Bureau of Labor Statistics (BLS) describes as individuals aged 16 and above who have recently put hours into work in the past week, paid or otherwise, because of self-employment.                                                                                                                                                                                               1.  Normal, Transitional Unemployment

According to economists this exists at all times at a rate of 2-3 percent and harms no one. For individuals or groups, it lasts for a few months when people move from job to job for better wages or wait for better opportunities.

2. Casual and Seasonal Unemployment

Some occupations are adversely affected by weather conditions and workers in these trades expect a certain amount of casual unemployment. Seasonal unemployment often occurs in agri­culture, dockyard, hotels, restaurants and construction business. Such unemployment is inevitable and tends to be overcome by casual labor.                                                                                                                                                  3. Frictional Unemployment

 This type of unemployment exists because of friction in the labor market. Jobs may exist but people do not go to take up jobs away from home for domestic reasons such as children’s education, family and friendly ties and, the housing problem in a new place.

4. Structural Unemployment

It is caused by a change in the demand for the products of a given industry. The closing of the particular industry may cause structural changes in the nation’s industry as a whole. If labor is specific, it is immobile between industries and unemployment results. The pace of modern technology is so fast that it makes past techniques obsolete, causing unemployment in old industries.

5. Cyclical Unemployment

Both external and internal factors such as wars, strikes, population changes, political disturb­ances, floods, droughts, changes in consumption patterns, investment, savings, spending, the supply of credit, business outlook, etc. bring about this type of unemployment. This type of unemployment was a serious problem before the Second World War. Now it has been largely mastered by Govern­ment activity to control the development of cycles.

Marks – 10 /10

Question -1 Due to the introduction of new technology, workers may be replaced by machines leading to___

Select one:

a. Technological unemployment

b. Frictional unemployment

c. Seasonal unemployment

d. Disguised unemployed

Question 2

If people are made unemployed because of a fall in aggregate demand this is known as

Select one:

a. frictional unemployment

b. seasonal unemployment

c. Cyclical unemployment

d. Structural unemployment

Question 3

if there is Cyclical unemployment in the economy the government might

Select one:

a. increase interest rates

b. encourage savings

c. cut income tax

d. reduce government spending

Question 4

People who are unwilling to work at the existing wage rate are___

Select one:

a. Voluntary unemployed

b. Frictional unemployed

c. Casual unemployed

d. Seasonal unemployed

Question 5

Reducing involuntary unemployment

Select one:

a. helps the economy move on to the Production Possibility Frontier

b. helps shift the economy’s Production Possibility Frontier inwards

c. Helps the economy move along its Production possibility frontier

d. helps the economy move inside the production possibility frontier.

Question 6

Structural unemployment occurs when…

Select one:

a. workers’ skills no longer meet the needs of the job market

b. workers’ lose their job due to bad economies.

c. workers’ skills aren’t needed in this season of the year

d. All of the choices

Question 7

the natural rate of unemployment is likely to fall if

Select one:

a. unemployment benefits increase

b. income tax increases

c. more training is available for the unemployed

d. Geographically immobility increases

Question 8

unemployment which occurs when the workers move from one job to another job is known as __

Select one:

a. cyclical unemployment

. seasonal unemployment

c. technological unemployment

d. frictional unemployment

Question 9

unemplyment in a developing country generally takes place due to ___

Select one:

a. Natural disasters

b. Lack of Effective demand

c. Lack of Complementary factors of production

d. switch over from one job to another

Question 10

Which person is an example of someone who frictionally unemployed?

Select one:

a. A engineer who quit their last and start another in 2 months

b. Minnesota lifeguard in the winter

c. A welder who got laid-off due to the economy

d. A teacher in the summer

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 4

Some aspects of CSR may be required by law. For example, banks and hospitals are legally required to protect people’s private information. Others are voluntary.

The benefits of CSR are many. Companies establish good reputations, attract positive attention, save money through operational efficiency, minimize environmental impacts, attract top talent and inspire innovation. Public companies often report on their CSR performance in their annual reports.

CSR matters for companies because if the community does not approve of how they do business, they may lose customers or see their reputations suffer. The news media and activist groups often watch companies closely and are quick to publicize instances of irresponsible behavior.  Corporate social responsibility (CSR) is a self-regulating business model that helps a company be socially accountable — to itself, its stakeholders, and the public. By practicing corporate social responsibility, also called corporate citizenship, companies can be conscious of the kind of impact they are having on all aspects of society including economic, social, and environmental. To engage in CSR means that, in the normal course of business, a company is operating in ways that enhance society and the environment, instead of contributing negatively to them.

Published Standards for CSR

In 2010, the International Organization for Standardization (ISO) released a set of voluntary standards meant to help companies implement corporate social responsibility. Unlike other ISO standards, ISO 26000 provides guidance rather than requirements because the nature of CSR is more qualitative than quantitative, and its standards cannot be certified. Instead, ISO 26000 clarifies what social responsibility is and helps organizations translate CSR principles into effective actions. The standard is aimed at all types of organizations regardless of their activity, size, or location. And, because many key stakeholders from around the world contributed to developing ISO 26000, this standard represents an international consensus.

Question -1 All definitions Corporate social Responsibility recognize that

Select one:

a. companies have a responsibility for their impact on society and environment.

b. the natural environment should be the main focus of CSR activities.

c. Business ethics is a complex issue.

d. Companies must pay equal attention to ethics abd sustainability.

Question 2

Corporate social Responsibility is also referred to as

Select one:

a. Social responsibility

b. socio- corp responsibility

c. corporate citizenship

d. none of these

Question 3

CSR activities may include

Select one:

a. Reinvesting profits in health and safety or environmental programs

b. Supporting charitable organizations in the communities where a company operates

c. Company policies that insist on working with partners who follow ethical business practices

d. All of Above

Question 4

CSR is a self-regulating business model that helps a company be ________to itself, its stakeholders, and the public.

Select one:

a. relevant

b. socially accountable

c. very honest

d. none of these

Question 5

ISO 26000 clarifies

Select one:

a. what social responsibility is

b. helps organizations translate CSR principles into effective actions.

c. Both a & b

d. none of these

Question 6

ISO is referred to as

Select one:

a. Internal Organization for Standardization

b. International Organization for Standardization

c. Internal Organization for Stakeholders

d. International Organization for Stakeholders

Question 7

The concept of social responsibility is applicable to businesses around the world, but adaptations of implementation and other details on the local level are needed.

Select one:

a. TRUE

b. FALSE

c. Partially true

d. Cant say

Question 8

The general four types of social responsibility include

Select one:

a. legal, philanthropic, economic, and ethical

b. ethical, moral, social, and economic

c. philanthropic, justice, economic, and ethical

d. legal, moral, ethical, and economic

Question 9

The ________ dimension of social responsibility refers to a business’s societal contribution of time, money, and other resources.

Select one:

a. ethical

b. philanthropic

c. volunteerism

d. strategic

Question 10

which of the following is a benefit of CSR ?

Select one:

a. minimize environmental impacts

b. Companies establish good reputations

c. save money through operational efficiency

d. All of Above

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 5

Property Rights (TRIPS), which sought to improve protection of intellectual property across borders; the Understanding on Rules and Procedures Governing the Settlement of Disputes, which established rules for resolving conflicts between members; the Trade Policy Review Mechanism, which documented national trade policies and assessed their conformity with WTO rules; and four plurilateral agreements, signed by only a subset of the WTO membership, on civil aircraft, government procurement, dairy products, and bovine meat (though the latter two were terminated at the end of 1997 with the creation of related WTO committees). These agreements were signed in Marrakech, Morocco, in April 1994, and, following their ratification, the contracting parties to the GATT treaty became charter members of the WTO. By the 2010s the WTO had more than 160 members.     The WTO has six key objectives: (1) to set and enforce rules for international trade, (2) to provide a forum for negotiating and monitoring further trade liberalization, (3) to resolve trade disputes, (4) to increase the transparency of decision-making processes, (5) to cooperate with other major international economic institutions involved in global economic management, and (6) to help developing countries benefit fully from the global trading system. Although shared by the GATT, in practice these goals have been pursued more comprehensively by the WTO. For example, whereas the GATT focused almost exclusively on goods—though much of agriculture and textiles were excluded—the WTO encompasses all goods, services, and intellectual property, as well as some investment policies. In addition, the permanent WTO Secretariat, which replaced the interim GATT Secretariat, has strengthened and formalized mechanisms for reviewing trade policies and settling disputes. Because many more products are covered under the WTO than under the GATT and because the number of member countries and the extent of their participation has grown steadily—the combined share of international trade of WTO members now exceeds 90 percent of the global total—open access to markets has increased substantially.

The rules embodied in both the GATT and the WTO serve at least three purposes. First, they attempt to protect the interests of small and weak countries against discriminatory trade practices of large and powerful countries. The WTO’s most-favored-nation and national-treatment articles stipulate that each WTO member must grant equal market access to all other members and that both domestic and foreign suppliers must be treated equally. Second, the rules require members to limit trade only through tariffs and to provide market access not less favorable than that specified in their schedules (i.e., the commitments that they agreed to when they were granted WTO membership or subsequently). Third, the rules are designed to help governments resist lobbying efforts by domestic interest groups seeking special favors. Although some exceptions to the rules have been made, their presence and replication in the core WTO agreements were intended to ensure that the worst excesses would be avoided. By thus bringing greater certainty and predictability to international markets, it was thought, the WTO would enhance economic welfare and reduce political tensions.

Question 1 : GATT came into force in the year____

Select one:

a. 1948

b. 1952

c. 1964

d. 1991

Question 2

The World Trade Organization (WTO) is an international institution that_____

Select one:

a. resolves the disputes between management & labour

b. oversees the global trade rules between nations.

c. Both a & b

d. none of these

Question 3

The WTO began operations in_____

Select one:

a. January , 1995.

b. July , 1996.

c. January , 1997.

d. March, 1991.

Question 4

The WTO is the successor to ____

Select one:

a. International Trade Organisation (ITO)

b. General Agreement on Tariffs and Trade

c. United Nations

d. None of these

Question 5

TRIPS , is referred to as __

Select one:

a. Trade-Relation of Intellectual Property Rights

b. Trade-Related Aspects of Intellectual Property Rights

c. Trade-Rights Aspects of Intellectual Property Row

d. Trade-Relation of Intellectual Privacy Rights

Question 6

What is the underlying characteristic of the WTO?

Select one:

a. It facilitates economic co-operation between different countries

b. It resolves disputes between economic trade blocks

c. It facilitates the development of less developed countries

d. It acts as an umbrella institution that regulates the agreements concluded at the Uruguay round, the organisation’s ultimate goal being the promotion of free international trade

Question 7

Which of the following is a function of WTO

Select one:

a. It administers the WTO agreements

b. It reviews trade policies of member states acting as a forum for the resolution of international trade disputes

c. Both a & b

d. none of these

Question 8

Which of the following is an objective of WTO :

Select one:

a. to resolve trade disputes

b. to provide a forum for negotiating and monitoring further trade liberalization

c. to increase the transparency of decision-making processes

d. All of above

Question 9

which of the following is true in context of ” An executive apparatus”

Select one:

a. the Director General and the Secretariat acting in their administrative capacity.

b. the Ministerial Conference and the General Council acting in their decision-making capacity.

c. Both a & b

d. none of these

Question 10

World Trade Organization (WTO), international organization established to______

Select one:

a. supervise

b. liberalize world trade.

c. Both a & b

d. none of these

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Assignment 2

CSR policies should set the ‘rules of the game’ which the company concerned has established, and within which broader corporate financial returns need to be secured. “Basic CSR principles and commitments should be considered non-negotiable parameters of business operations rather than being subject to specific financial performance requirements,” says Mr Potts.

Future embrace

At present, the incorporation of CSR programs by businesses on a fundamental level appears as prevalent as ever. However, the jury is still very much out as to whether companies have it within them to embrace a broad or multifaceted vision of CSR. “It would be utopic to expect a sea change among industries,” says Mr. Potts. “While there are plenty of examples of companies using strong CSR performance as a brand-building and product marketing strategy, far too many corporate executives still rely on the old financial and hierarchical models of yesteryear as the basis of their own planning. The biggest and most influential companies also tend to be the most reliant on the ‘conventional way’ of doing business. What is happening, however, is a broad transition to the adoption of external multi-stakeholder processes – in the form of multi-stakeholder sustainability standards and labels – as a way of outsourcing the stakeholder engagement process.”

Ultimately, there are no hard and fast rules governing CSR. The more companies understand the growing resilience, reputation and legal risk they face, the more opportunities our globalized and connected world has to offer them. “This often depends on the sector,” points out Mr Webb. “If you make mining equipment, your focus will be energy efficiency and perhaps new technology that is safer. If you sell chocolate, your concerns are around the economic viability of your supply chain.”

With a number of recent legislative and behavioral developments, such as the transparency of supply chains, sustainable development goals, the ramifications of the Modern Slavery Act 2015 and the zero-landfill initiative, all contributing to the CSR melting pot, Ms Kozlov is in no doubt that companies are unifying their CSR activities under an overarching, business-aligned strategy, and using them as a tool to drive innovation, tackle material issues, strengthen community engagement and mitigate risks.

Question -1 An honest adoption of CSR often requires___

Select one:

a. serious reformulation of corporate purpose

b. decision-making structures

c. Both a & b

d. None of these

Question 2

As per this case study, IISD is referred to as ___?

Select one:

a. International Institute for Sustainable Development

b. International Institute for Suitable Development

c. Internal Institute for Suitable Development

d. Internal Institute for Sustainable Development

Question 3

CSR allows businesses_______ to ensure a sustainable future.

Select one:

a. to demonstrate their values

b. to engage their employees

c. to communicate with the public about how they operate and the choices they make

d. All of above

Question 4

CSR helps pave the way for partnerships between businesses and civil society that are based on____

Select one:

a. common goals

b. shared actions to deliver impact-driven outcomes

c. Both a & b

d. None of these

Question 5

CSR Stands for ?

Select one:

a. Corporative social Responsibility

b. Corporate social Responsibility

c. Corporate secret Responsibility

d. Company social Responsibility

Question 6

CSR strategy is also sometimes referred to as___

Select one:

a. sustainable scenario

b. sustainability strategy

c. strategy for Society

d. Social strategy

Question 7

the study mentioned in the case study, showed that CSR-orientated companies had a ____

Select one:

a. higher level of employee engagement

b. provided a markedly better standard of customer service.

c. Both a & b

d. None of these

Question 8

Which of the following does the term Corporate Social Responsibilityrelate to ?

Select one:

a. Ethical conduct

b. Environmental practice

c. Community investment

d. All of the above

Question 9

Which of the following does the term Corporate Social Responsibility relate to?

Select one:

a. Human rights and employee relations

b. Environmental practice

c. Ethical conduct

and community investment

d. All of the above

Question 10

Which of the following is not a criticism of CSR

Select one:

a. CSR is too costly

b. CSR encourages cynicism

c. CSR leads to enhanced brand reputation

d. CSR is misguided

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Environment Studies (OEDL 206)-Semester II

Environment Studies (OEDL 206)-Semester II

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Tropical Rain Forests                                                                                                                                                                Area  under  tropical  rainforest  covers  10  degrees  north  or  south  of  the  equator.  Tropical rainforests are present in different parts of the world like Asia, Australia, Africa, South America, Central America, Mexico and he pacific islands. These are also known as lowland equatorial evergreen rainforests.  Minimum normal annual rainfall between ,1750 millimeters (69 in) and 2,000 millimeters (79 in) occurs in this climate region. Mean monthly  temperatures  exceed  18 °C  (64  °F)  during  all  months  of  the  year.  Rainforests  are  home  to  half  of  all  the  living  animal  and  plant  species  on  the  planet.  Tropical  rainforests  are  called  the  “world’s  largest  pharmacy”,  because  over  one-quarter  of  modern medicines originate from its plants. The undergrowth in a rainforest is restricted in many areas by the lack of sunlight at ground level. This makes it possible for people and other animals to walk through the forest. If the leaf canopy is destroyed or thinned for  any  reason,  the  ground  beneath  is  soon  colonised  by  a  dense  tangled  growth  of  vines, shrubs and small trees called a jungle.

Question 1 : An integrated environment of living and non-living things interacting with each other and creating a unique biological, chemical and physical environment is known as –

Select one:

a. Eco environment

b. Eco friendly

c. Ecosystem

d. Ecological

Question 2

Ecology is distinguishable according to the ______.

Select one:

a. Geographical and biological factors.

b. Climatic

c. Both of the above

d. None of the above

Question 3

Ecosystems are divided into

Select one:

a. Terrestrial ecosystems and aquatic ecosystems.

b. Land based ecosystem and water based ecosystem

c. Both of the above

d. None of the above

Question 4

Energy flow in ecosystem is ____.

Select one:

a. Bidirectional

b. Unidirectional

c. All around

d. All of the above

Question 5

Man made ecosystem can be seen in the form of –

Select one:

a. Tissue Culture

b. Forest

c. Aquarium

d. All of the above

Question 6

The environment where the organism or communities live is known as –

Select one:

a. Niche

b. Habit

c. Habitat

d. None of the above

Question 7

The plant of cold or temperate habitat require low temperature for their growth are called –

Select one:

a. Mega herms

b. Mesoderm’s

c. Microtherm

d. Ekistotherms

Question 8

The Water vapor present in the unit volume of air is called –

Select one:

a. Relative humidity

b. Static humidity

c. Absolute humidity

d. Total humidity

Question 9

What is Biodiversity ?

Select one:

a. Many types of flora and fauna in one forest

b. Many types of flora in much forest

c. Many population of one species in one forest

d. All of the above

Question 10

What is the cause for highest biomass in aquatic ecosystem?

Select one:

a. Benthonic and brown algae

b. Sea grass and slime molds

c. Nanoplankton, blue green algae, green algae

d. None of the above

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 2

Environmental Impact Assessment              

Environmental Impact Assessment  (EIA)  is  an  important  management  tool  for 

ensuring  optimal  use  of  natural  resources  for  sustainable  development.  Environmental  Impact Assessment is a planning tool whose main purpose is: “to give the environment its  due  place  in  the  decision-making  process  by  clearly  evaluating  the  environmental  Consequences  of  a proposed   activity   before   action   is   taken.   The   concept   has  ramifications  in  the  long  run  for  almost  all  development  activity  because  sustainable  development  depends  on  protecting  the  natural  resources  which  is  the  foundation  for  further development” EIA is conducted through the following steps: screening, Scoping, Prediction and mitigation, managing, monitoring and audit.  Every development project  has  to  go  through  the  EIA  so  that  we  can  assess  in advance  the  various  impacts,  Negative and positive, of the proposed developed project. For this governments of almost the entire nation had laid down procedures for the same. For conducting the EIA. We  can  use  different  methods,  such  as  baseline  studies,  checklists,  matrices,  network  diagrams, overlays and mathematical modeling. The EIA report is submitted  to  the   governmental  agencies  and  if  they  give  the  approval  then  only  the  project  is  carried  further. The  major  benefits  of  conducting  on  EIA  are  prevention  of  any  permanent  changes  in  the  environment  by  the  project,  the  assessment  of  the  impact  caused  by  the  project,  the  project  can  be  modified  to  save  the  resources  required,  increased  acceptance  level  of  the  proposed  project,  and  avoiding  any  violations  of  laws  and  regulations.   Improved   project   performance   helps   in   curtailing   treatment/clean-up   costs.  With  the  help  of  TQM  and  Environmental  management  system  we  can  not  only  increase  the  customer  satisfaction  level,  but  can  also  improve  the  use  of  natural  resources,  reduce  environmental  impact  and  reduce  cost  of  production.  By this  objective the companies are implementing TQM and EMS approaches.

Question 1 : Areas which come under environmental audit, is/are –

Select one:

a. Material management, savings and alternatives

b. Energy management and savings

c. Water management and economy of use

d. All of the above

Question 2

EIA involves –

Select one:

a. “Assessment of existing environment, analysis of various factors of ecosystem and adverse impact of the project on it and on the people of the surrounding.”

b. Assessment of the economic and social benefits which a project will yield after implementation.

c. Assessment of the impact of the proposed project on the environment in general sense.

d. Assessment of the impact of the proposed project on the habitats of the animals living nearby.

Question 3

Environmental audit is conducted in stages –

Select one:

a. Pre-audit

b. On-site audit

c. Post-audit

d. All of the above

Question 4

ISO 14000 deals with-

Select one:

a. General guidelines on principles of EMS.

b. Guideline for environmental auditing or General principle of auditing.

c. Guidelines for certification.

d. Life cycle assessment.

Question 5

Landfill is a place where-

Select one:

a. Usually the biodegradable waste is dumped and it decomposes in to store of manure.

b. Any kind of waste is dumped and is left there as place for disposal was not available.

c. There is deep trench and waste is used to fill the trench.

d. The water resource is filled by waste to create land.

Question 6

The cost of environmental assessment depends on

Select one:

a. The size of the project

b. The economic benefits

c. Criticality in the development process

d. All of the above

Question 7

The new series of ISO14000 standards are designed to cover:

Select one:

a. Environmental management systems

b. Environmental auditing

c. Life-cycle assessment

d. All of the above

Question 8

What is a Baseline Study ?

Select one:

a. Method of finding the status of various factors pertaining to environment and society.

b. Method of finding the status of various factors pertaining to environment.

c. Both of the above

d. None of the above

Question 9

What is a Checklist?

Select one:

a. Tool to collect, represent and interpret data for conducting an EIA.

b. Tool to collect, data for conducting an EIA.

c. Tool to collect, and interpret data for conducting an EIA.

d. None of the above

Question 10

What is the long-term aim of EIA?

Select one:

a. To promote sustainable development by ensuring that development proposals

b. To inform the process of decision-making by identifying the potentially significant environmental effects and risks of development proposals.

c. Both of the above

d. None of the above

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 3

The first of the major environmental protection act to be promulgated in India was:

Select one:

a. Air Act

b. Noise Pollution Rule

c. Environmental Act

d. Water Act

Question 2

Incinerators and Emissions pollutants are responsible for the cause of __________?

Select one:

a. Methane

b. Species

c. Nitrous oxide

d. SMOG

Question 3

The Water Act contains:

Select one:

a. 5 Chapters

b. 6 Chapters

c. 7 Chapters

d. 4 Chapters

Question 4

Which of the following environmental law allows private rights to use a resource that is, groundwater, by viewing it as an attachment to the land?

Select one:

a. Factories Act

b. Indian Fisheries Act

c. Easement Act

d. All of these

Question 5

The Water (Prevention and Control of Pollution) Act was enacted in the year:

Select one:

a. 1975

b. 1974

c. 1986

d. 1994

Question 6

Noise pollution has been inserted as pollution in the Air Act in:

Select one:

a. 1981

b. 1982

c. 2000

d. 1987

Question 7

One of the following is air pollution?

Select one:

a. Bryophytes

b. Species

c. Lichens

d. Algae

Question 8

Global warming also refers to as-

Select one:

a. Atmosphere change

b. Climate change

c. None of these

d. Ecological change

Question 9

Which of the following is not a greenhouse gas?

Select one:

a. Carbon monoxide

b. Nitrous oxide

c. Methane

d. Carbon di-oxide

Question 10

Which of the following is (are) the anticipated effect(s) of Global warming?

Select one:

a. All of these

b. Expansion of deserts

c. Changing precipitation

d. Rising sea levels

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 4

Resources that people use are concentrated on the

Select one:

a. Earth

b. Continental Shelf

c. Ocean Shelf

d. Ocean Water

Question 2

 Which of the following is best method from environment point of view?

Select one:

a. Reduce

b. Reuse

c. Recycle

d. All of these

Question 3________________the water is delivered to the surface of the soil directly above the root system of the plants. In subsurface drip irrigation the water is applied directly to the root system.

Select one:

a. Both Of these

b. Subsurface drip irrigation

c. Surface drip irrigation

d. None of these

Question 4

_____________ of water is the process of removing undesirable chemicals, biological contaminants and gases from water.

Select one:

a. Rainwater harvesting

b. Oxidation

c. Purification

d. Sublimation

Question 5

When was the ‘Sustainable Development’ came into existence?

Select one:

a. 1986

b. 1980

c. 1982

d. 1984

Question 6

Which of the following is/are not an objective (s) of sustainable development?

Select one:

a. Maintain a dynamic balance of water resources

b. Maintain a dynamic balance of arable land

c. To bring about a gradual and sometime catastrophic transformation of environment

d. Continue to implement the family planning program.

Question 7

Resources which are found everywhere are called ________ .

Select one:

a. Biotic Resource

b. Ubiquitous Resource

c. Potential Resource

d. Renewable Resource

Question 8

Floods can be prevented by

Select one:

a. Afforestation

b. Removing top soil

c. Deforestation

d. Agriculture

Question 9

Which of the following environmental law allows private rights to use a resource that is, groundwater, by viewing it as an attachment to the land?

Select one:

a. Easement Act

b. All of these

c. Indian Fisheries Act

d. Factories Act

Question 10

Rain Water Harvesting diminishes___________ by diminishing the probability of runoffs during times of hefty precipitation.

Select one:

a. None of these

b. Flooding

c. Soil disintegration

d. Both Of these

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 5

Question 1

The Universal Declaration of Human Rights was adopted on

Select one:

a. 1-Dec-48

b. 31-Dec-48

c. 10-Dec-48

d. 11-Dec-48

Question 2

When did Janani Suraksha Yojana launched?

Select one:

a. 2005

b. 2003

c. 2002

d. 2004

Question 3

Helsinki Declaration, 1964 is concerned with

Select one:

a. Gender discrimination

b.  War prevention

c. Human Experimentation

d. Child Abuse

Question 4

Janani Suraksha Yojana works –

Select one:

a. Pensions to widow women

b. Reducing maternal and neonatal mortality

c. shelters to poor people

d. Encourage people to use safe sexual methods

Question 5

Which programme comes in Family Welfare ?

Select one:

a. Malnutrition programme

b. One child one nation policy

c. IUD programme

d. Child marriage

Question 6

Study of trends in human population growth and prediction of future growth is called

Select one:

a. Psychology

b. Demography

c. Biography

d. Paleography

Question 7

Who can be appointed as the chairman of the National Human Rights Commission?

Select one:

a. Retired Chief Justice of the Supreme Court

b. Retired Chief Justice of any High Court

c. Judge of the Supreme Court

d. Person appointed by the President

Question 8

Which is the first country to initiate a Family Planning program in the world?

Select one:

a. China

b. India

c. France

d. US

Question 9

What is the reason for poor standard of living and malnutrition in India?

Select one:

a. Due to over population

b. Due to the poor economy of India

c. Due to absence of natural resources

d. Due to environmental conditions

Question 10

The protection of Human Rights Act in India was enacted in the year

Select one:

a. 1990

b. 1991

c. 1992

d. 1993

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Assignment 2

Case study

Major Ecosystems of the World The structure of the ecosystem is characterized by the organization of both the biotic as well as abiotic animals. The structure of the ecosystem can primarily be divided into the two most important components, biotic and abiotic.

Biotic Components : Biotic components have referred to life in general in any ecosystem. Based on the types of nutrition, biotic components can be divided into the following categories: • Producers • Consumer • Primary consumer • Secondary consumer • Tertiary consumer • Quaternary consumer • Decomposers.

Abiotic Components :  Abiotic components are the non-living components of this ecosystem. This includes air, water, sunlight, nutrients, and turbidity. Abiotic Components Abiotic components are the non-living components of this ecosystem. This includes air, water, sunlight, nutrients, and turbidity.

Desert Ecosystems : The most common feature of the desert ecosystem is low precipitation that ranges from zero to 10 inches. Plants comprised of desert flora, sagebrush, and mesquite, quickly developing annuals that can rapidly begin from seed after an uncommon downpour in the sand dunes. Desert ecosystems will, in general, be those that can tunnel to get away from the desert warmth, and they frequently look for food after the dry condition. Desert is found throughout the world. These are areas with next to no precipitation. The days are hot and the evenings are cold.

The Taiga Ecosystem : The Taiga land zone bolsters a huge populace of conifers, especially tidy and fir. Lakes, swamps, and bogs accentuate the scene. There are fewer kinds of plants and creatures than in the woodland. Long winters set up for sleeping vertebrates and moving fowls.

The Tundra Ecosystem: The Tundra lies at extraordinary scopes where trees develop nearly nothing or not in the least. Cold winter makes a layer of permafrost under the dirt. The developing season is short, delivering little aside from greenery, lichens, and a few kinds of grass and annuals which uphold Caribou and bugs. Winged creatures raise their young in the late spring before relocating. Tundra environments are without trees and are found in chilly atmospheres or where precipitation is scant. These are secured with snow for the majority of the year. The environment in the Arctic or peaks is tundra type.The Chaparral Ecosystem: The Chaparral may get up to 30 centimetres of precipitation every year, generally throughout the winter. Plants lie lethargic during its dry summers. The Chaparral is found in California. Trees are generally oaks. Grapes, olives, and figs do well in the Chaparral, as do eucalyptus.

Question 1:  Where life exists is known as-

Select one:

a. Biosphere

b. Atmosphere

c. Lithosphere

d. Hydrosphere

Question 2

Ecosystem is smallest unit of

Select one:

a.  Ionosphere

b. Lithosphere

c. Biosphere

d. Mesosphere

Question 3

____________is an example of lotic biome.

Select one:

a. Oceans

b. Rivers

c. Lakes

d. All of the above

Question 4

In an ecosystem, ___________  is/are the type of entities occupies more than one trophic level?

Select one:

a. Fish

b. Lion

c. Snake

d. Lizard

Question 5

______________ecosystem has the maximum biomass.

Select one:

a. Forest

b. Mountain

c. Lake

d. Grassland

Question 6

Energy _____ in an Ecosystem.

Select one:

a. Released

b. Flows

c. Moved

d. Travel

Question 7

The set of ecosystems is ______.

Select one:

a. Abiome

b. Biome

c. Structure

d. System

Question 8

Every Ecosystem has ___ major component(s).

Select one:

a. 2

b. 3

c. 4

d. 5

Question 9

Herbivores are ________.

Select one:

a. Primary Consumers

b. Secondary

c. Tertiary

d. None of the above

Question 10

Carnivores are _______________.

Select one:

a. Primary Consumers

b. Secondary

c. Tertiary

d. None of the above

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Computer and Information Technology

Computer and Information Technology

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

1st Module Assessment

The basic architecture of computer was developed by

John Von Neumann

Auxillary memory access time is _____than main memory

Select one:

a. more

b. None of the above

c. less

d. same

Question 2

Which of the following memory is non-volatile?

Select one:

a. SRAM

b. All of the mentioned

c. ROM

d. DRAM

Question 3

A half byte is known as_____.

Select one:

a. nibble

b. Bit

c. Data

d. Word

Question 4

A light sensitive device that converts drawing, printed text or other images into digital form is

Select one:

a. Keyboard

b. Scanner

c. OMR

d. Plotter

Question 5

Which of the following memories must be refreshed many times per second?

Select one:

a. RAM

b. SRAM

c. DRAM

d. PROM

Question 6

Which protocol provides e-mail facility among different hosts?

Select one:

a. FTP

b. TELNET

c. SMTP

d. SNMP

Question 7

Images included in many software titles are called _________.

Select one:

a. clipart

b. popups

c. .jpg files

d. .tiff files

Question 8

A ____ is the name of a special program that makes your computer carry out a task.

Select one:

a. Software

b. Data

c. Firmware

d. Hardware

Question 9

In how many generations a computer can be classified?

Select one:

a. 5th

b. 3rd

c. 4th

d. 6th

Question 10

Which of the following is the branch of computer engineering that deals with methods of representing integers and real values?

Select one:

a. Artficial Intelligence

b. Machine Learning

c. Data Science

d. Computer Arithmetic

Which of the following is the earliest known calculating device?

abacus

Question 11

Microprocessor was introduced in which generation of computer?

Select one:

a. 5th

b. 4th

c. 3rd

d. 6th

Question 12

Second generation computers are made up of

Select one:

a. VLSI

b. Transistors

c. Vaccum Tubes

d. LSI

Question 13

First generation of computer was based on which technology?

Select one:

a. LSI

b. Transistor

c. VLSI

d. Vaccum Tube

Question 14

Fifth generation computers are based on

Select one:

a. Artificial Intelligence

b. Programming Intelligence

c. System Knowledge

d. Vacuum Tube

Question 15

Remote control uses _____operate or control other device remotely

Select one:

a. Infrared signals

b. Gamma Rays

c. bluetooth

d. UV rays

Question 16

Which among the following is the most common device that accepts letters, numbers and command from a user?

Select one:

a. Mouse

b. Keyboard

c. touch screen

d. USB

Question 17

Which is an example of pointing device?

Select one:

a. cursor

b. Pointer

c. HDMI port

d. Mouse

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

2nd Module Assessment

Convert 111111 from base 2 to base 10

63

Question 1

Convert 95 from Base 10 to Base 2

Select one:

a. 1011111

b. 1011011

c. 1000111

d. 1111111

Question  2

Convert 140 from Base 10 to Base 2.

Select one:

a. 10111100

b. 10001111

c. 11101100

d. 10001100

Question 3

__ is the processed and organized data presented in a meaningful form.

Select one:

a. INFORMATION

b. DATA

c. Process

d. Output

Question 4

Convert 11101 from Base 2 to Base 10.

Select one:

a. 24

b. 22

c. 29

d. 26

Question 5

Convert 0.46 from Base 10 to Base 2.

Select one:

a. 0.1011

b. 0.011101

c. 101111

d. 0.101101

Question 6

 ______is the branch of algebra in which the values of the variables are the truth values true and false

Select one:

a. Data science

b. Boolean Algebra

c. Human computer Interface

d. Operating system

Question 7

Convert 0.1001 from Base 2 to Base 10.

Select one:

a. 0.7625

b. 0.8564

c. 0.5625

d. 0.1325

Question 8

Convert 34 from Base 10 to Base 2

Select one:

a. 100110

b. 100010

c. 101000

d. 110010

Question 9

Convert 14 from Base 10 to Base 2

Select one:

a. 1001

b. 1000

c. 1110

d. 1111

Question 10

Convert 10001011 from base 2 to base 10

Select one:

a. 132

b. 139

c. 136

d. 133

Convert 3A from base 16 to base 2

Select one:

a. 111010

Question 11

Convert 10011 from base 2 to base 16

Select one:

a. 11

b. 20

c. 18

d. 13

Question 12

Convert 6B from base 16 to base 2

Select one:

a. 1101011

b. 1001011

c. 1101000

d. 1111011

Question 13

Convert 10001 from base 2 to base 16

Select one:

a. 41

b. 31

c. 21

d. 11

Question 14

Convert 4FE from base 16 to base 2

Select one:

a. 11011111110

b. 10010011110

c. 11111111110

d. 10011111110

Question 15

Convert 45 from base 10 to base 8

Select one:

a. 55

b. 75

c. 35

d. 45

Question 16

Which of the following is the identity law?

Select one:

a. A + 0 = A

b. A + A = A

c. A.B = B.A

d. NOT A = A

Question 17

Which of the following is the idempotent law?

Select one:

a. A + A = A

b. A + 0 = A

c. NOT A = A

d. A.B = B.A

29/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

3rd Module Assessment

Which of the following is the operating system

All of the mentioned

Question 1

_____is a vast network that connects computers all over the world.

Select one:

a. Intranet

b. Internet

c. Extranet

d. None of the Mentioned

Question 2

Information is defined as

Select one:

a. None of the Mentioned

b. value

c. discussion

d. processed data

Question 3

Which of the following is the Application software?

Select one:

a. Windows 10

b. Linux

c. MS-word

d. Andriod

Question  4

_____is an information system where documents and other web resources are identified by Uniform Resource Locators.

Select one:

a. TCP

b. FTP

c. WWW

d. HTTPS

Question 5

Word Information is derived from

Select one:

a. German

b. Sanskrit

c. French

d. Latin

Question 6

WWW was invented in

Select one:

a. 1990

b. 1989

c. 1988

d. 1987

Question 7

What is the use of Firewall?

Select one:

a. Modulation

b. Data Transmission

c. Monitoring

d. Security

Question 8

Raw Data is defined as

Select one:

a. unprocessed data

b. All of the mentioned

c. Primary data

d. Unstructured data

Question 9

Which of the following language is used for DBMS?

Select one:

a. C++

b. C#

c. MySQL

d. Javascript

Question 10

Who invented WWW?

Select one:

a. Charles Babbage

b. Isaac Newton

c. None of the Mentioned

d. Sir Tim Berners-Lee

Which of the following is the example of ROM?

Select one:

a. Windows 8

b. Unix

c. Linux

d. BIOS

Question 11

_____act as a system of engagement for your business’s prospective clients

Select one:

a. Internet

b. Intranet

c. Extranet

d. None of mentioned

Question 12

Which of the following software support the computer infrastructure ?

Select one:

a. Operating system

b. Utility software

c. Application Software

d. Device Driver

Question 13

Which of the following is the function of operating system?

Select one:

a. All of the mentioned

b. memory management

c. Scheduling

d. dispatching

Question 14

 _______is defined as private network of computers within an organization with its own server and firewall.

Select one:

a. Intranet

b. Internet

c. None of mentioned

d. Extranet

Question 15

_____ is a popular format for data representation in databases

Select one:

a. XML

b. HTML

c. PHP

d. Dot net

Question 16

Which of the following protocols is used in the internet?

Select one:

a. IEEE

b. CRM

c. ERP

d. DHCP

Question 17

Which of the following language is used for Data retrieval?

Select one:

a. SQL

b. Python

c. C#

d. Javascript

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

4th Module Assessment

Question 1

Word “Information” is derived from

Select one:

a. Latin

b. Sanskrit

c. French

d. German

Question 2

Information is defined as

Select one:

a. None of the Mentioned

b. value

c. processed data

d. discussion

Question 3

WWW was invented in

Select one:

a. 1989

b. 1987

c. 1990

d. 1988

Question 4

Which of the following language is used for DBMS?

Select one:

a. MySQL

b. C++

c. Javascript

d. C#

Question 5

Raw Data is defined as

Select one:

a. Primary data

b. Unstructured data

c. All of the mentioned

d. unprocessed data

Question 6

What is the use of Firewall?

Select one:

a. Data Transmission

b. Network Security

c. Authentication

d. Streaming

Question 7

Who invented WWW?

Select one:

a. Isaac Newton

b. Sir Tim Berners-Lee

c. Charles Babbage

d. None of the Mentioned

Question 8

_____is an information system where documents and other web resources are identified by Uniform Resource Locators.

Select one:

a. TCP

b. FTP

c. HTTPS

d. WWW

Question 9

Which of the following is the Application software?

Select one:

a. MS-word

b. Linux

c. Windows 10

d. Andriod

Question 10

Which of the following is the operating system?

Select one:

a. Windows 10

b. Linux

c. All of the mentioned

d. Unix

Which of the following operating system allows computers running in different operating system can participate in common network?

Network operating system

Question 11

Which of the following operating system meant applications to fix the deadlines?

Select one:

a. Real time operating system

b. Distributed operating System

c. Time sharing operating System

d. Batch Operating System

Question 12

Which of the following operating system allows many users to share the computer resources?

Select one:

a. Distributed operating System

b. Network operating system

c. Batch Operating System

d. Time sharing operating System

Question 13

Which of the following operating system performs Sequence of jobs in a program on a computer without manual interventions.?

Select one:

a. Batch Operating System

b. Time sharing operating System

c. Network operating system

d. Distributed operating System

Question 14

Which of the following operating system Manages a group of different computers and make appear to be a single computer?

Select one:

a. Batch Operating System

b. Distributed operating System

c. Time sharing operating System

d. Network operating system

Question 15

Which of the following is the example of data communication?

Select one:

a. Video streaming

b. E-Mail

c. All of the mentioned

d. Audio streaming

Question 16

 Air Traffic Control Systems is example of

Select one:

a. Multiprogramming OS

b. Real time operating system

c. Batch processing OS

d. Multi tasking OS

Question 17

Which of the following transimmision medium uses light signal for data transmission?

Select one:

a. Optical fibre cable

b. Coaxial cable

c. Wi-Fi

d. Twisted pair

30/30

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

5th Module Assessment

Question 1

An ________ is a low-level programming language designed for a specific type of processor.

Select one:

a. High level language

b. C++ programming language

c. Assembly Language

d. C programming language

Question 2

______Connects two parts of a flowchart which are spread over different pages.

Select one:

a. Process

b. Off page connector

c. Start/Stop

d. Decision

Question 3

A particular machine language of a specific computer can be used on

Select one:

a. that computer only

b. ALU

c. various computers

d. memory

Question 4

Program which translates high level program into machine code is classified as

Select one:

a. debugger

b. translating analyst

c. instruction analyst

d. Compiler

Question 5

_______ is used at the beginning and end of the algorithm to show start and end of the program.

Select one:

a. Start/Stop

b. Decision

c. Process

d. Input/ Output

Question 6

A _____is a collection of instructions that can be executed by a computer to perform a specific task

Select one:

a. Paragraph

b. Program

c. Tags

d. Headline

Question 7

Computer as by its hardware design, can only understand its own

Select one:

a. assembly language

b. high level language

c. machine language

d. medium language

Question 8

The utility program used to bring the object code into memory for execution is ______.

Select one:

a. Linker

b. Extractor

c. Fetcher

d. Loader

Question 9

______Connects two or more parts of a flowchart, which are on the same page.

Select one:

a. Input/ Output

b. On page connector

c. Decision

d. Start/Stop

Question 10

Language in which single statements can be written to accomplish substantial tasks is termed as

Select one:

a. high level language

b. medium language

c. assembly language

d. machine language

Question 11

 Writing down the logic of your solution to a specific coding challenge using plain English is known as

Select one:

a. Pseudo code

b. Information

c. Dialogue

d. Script

Question 12

Programming paradigm that uses statements that change a program’s state is known as

Select one:

a. imperative programming

b. Declarative Programming

c. OOPS

d. Modular

Question 13

A process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer is known as

Select one:

a. Flowchart

b. Diagram

c. Algorithm

d. Design

Question 14

Pseudo code is also known as

Select one:

a. script

b. false code

c. Program

d. True code

Question 15

the repetition of a process in order to generate a (possibly unbounded) sequence of outcomes is known as

Select one:

a. Selection

b. None of the mentioned

c. Iteration

d. Sequence

Question 16

Which logic is used in ” If condition A is true then perform action X else perform Y”

Select one:

a. Sequence

b. Iteration

c. Selection

d. Loop

Question 17

In which logic structure, an action, or event, leads to the next ordered action in a predetermined order ?

Select one:

a. Iteration

b. Sequence

c. Selection

d. Loop

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

 

Assignment 2

Case Study

The Internet of Things, or IoT, refers to the billions of physical devices around the world that are now connected to the internet, all collecting and sharing data. Thanks to the arrival of super-cheap computer chips and the ubiquity of wireless networks, it’s possible to turn anything, from something as small as a pill to something as big as an aeroplane, into a part of the IoT. Connecting up all these different objects and adding sensors to them adds a level of digital intelligence to devices that would be otherwise dumb, enabling them to communicate real-time data without involving a human being. The Internet of Things is making the fabric of the world around us more smarter and more responsive, merging the digital and physical universes. A lightbulb that can be switched on using a smartphone app is an IoT device, as is a motion sensor or a smart thermostat in your office or a connected streetlight. An IoT device could be as fluffy as a child’s toy or as serious as a driverless truck. Some larger objects may themselves be filled with many smaller IoT components, such as a jet engine that’s now filled with thousands of sensors collecting and transmitting data back to make sure it is operating efficiently. At an even bigger scale, smart cities projects are filling entire regions with sensors to help us understand and control the environment.

Question 1 :

 Which of the following refers to the billions of physical devices around the world that are connected to the internet, all collecting and sharing data?

Select one:

a. Augmented reality

b. Virtual Reality

c. Cloud computing

d. Internet of things

Question 2

What is main reason behind the evolution of IOT?

Select one:

a. Increasing Population

b. Super cheap computer chips

c. Gaming purpose

d. None of the mentioned

Question 3

Which of the following component is necessary for IOT devices?

Select one:

a. Lightpen

b. Plotter

c. Sensor

d. Joystick

Question 4

What is the logic behind IOT device?

Select one:

a. Database management system

b. Machine learning

c. Digital Intelligence

d. Pattern recognition

Question 5

What kind of data is communicated in IOT devices?

Select one:

a. Multimedia data

b. Spatial data

c. Past data

d. Real Time data

15/15

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Computers In Management (OOBB 202)-Semester II

Computers In Management (OOBB 202)-Semester II

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 1

Case Study

A computer is a device that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers have the ability to follow generalized sets of operations, called programs. These programs enable computers to perform an extremely wide range of tasks.

Computers are used as control systems for a wide variety of industrial and consumer devices. This includes simple special purpose devices like microwave ovens and remote controls, factory devices such as industrial robots and computer-aided design, and also general purpose devices like personal computers and mobile devices such as smartphones.

Question 1: Convert 34 from Base 10 to Base 2

Select one:

a. 100010

b. 110010

c. 101000

d. 100110

Question 2

Convert 95 from Base 10 to Base 2

Select one:

a. 1011011

b. 1011111

c. 1000111

d. 1111111

Question 3

Convert 0.1001 from Base 2 to Base 10.

Select one:

a. 0.1325

b. 0.5625

c. 0.7625

d. 1

Question 4

Convert 0.46 from Base 10 to Base 2.

Select one:

a. 101100

b. 101110

c. 101101

d. 101111

Question 5

Convert 11101 from Base 2 to Base 10.

Select one:

a. 42

b. 44

c. 46

d. 47

Question 6

Which of the following is Brain of the computer?

Select one:

a. CPU

b. Mouse

c. Keyboard

d. Screen

Question 7

__ is the processed and organized data presented in a meaningful form.

Select one:

a. DATA

b. Process

c. INFORMATION

d. Output

Question 8

__enables the application software to interact with the computer hardware.

Select one:

a. Operating Software

b. Utility Software

c. System Software

d. Device software

Question 9

__is the non-tangible part that tells the computer how to do its job.

Select one:

a. PEOPLEWARE

b. Firmware

c. SOFTWARE

d. HARDWARE

Question 10

____ is a sequence of 8 bits

Select one:

a. BIT

b. BYTE

c. WORD

d. None of the above

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 2

Case Study

An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve related information. A database server is the key to solving the problems of information management. In general, a server reliably manages a large amount of data in a multiuser environment so that many users can concurrently access the same data. All this is accomplished while delivering high performance. A database server also prevents unauthorized access and provides efficient solutions for failure recovery.

Oracle Database is the first database designed for enterprise grid computing, the most flexible and cost effective way to manage information and applications. Enterprise grid computing creates large pools of industry-standard, modular storage and servers. With this architecture, each new system can be rapidly provisioned from the pool of components. There is no need for peak workloads, because capacity can be easily added or reallocated from the resource pools as needed.

The database has logical structures and physical structures. Because the physical and logical structures are separate, the physical storage of data can be managed without affecting the access to logical storage structures.

Question 1: A ___ is a syntax similar to a computer programming language for defining data structures, especially database schemas.

Select one:

a. DML

b. Query language

c. DDL

d. Report Generator

Question 2

A ____ is a set of formally described tables from which data can be accessed or reassembled in many different ways without having to reorganize the database tables.

Select one:

a. Network Database

b. relational database

c. Hierarchical database

d. None of the above

Question 3

A ____ model is a data model in which the data is organized into a tree-like structure.

Select one:

a. Network Database

b. relational database

c. Hierarchical database

d. None of the above

Question 4

A ____ model is a database model that allows multiple records to be linked to the same owner file.

Select one:

a. Network Database

b. relational database

c. Hierarchical database

d. None of the above

Question 5

A___is a major software system consisting of a number of elements.

Select one:

a. Linux

b. DBMS

c. Unix

d. MS-DOS

Question 6

DML is a language that enables users to access or manipulate the appropriate data model.

Select one:

a. DML

b. Query language

c. DDL

d. Report Generator

Question 7

___enables users to ask specific questions of the database

Select one:

a. DML

b. Query language

c. DDL

d. Report Generator

Question 8

____ is a collection of similar groups of data which fit under one heading.

Select one:

a. File

b. Database

c. Structure

d. None of the above

Question 9

____- helps the user to design and generate reports and graphs in

printed form.

Select one:

a. DDL

b. DML

c. Query Language

d. Report Generator

Question 10

________is a collection of related files

stored together in a logical manner.

Select one:

a. Organization

b. Database

c. Structure

d. None of the above

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Module 3

Case Study

In general multimedia is the combination of visual and audio representations. These representations could include elements of texts, graphic arts, sound, animation, and video. However, multimedia is restricted in such systems where information is digitalized and is processed by a computer. Interactive multimedia and hypermedia consist of multimedia applications that the user has more active role. Education is perhaps the most useful destination for multimedia and the place where multimedia has the most effective applications, as it enriches the learning process. Multimedia both in nursing education and in medical informatics education has several applications as well. A multimedia project can be developed even as a “stand alone” application (on CD-ROM), or on World Wide Web pages on Internet. However several technical constraints exist for developing multimedia applications on Internet. For developing multimedia projects we need hardware and software, talent and skill. The software requirements for multimedia development consist of one or more authoring systems and various editing applications for text, images, sounds and video.

Question 1: A smaller version of an image is called a:

Select one:

a. clipart

b. thumbnail

c. portable network graphic

d. bitmap

Question 2

A standalone multimedia system includes computer, CD drive and

Select one:

a. Floppy disk

b. Display Unit

c. Internet

d. ERP

Question 3

Images included in many software titles are called _________.

Select one:

a. .tiff files

b. .jpg files

c. clipart

d. popups

Question 4

One of the disadvantages of multimedia is:

Select one:

a. cost

b. adaptability

c. usability

d. relativity

Question 5

The convergence of technology and creative invention in multimedia is ____

Select one:

a. Planning

b. Designing

c. CAD tool

d. virtual reality

Question 6

The process of planning your multimedia presentation is known as a:

Select one:

a. development

b. layout

c. design

d. storyboard

Question 7

The text color in a presentation should contrast with the ________ color.

Select one:

a. CPU

b. frame

c. stack

d. background

Question 8

Virtual reality is the presentation of anything in a

Select one:

a. 2-dimensional world

b. Designing

c. 3-dimensional world

d. None of the above

Question 9

_____ is content that uses a combination of different content forms such as text, audio, images, animations, video and interactive content.

Select one:

a. Multimedia

b. Program

c. Files

d. ERP

Question 10

____________ refers to any type of application or presentation that involves more than one type of media, such as text, graphics, video, animation, and sound.

Select one:

a. An executable file

b. Multimedia

c. Desktop publishing

d. Hypertext

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

 Module 4                                                                 

Case Study

Electronic commerce is a way of doing business over large electronic networks such as the Internet. Also called e-commerce, electronic commerce greatly facilitates transactions between companies and consumers (B2C), between one company and another (B2B), and between individual consumers (C2C).In e-commerce, exchanges occur between two parties over some electronic medium, typically the Internet. These exchanges are most commonly transactions between companies and consumers, wherein consumers purchase products and services by credit card payment over a secured website. These exchanges, however, can also include transactions between companies as well as between individuals.

An example of business-to-consumer e-commerce would be an online store such as Amazon.com. Anyone with Internet access and a credit card can access the website, browse products and services, make a selection, and purchase a product by credit card payment with the assurance of delivery in the mail.

An example of e-commerce between individuals, or between two consumers, would be an online marketplace such as eBay.com. Similar to the example above, anyone with Internet access and a credit or debit card can browse and purchase available products. The difference here is that products are being sold by individual sellers (other consumers) rather than one large online store.

Question 1: B2C stands for

Select one:

a. Business to consumer

b. Business to call

c. Books to consumer

d. None of the above

Question 2

e-Commerce stands for

Select one:

a. Elected Commerce

b. Electronic commerce

c. Envision commerce

d. None of the above

Question 3

The dimension of e-commerce that enables commerce across national boundaries is called _______.

Select one:

a. interactivity

b. global reach

c. richness

d. ubiquity

Question 4

The primary source of financing during the early years of e-commerce was _______.

Select one:

a. bank loans

b. large retail firms

c. venture capital funds

d. initial public offerings

Question 5

Which of the following describes e?commerce?

Select one:

a. Buying Goods

b. Sale of goods

c. Doing business

d. Doing business electronically

Question 6

Which of the following is not considered to be one of the three phases of e-commerce?

Select one:

a. Preservation

b. Innovation

c. Consolidation

d. Reinvention

Question 7

Which of the following is part of the four main types for e?commerce?

Select one:

a. B2B

b. B2C

c. C2B

d. All of the above

Question 8

Which one of the following is not one of the major types of e-commerce?

Select one:

a. B2C

b. C2C

c. C2B

d. B2B

Question 9

Which segment do eBay, Amazon.com belong?

Select one:

a. B2Bs

b. B2Cs

c. C2Bs

d. C2Cs

Question 10

Which type of e?commerce focuses on consumers dealing with each other?

Select one:

a. B2B

b. B2C

c. C2B

d. C2C

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

5 Module

Case Study

Electronic Data Interchange (EDI) enables fast, accurate and reliable exchange of data between the computer systems of organizations that do business together.

The Need for EDI

For companies of any size, implementing EDI is necessary for maximum competitiveness and growth. It reduces costs and improves operational performance across your organization. From the start, EDI accelerates data exchange and sharpens accuracy. Your company and your customers benefit from streamlined administration, improved information flow, more accurate accounting, better inventory management, and lower costs. Because electronic transactions are so efficient, customers that use EDI prefer to work with vendors that have EDI systems in place.

From financial, operational, and technical perspectives, the right EDI solution makes irrefutable business sense.

Question 1:All of the following are metrics for e-mail campaigns except…..

Select one:

a. open rate

b. delivery rate

c. bounce-back rate

d. cart conversion rate

Question 2

All of the following are techniques B2C e-commerce companies use to attract customers, except

Select one:

a. Registering with search engines

b. Viral marketing

c. Online Ads

d. Virtual marketing

Question 3

Compared to B2C e-commerce, B2B e-commerce is …….

Select one:

a. of equal size

b. slightly smaller

c. slightly larger

d. much larger

Question 4

EDI standard

Select one:

a. is not easily available

b. defines several hundred transaction sets for various business forms

c. is not popular

d. defines only a transmission protocol

Question 5

EDI stands for

Select one:

a. Electronic Data Interchange

b. Electronic digital interchange

c. Electrical diagram interchange

d. None of the above

Question 6

In Electronic cash payment

Select one:

a. a debit card payment system is used

b. a customer buys several electronic coins which are digitally signed by coin issuing bank

c. a credit card payment system is used

d. RSA cryptography is used in the transactions

Question 7

In the e-commerce security environment, which of the following constitutes the inner-most layer?

Select one:

a. people

b. data

c. technology solutions

d. organizational policies and procedures

Question 8

What encourages users of a product or service supplied by a B2C company to ask friends to join in as well?

Select one:

a. Spam

b. Viral marketing

c. Affiliate programs

d. None of the above

Question 9

Which products are people most likely to be more uncomfortable buying on the Internet?

Select one:

a. Books

b. Furniture

c. Movies

d. All of the above

Question 10

Which term represents a count of the number of people who visit one site, click on the ad, and are taken to the site of the advertiser?

Select one:

a. Affiliate programs

b. Click-through

c. Spam

d. All of the above

10/10

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Assignment 2

Case Study

What is Computer : Computer is an electronic device that is designed to work with Information. The term computer is derived from the Latin term ‘computare’, this means to calculate or programmable machine. Computer can not do anything without a Program. It represents the decimal numbers through a string of binary digits. The Word ‘Computer’ usually refers to the Center Processor Unit plus Internal memory.

Charles Babbage is called the “Grand Father” of the computer. The First mechanical computer designed by Charles Babbage was called Analytical Engine. It uses read-only memory in the form of punch cards.

Computer is an advanced electronic device that takes raw data as input from the user and processes these data under the control of set of instructions (called program) and gives the result (output) and saves output for the future use. It can process both numerical and non-numerical (arithmetic and logical) calculations.

Question 1: A light sensitive device that converts drawing, printed text or other images into digital form is

Select one:

a. Keyboard

b. Plotter

c. Scanner

d. OMR

Question 2

Fifth generation computers are based on

Select one:

a. Artificial Intelligence

b. Programming Intelligence

c. System Knowledge

d. VVLSI

Question 3

First generation of computer was based on which technology?

Select one:

a. Transistor

b. LSI

c. VLSI

d. Vaccum Tube

Question 4

In how many generations a computer can be classified?

Select one:

a. 3rd

b. 4th

c. 6th

d. 5th

Question 5

In order to tell Excel that we are entering a formula in cell, we must begin with an operator such as

Select one:

a. $

b. @

c. equal to(=)

d. #

Question 6

Microprocessor was introduced in which generation of computer?

Select one:

a. 3rd

b. 5th

c. 4th

d. 6th

Question 7

Second generation computers are made of

Select one:

a. Vaccum Tubes

b. Transistors

c. LSI

d. VLSI

Question 8

The basic architecture of computer was developed by

Select one:

a. John Von Neumann

b. Charles Babbage

c. Blaise Pascal

d. Garden Moore

Question 9

Which of the following memory is non-volatile?

Select one:

a. SRAM

b. DRAM

c. ROM

d. All of the above

Question 10

Which protocol provides e-mail facility among different hosts?

Select one:

a. FTP

b. SMTP

c. TELNET

d. SNMP

10/10*

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

Software Engineering and Modeling (CSIT142)-Semester II

Software Engineering and Modeling (CSIT142)-Semester II

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

MODULE 1 INTRODUCTION TO SOFTWARE ENGINEERING.

Question 1

Software consists of ______ .

Select one:

a. Set of instructions + operating procedures

b. Programs + documentation + operating procedures

c. Programs + hardware manuals<

d. Set of programs

Question 2

Which of these software engineering activities are not a part of software processes ?

Select one:

a. Software development

b. Software dependence

c. Software validation

d. Software specification

Question 3

Infrastructure software are covered under ?

Select one:

a. Customised Products

b. Generic and Customised Products

c. Generic Products

d. None of the above

Question 4

What are attributes of good software?

Select one:

a. Software functionality

b. Software maintainability

c. Software development

d. Both Software functionality & maintainability

Question 5

Compilers, Editors software come under which type of software?

Select one:

a. System software

b. Application software

c. Scientific software

d. None of the above.

Question 6

Software Engineering is defined as systematic, disciplined and quantifiable approach for the development, operation and maintenance of software.

Select one:

a. TRUE

b. FALSE

Question 7

What is the simplest model of software development paradigm?

Select one:

a. Spiral model

b. Big Bang model

c. V-model

d. Waterfall model

Question 8

SDLC stands for

Select one:

a. System Development Life cycle

b. Software Design Life Cycle

c. Software Development Life Cycle

d. System Design Life Cycle

Question 9

What are the characteristics of software?

Select one:

a. Software is developed or engineered; it is not manufactured in the classical sense.

b. Software doesn’t “ wear out ”

c. Software can be custom built or custom build

d. All mentioned above.

Question 10

“Software engineers shall –

Select one:

a. act consistently with the public interest.”

b. act in a manner that is in the best interests of his expertise and favour.”

c. ensure that their products only meet the SRS.”

d. all of the mentioned

Question 11

The level at which the software uses scarce resources is ______ .

Select one:

a. Reliability

b. Efficiency

c. Portability

d. All of the above

Question 12

The spiral model was originally proposed by –

Select one:

a. Barry Boehm

b. Pressman

c. Royce

d. Pressman

Question 13

If you were to create client/server applications, which model would you go for?

Select one:

a. Concurrent Model

b. Spiral Model

c. WINWIN Spiral Model

d. Incremental Model

Question 14

Which phase is not available in software life cycle?

Select one:

a. Coding

b. Testing

c. Maintenance

d. Abstraction

Question 15

The spiral model of software development

Select one:

a. Ends with the delivery of the software product

b. Is more chaotic than the incremental model

c. Includes project risks evaluation during each iteration

d. All of the above

Question 16

As the reliability increases, failure intensity

Select one:

a. decreases

b. increases

c. no effect

d.  none of the above

Question 17

Which one of the following models is not suitable for accommodating any change?

Select one:

a. Prototyping Model

b. RAD Model

c. Build & Fix Model

d. Waterfall Model

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

MODULE II : SOFTWARE REQUIREMENT ENGINEERING AND CODING

Question 1

Coding is undertaken:

Select one:

a. After the design phase is complete

b. deign document is reviewed

c. while design document is in review

d. A & B only

Question 2

The fundamnetal notions of software engineering does not account for?

Select one:

a. Software Security

b. Software reuse

c. Software processes

d. Software validation

Question 3

The main advantage of adhering to coding standard is

Select one:

a. uniform appearance to code

b. Code understandibility

c. good programming practice

d. all of the above

Question 4

Software Requirement Engineering and Coding

Select one:

a. Portability

b. Maintainability

c. Availability

d. Both Portability and Maintainability

Question 5

When comparing questionnaires to interviews, questionnaires:

Select one:

a. Are rated high in terms of information richness

b. Are rated high in terms of expense

c. Are limited in terms of chances for follow up

d. Have an active and involved subject

Question 6

Which of the following are type of code review?

Select one:

a. code inspection

b. code walkthrough

c. both

d. none

Question 7

Which is one of the most important stakeholder from the following ?

Select one:

a. Entry level personnel

b. Middle level stakeholder

c. Managers

d. Users of the software

Question 8

Which of the following is not a traditional method of collecting system requirements?

Select one:

a. Interviewing

b. RAD

c. Observations

d. Document analysis

Question 9

The best way to conduct a requirements validation review is:

Select one:

a. examine the system model for errors

b. have the customer over the requiremnets

c. send them to the design team and see if they have any concerns

d. use a checklist of questions to examine each requirement

Question 10

The user system requirements are the parts of which document ?

Select one:

a. SDD

b. SRS

c. DDD

d. SRD

Question 11

What are the most common scenarios for resolutions?

Select one:

a.  Designers frequently work bottom up or skip levels of abstraction

b.  To specify some part of product design to its physical level details before others are specified

c. All of the mentioned

d. None of the mentioned

Question 12

Stakeholder role for Generate/Improve alternatives?

Select one:

a. Participate in generation and improvement

b. Answer the question

c. None of the mentioned

d. All of the above

Question 13

Confirming with stakeholder that a product design satisfies their needs and desires are called?

Select one:

a. None of the mentioned

b.  Requirements validation

c. Requirements elicitation

d. Requirements analysis

Question 14

 What is the correct syntax of for statement?

Select one:

a. for(initialization;condition;update)

b. for(initialization,condition,update)

c. for(condition;initialization;update)

d. for(initialization;condition;)

Question 15

……………… is actually a multi-step process that focuses on four distinct attributes of a program, data structure, software architecture, interface representations and procedural detail.

Select one:

a. Software analysis

b. Software design

c. Coding

d. Testing

Question 16

Reliability in software system can be achieved using which of the following strategies.

 i) Fault Avoidance                      ii) Fault Tolerance

iii) Fault Detection                      iv) Fault Deletion

Select one:

a. A) i, ii and iii only

b. B) ii, iii and iv only

c. C) i, iii and iv only

d. D) All i, ii, iii and iv

Question 17

The cost of software engineering includes approximately …………… of development costs and …………. of testing costs.

Select one:

a. A) 50%, 50%

b. B) 40%, 60%

c. C) 80%, 20%

d. D) 60%, 40%

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

MODULE III : SOFTWARE DESIGN

Question 1

How many type of cohesion are there in software design?

Select one:

a. 5

b. 6

c. 7

d. 8

Question 2

Which of the following is the worst type of module coupling?

Select one:

a. Control Coupling

b. Stamp Coupling

c. External Coupling

d. Content Coupling

Question 3

Which of the following is the best type of module cohesion?

Select one:

a. Functional Cohesion

b. Temporal Cohesion

c. Functional Cohesion

d. Sequential Cohesion

Question 4

Which tool is use for structured designing ?

Select one:

a. Program Chart

b. Structure chart

c. Module Chart

d. All of the above

Question 5

Which of the following is not an Advantage of modularization?

Select one:

a. Smaller components are easier to maintain

b. Concurrent execution can be made possible

c. Program cannot be divided based on functional aspects

d. Desired level of abstraction can be brought in the program

Question 6

Which of the following defines the degree of intra-dependability within elements of a module?

Select one:

a. Cohesion

b. Coupling

c. Design Verification

d. None of the above

Question 7

Which of the following is not a characteristic of a good software design?

Select one:

a. Correctness

b. Understandability

c. Complex Design

d. Efficiency

Question 8

Choose the option that does not define Function Oriented Software Design.

Select one:

a. It consists of module definitions

b. Modules represent data abstraction

c. Modules support functional abstraction

d. None of the above

Question 9

Software design yields ______ levels of results.

Select one:

a. 2

b. 3

c. 4

d. 5

Question 10

When multiple modules share common data structure and work on different part of it, it is called ___________.

Select one:

a. Common coupling

b. Share coupling

c. Data coupling

d. Stamp coupling

Question 11

In which of the following design phases, do the software designers free to make any alterations, corrections and modifications?

Select one:

a. Preliminary design phase

b. Detailed design phase

c. Both a and b

d. None of the above

Question 12

Which is the most desirable form of coupling?

Select one:

a. Control coupling

b. Data coupling

c. Common coupling

d. Stamp coupling

Question 13

________ is an indication of the relative interdependence among modules.

Select one:

a. Cohesion

b. Coupling

c. Modularity

d. Cohesion and coupling.B

Question 14

___________ is an indication of the relative functional strength of a module.

Select one:

a. Cohesion

b. Coupling

c. Modularity

d. Cohesion and coupling

Question 15

Read List-I and List-II and Match the following:   

a. Data coupling ——————— i. Module A and Module B have shared data.

b. Stamp coupling —————— ii. Dependency between modules is based on the fact they communicate by only passing of data.

c. Common coupling ————— iii. When complete data structure is passed from one module to another.

d. Content coupling —————– iv. When the control is passed from one module to the middle of another.

Select one:

a. a – iii, b – ii, c – i, d – iv

b. a – ii, b – iii, c – i, d – iv

c. a – ii, b – iii, c – iv, d – i

d. a – iii, b – ii, c – iv, d – i

Question 16

Which of the following objectives are not the one that the software designing phase claim to offer?

 (i) Identify software design activities

 (ii)Identify important items developed during the software design phase

 (iii)To improve the designing skills of the developers

Select one:

a. All i, ii and iii are correct

b. Only i and ii are correct

c. Only i and iii are correct

d. None of the given options is correct

Question 17

Which of the following statements is true?

 (i)The software design phase comes after the feasibility and resources analysis phase.

 (ii) The quality of the software depends upon the design phase a lot.

Select one:

a. Only i is true

b. Only ii is true

c. Both i and ii are true

d. None of them is true

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

MODULE IV : SOFTWARE TESTING

Question 1

White box testing techniques are?

Select one:

a. Statement coverage testing

b. Decision coverage testing

c. Data flow testing

d. All of the above

Question 2

Software testing is:

Select one:

a. the process of demonstrating that errors are not present

b. the process of establishing confidence that a program does what it is supposed to do

c. the process of executing a program to show it is working as per specifications

d. the process of executing a program with the intent of finding errors

Question 3

Cyclomatic complexity is?

Select one:

a. White-box testing

b. Black box testing

c. Grey box testing

d. All of the above

Question 4

In which environment we can performed the Beta testing?

Select one:

a. User’s and developer’s end

b. Developer’s end

c. User’s end

d. None of the above

Question 5

Which of the following testing is related to the boundary value analysis?

Select one:

a. White box and black box testing

b. White-box testing

c. Black box testing

d. None of the above

Question 6

Which of the following is not another name of white box testing?

Select one:

a. Structural testing

b. Behavioral testing

c. Glass box testing

d. None of the mentioned

Question 7

Which of the following testing is also known as white-box testing?

Select one:

a. Structural testing

b. Error guessing technique

c. Design based testing

d. None of the above

Question 8

Which of the below testing is related to Non-functional testing?

Select one:

a. Unit Testing

b. Black-box Testing

c. Performance Testing

d. None of the above

Question 9

In which environment we can performed the Alpha testing?

Select one:

a. User’s end

b. Developer’s end

c. User’s and developer’s end

d. None of the above

Question 10

Which of the below is not a part of the Test Plan?

Select one:

a. Schedule

b. Risk

c. Incident reports

d. Entry and exit criteria

Question 11

———- are those software mistakes that occurred during the coding phase?

Select one:

a. Defects

b. Failures

c. Errors

d. Bugs

Question 12

Which of the below testing is related to black-box testing?

Select one:

a. Boundary value analysis

b. Code path analysis

c. Basic path testing

d. None of the above

Question 13

The Decision table testing is a ———-?

Select one:

a. White box Test Design Technique

b. Black Box Test Design Technique

c. Experience-based Test Design Technique

d. Grey Box Test Design Technique

Question 14

Which of the below statement is true about the Equivalence Partitioning technique?

Select one:

a. A black box testing technique appropriate to all levels of testing.

b. A white box testing technique appropriate for component testing.

c. The black box testing technique is used only by developers.

d. A black box testing technique that can only be used during system testing

Question 15

For a function of n variables, boundary value analysis yields:

Select one:

a. 4n+3 test cases

b. 4n+1 test cases

c. n+4 test cases

d. None of the above

Question 16

For a function of two variables, how many cases will be generated by robustness testing?

Select one:

a. 9

b. 13

c. 25

d. 42

Question 17

—— are the problems that threaten the success of a project but which has not yet happened.

Select one:

a. Risk

b. Bug

c. Failure

d. Error

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help

MODULE V : SOFTWARE PROJECT PLANNING AND MANAGEMENT

Question 1

Line of code(LOC) of the product comes under which type of measures?

Select one:

a. Indirect measures

b. Direct measures

c. Coding

d. None of the above

Question 2

Which of the following is not a Software Configuration Management Activity?

Select one:

a. Configuration item identification

b. Risk management

c. Release management

d. Branch management

Question 3

 Which of the following is not an option to achieve reliable cost and effort estimate?

Select one:

a.  Base estimates on similar projects that have already been completed

b. Use one or more empirical models for software cost and effort estimation

c.  Use relatively simple decomposition techniques to generate project cost and effort estimates

d.  The ability to translate the size estimate into human effort, calendar time, and dollars

Question 4

The intent of project metrics is:

Select one:

a.  minimization of development schedule

b. for strategic purposes

c. assessing project quality on ongoing basis

d. minimization of development schedule and assessing project quality on ongoing basis

Question 5

Which of the following costs is not part of the total effort cost?

Select one:

a. Costs of networking and communications

b.  Costs of providing heating and lighting office space

c. Costs of lunch time food

d. Costs of support staff

Question 6

Which of the following is an important factor that can affect the accuracy and efficacy of estimates?

Select one:

a. Project Size

b. Project Planning

c. Project Complexity

d. Degree of Structural uncertainity

Question 7

What is related to the overall functionality of the delivered software?

Select one:

a. Function-related metrics

b. Product-related metrics

c. Size-related metrics

d. None of the mentioned

Question 8

What type of software testing is generally used in Software Maintenance?

Select one:

a. Regression Testing

b. System Testing

c. Integration Testing

d. Unit Testing

Question 9

Which is a software configuration management concept that helps us to control change without seriously impeding justifiable change?

Select one:

a. Baselines

b. Source code

c. Data model

d. None of the mentioned

Question 10

In the Empirical Estimation Technique which model is developed by Barry W. Boehm?

Select one:

a. Putnam model

b. COCOMO

c. Both a & b

d. None of the above

Question 11

Which of the following is the task of project indicators:

Select one:

a. help in assessment of status of ongoing project

b.  track potential risk

c. help in assessment of status of ongoing project & track potential risk

d. none of the mentioned

Question 12

Which selective retest technique selects every test case that causes a modified program to produce a different output than its original version?

Select one:

a. Coverage

b. Minimization

c. Safe

d. Maximization

Question 13

The modification of the software to match changes in the ever changing environment, falls under which category of software maintenance?

Select one:

a. Corrective

b. Adaptive

c. Perfective

d. Preventive

Question 14

Which metrics are derived by normalizing quality and/or productivity measures by considering the size of the software that has been produced?

Select one:

a. Size oriented

b. Function-Oriented

c. Object-Oriented

d. Use-case-Oriented

Question 15

Software Configuration Management can be administered in several ways. These include

Select one:

a. A single software configuration management team for the whole organization

b. A separate configuration management team for each project

c.  Software Configuration Management distributed among the project members

d. All of the mentioned

Question 16

Which model is used to compute the effort required to integrate reusable components or program code that is automatically generated by design or program translation tools?

Select one:

a. An application-composition model

b. A post-architecture model

c. A reuse model

d. An early design model

Question 17

Which may be estimated either in terms of KLOC (Kilo Line of Code) or by calculating number of function points in the software?

Select one:

a. Time estimation

b. Effort estimation

c. Cost estimation

d. Software size estimation

We Also Provide SYNOPSIS AND PROJECT.
Contact www.kimsharma.co.in for best and lowest cost solution or
Email: amitymbaassignment@gmail.com
Call/what’s app: +91 8290772200
What’s app: +91 8800352777
Amity assignment solution help, Amity assignment answers help, Assignment Help