Barcodes
- 9 metal texture brush set.
2Bit-Twilight Brushes
A set of 12 abstract pixel brushes for Photoshop. Compatible with Photoshop 8+ / Photoshop Elements 3+.8 fantasy butterfly brushes
8 really beautiful and fantasy butterfly brushes to spice up your painting.A3D Pieces of Tape Brushes
Thirty-seven brushes from various torn, wrinkled, pieces of tape brushes made in Photoshop 7.0Abstract Brushset XIII
13 awesome abstract brushes.Astral Flora
Pack contains 8 brushes, including 2 different sized leaves, 1 astral rose, 1 astral flowerbud, 1 astral butterfly, an assortment of whispy, starspangled curves.Barbed wire brush
Two barbed wire brushes.Brush Stroke Brushes
Made with thick black poster colours. Just great for those pieces needing brush strokes with hard bristles.Butterflies with Flower
Zelink’s Cataclysm Brushset
Can be used for grunge, stars abstract and smoke/forg effects. This set was based upon the stars of the heavens. This set, cataclysm, was designed to bring violent destruction upon the use of other sets. It has many uses and works very well for sigs.Cracks and cuts brushes
This pack includes around 80 brushes, all cracks, chips and cuts.Demolished.Cracks
Demolished.Cracks pack contains 12 brushes compatible with PS 7 and up!Fractal Brushes
There are ten of fractal brushes in total.CS4 Brushes
New style of CS4 brushes.Glow Part I
There are 11 big brushes made with Photoshop 7.0Floral Frame Brushes
Now with these wonderful brushes all you need is Photoshop and the brush tool selected, you’ll create floral frame brushes so awesome that you will love.Drop Brushes
A set of brushes for photoshop (created in CS3) with sizes range from about 700px to 1600px.5 Checkered PS Brushes
Label Brushes
The pack contains the the letters of the alphabet, numbers and some extras. Theres a piece of tape and some marks which could be used in white and added to the labels once they’re done to make them look authentic and cool.TI Graphic Pack 152 Ps Brushes
152 Photoshop brushes made on Ps CS4.Metal Mesh Brush
Metal Mesh Brush by =SocioBunneh.Hyper Brushes – PS7
10 Very Big Brushes No.30
MOON BRUSHES for PS7 v.2
45 moon brushes for ps7, ps8, ps9, ps10.25 Tiny Text Brushes 02
It includes 25 tiny text brushes for icons. The .zip contains an .abr file compatible with Photoshop 7.0 and up.20 high-res-stamp brushes
20 high-resolution stamp brushes.122 Brushes
Camera-Stuff
8 brushes for lens, film and camera.Architectual ornaments
Crack Brushes I
Tuesday, November 10, 2015
Free Photoshop Brush Sets You Should Bookmark
Data Structures Interview Questions-Stacks
Data Structures Interview Questions-Stacks
- The postfix form of the expression (A+ B)*(C*D- E)*F / G is?
a) AB+ CD*E – FG /** b) AB + CD* E – F **G /
c) AB + CD* E – *F *G / d) AB + CDE * – * F *G /
c) AB + CD* E – *F *G / d) AB + CDE * – * F *G /
- The data structure required to check whether an expression contains balanced parenthesis is?
a) Stack b) Queue c) Array d) Tree
- What data structure would you mostly likely see in a non recursive implementation of a recursive algorithm?a) LinkList b) Stack c) Queue d) Tree
- The process of accessing data stored in a serial access memory is similar to manipulating data on a ——?a) Heap b) Binary Tree c) Array d) Stack
- The postfix form of A*B+C/D is?a) *AB/CD+ b) AB*CD/+ c) A*BC+/D d) ABCD+/*
- Which data structure is needed to convert infix notation to postfix notation?
a) Branch b) Tree c) Queue d) Stack
- The prefix form of A-B/ (C * D ⋀ E) is?a) -/*⋀ACBDE b) -ABCD*⋀DE c) -A/B*C⋀DE d) -A/BC*⋀DE
- What is the result of the following operation Top (Push (S, X))
a) X b) Null c) S d) None
- The prefix form of an infix expression p + q – r * t is?
a) + pq – *rt b) – +pqr * t c) – +pq * rt d) – + * pqrt
- Which data structure is used for implementing recursion?a) Queue b) Stack c) Array d) List View Answer / Hide Answer
- The result of evaluating the postfix expression 5, 4, 6, +, *, 4, 9, 3, /, +, * is?a) 600 b) 350 c) 650 d) 588
Data Structures Interview Questions-Stacks
12. Convert the following infix expressions into its equivalent postfix expressions (A + B⋀D)/(E – F)+G
a) (A B D ⋀ + E F – / G +) b) (A B D +⋀ E F – / G +) c) (A B D ⋀ + E F/- G +) d) None
- Convert the following Infix expression to Postfix form using a stackx + y * z + (p * q + r) * s, Follow usual precedence rule and assume that the expression is legal.a) xyz*+pq*r+s*+ b) xyz*+pq*r+s+* c) xyz+*pq*r+s*+ d) none
- Which of the following statement(s) about stack data structure is/are NOT correct?a) Stack data structure can be implemented using linked list
b) New node can only be added at the top of the stack
c) Stack is the FIFO data structure
d) The last node at the bottom of the stack has a NULL link
- Consider the linked list implementation of a stack. Which of the following node is considered as Top of the stack?a) First node b) Last node c) Any node d) Middle node
- Consider the following operation performed on a stack of size 5.
Push(1);
Pop();
Push(2);
Push(3);
Pop();
Push(4);
Pop();
Pop();
Push(5); After the completion of all operation, the no of element present on stack are
Pop();
Push(2);
Push(3);
Pop();
Push(4);
Pop();
Pop();
Push(5); After the completion of all operation, the no of element present on stack are
a) 1 b) 2 c) 3 d) 4
- Which of the following is not an inherent application of stack?a) Reversing a string b) Evaluation of postfix expression
c) Implementation of recursion d) Job scheduling
- Which of the following operation take worst case linear time in the array implementation of stack?a) Push b) Pop c) IsEmpty d) None
- The type of expression in which operator succeeds its operands is?a) Infix Expression b) pre fix Expression c) postfix Expression d) None
- Which of the following application generally use a stack?a) Parenthesis balancing program b) Syntax analyzer in compiler
c) Keeping track of local variables at run time d) All of the above
- Consider the following array implementation of stack:
#define MAX 10
Struct STACK
{
Int arr [MAX];
Int top = -1;
}
Struct STACK
{
Int arr [MAX];
Int top = -1;
}
If the array index starts with 0, the maximum value of top which does not cause stack overflow is?
a) 8 b) 9 c) 10 d) 11
- What is the minimum number of stacks of size n required to implement a queue of size n?a) One b) Two c) Three d) Four
- Assume that the operators +,-, X are left associative and ⋀ is right associative. The order of precedence (from highest to lowest) is ⋀, X, +, -. The postfix expression corresponding to the infix expression a + b X c – d ⋀ e ⋀ f is
a) abc X+ def ⋀ ⋀ – b) abc X+ de⋀f⋀ – c) ab+c Xd – e ⋀f⋀ d) -+aXbc⋀ ⋀def
- If the elements “A”, “B”, “C” and “D” are placed in a stack and are deleted one at a time, in what order will they be removed?a) ABCD b) DCBA c) DCAB d) ABDC
- Consider the usual implementation of parentheses balancing program using stack. What is the maximum number of parentheses that will appear on stack at any instance of time during the analysis of ( ( ) ( ( ) ) ( ( ) ) )?a) 1 b) 2 c) 3 d) 4
Saturday, November 7, 2015
Data Structures Interview Questions-Queue
Data Structures Interview Questions-Queue
1. A linear list of elements in which deletion can be done from one end (front) and insertion can take place only at the other end (rear) is known as a ?
a) Queue b) Stack c) Tree d) Linked list
2. The data structure required for Breadth First Traversal on a graph is?
a) Stack b) Array c) Queue d) Tree
3. Let the following circular queue can accommodate maximum six elements with the following data front = 2 rear = 4 queue = _______; L, M, N, ___, ___ What will happen after ADD O operation takes place?
a) front = 2 rear = 5
queue = ______; L, M, N, O, ___
b) front = 3 rear = 5
queue = L, M, N, O, ___
c) front = 3 rear = 4
queue = ______; L, M, N, O, ___
d) front = 2 rear = 4
queue = L, M, N, O, ___
queue = ______; L, M, N, O, ___
b) front = 3 rear = 5
queue = L, M, N, O, ___
c) front = 3 rear = 4
queue = ______; L, M, N, O, ___
d) front = 2 rear = 4
queue = L, M, N, O, ___
4. A queue is a ?
a) FIFO (First In First Out) list b) LIFO (Last In First Out) list. c) Ordered array d) Linear tree
5. In Breadth First Search of Graph, which of the following data structure is used?
a) Stack b) Queue c) Linked list d) None
6. If the elements “A”, “B”, “C” and “D” are placed in a queue and are deleted one at a time, in what order will they be removed?
a) ABCD b) DCBA c) DCAB d) ABCD
7. In linked list implementation of a queue, where does a new element be inserted?
a) At the head of link list b) At the tail of the link list c) At the centre position in the link list d) None
8. In the array implementation of circular queue, which of the following operation take worst case linear time?
a) Insertion b) Deletion c) To empty a queue d) None
9. In linked list implementation of queue, if only front pointer is maintained, which of the following operation take worst case linear time?
a) Insertion b) Deletion c) To empty a queue d) Both a and c
10. If the MAX_SIZE is the size of the array used in the implementation of circular queue. How is rear manipulated while inserting an element in the queue?
a) rear=(rear%1)+MAX_SIZE b) rear=rear%(MAX_SIZE+1)
c) rear=(rear+1)%MAX_SIZE d) rear=rear+(1%MAX_SIZE)
c) rear=(rear+1)%MAX_SIZE d) rear=rear+(1%MAX_SIZE)
Data Structures Interview Questions-Queue
11. If the MAX_SIZE is the size of the array used in the implementation of circular queue, array index start with 0, front point to the first element in the queue, and rear point to the last element in the queue. Which of the following condition specify that circular queue is FULL?
a) Front=rear= -1 b) Front=(rear+1)%MAX_SIZE
c) Rear=front+1 d) Rear=(front+1)%MAX_SIZE
c) Rear=front+1 d) Rear=(front+1)%MAX_SIZE
12. A circular queue is implemented using an array of size 10. The array index starts with 0, front is 6, and rear is 9. The insertion of next element takes place at the array index.
a) 0 b) 7 c) 9 d) 10
13. If the MAX_SIZE is the size of the array used in the implementation of circular queue, array index start with 0, front point to the first element in the queue, and rear point to the last element in the queue. Which of the following condition specify that circular queue is EMPTY?
a) Front=rear=0 b) Front= rear=-1 c) Front=rear+1 d) Front=(rear+1)%MAX_SIZE
14. A data structure in which elements can be inserted or deleted at/from both the ends but not in the middle is?
a) Queue b) Circular queue c) Dequeue d) Priority queue
15. In linked list implementation of a queue, front and rear pointers are tracked. Which of these pointers will change during an insertion into a NONEMPTY queue?
a) Only front pointer b) Only rear pointer
c) Both front and rear pointer d) None of the front and rear pointer
16. A normal queue, if implemented using an array of size MAX_SIZE, gets full when
a) Rear=MAX_SIZE-1 b) Front=(rear+1)mod MAX_SIZE c) Front=rear+1 d) Rear=front
17. In linked list implementation of a queue, front and rear pointers are tracked. Which of these pointers will change during an insertion into EMPTY queue?
a) Only front pointer b) Only rear pointer c) Both front and rear pointer d) None
18. An array of size MAX_SIZE is used to implement a circular queue. Front, Rear, and count are tracked. Suppose front is 0 and rear is MAX_SIZE -1. How many elements are present in the queue?
a) Zero b) One c) MAX_SIZE-1 d) MAX_SIZE
19. Suppose a circular queue of capacity (n-1) elements is implemented with an array of n elements. Assume that the insertion and deletion operations are carried out using REAR and FRONT as array index variables, respectively. Initially REAR=FRONT=0. The conditions to detect queue full and queue is empty are?
a) Full: (REAR+1)mod n == FRONT
Empty: REAR==FRONT
b) Full: (REAR+1)mod n == FRONT
Empty: (FRONT+1) mod n == REAR
c) Full: REAR==FRONT
Empty: (REAR+1) mod n==FRONT
d) Full: (FRONT+1)mod n==REAR
Empty: REAR==FRONT
Empty: REAR==FRONT
b) Full: (REAR+1)mod n == FRONT
Empty: (FRONT+1) mod n == REAR
c) Full: REAR==FRONT
Empty: (REAR+1) mod n==FRONT
d) Full: (FRONT+1)mod n==REAR
Empty: REAR==FRONT
20. Consider the following operations along with ENQUEUE and DEQUEUE operations queues, where k is a global parameter.
Multiqueue(Q)
{
m=k;
while(Q is not empty) and (m > 0)
{
DEQUEUE(Q)
m=m-1
}
}
{
m=k;
while(Q is not empty) and (m > 0)
{
DEQUEUE(Q)
m=m-1
}
}
What is the worst case time complexity of a sequence of n queue operations on an initially empty queue?
a) θ (n) b) θ (n + k) c) θ (nk) d) θ (n2)