Skip to main content

Featured Post

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

Literals and with its Types used in NetBeans part-1: Java

In Java Programming, Literals (often referred to as constants) are data items that are fixed data values. Java allows several kinds of literals:
  • Integer-literal
  • Floating-literals
  • Boolean-literals
  • Character-literals
  • Strings-literal
  • Null literals

Integer Literals

Integer literals are whole numbers without any fractional part. The method of writing integer constants has been specified in the following rule.
An integer constant must have at least one more digit and must not contain any decimal point. It may contain either + or – sing. A number with no sing is assumed to be positive. Commas cannot appear in an integer constant.
Java allows three types of integer literals:
  • An integer literal consisting of a sequence of digit is taken to be decimal integer constant unless it begins with 0(digit zero). For instance, 1234, 41, +97,-17 are decimal integer literals.
  • A sequence of digit starting with 0(digit zero) is taken to be an octal integer. For instance decimal integer 8 will be written as 010 as octal integer (810 =108) and decimal integer 12 will be written as 014 as octal integer (1210 = 1410). But make sure that when an integer begins with 0, it must not contain 8 and 9 as these are invalid octal digits.
  • A sequence of digit preceded by 0x or OX is taken to be a hexadecimal integer. For instance decimal 12 will be written as 0XC as hexadecimal integer. But with Hexadecimal constants only 0-9 and A-F can be used. All other letters are illegal.

Floating Literals

Floating literals are also called real literals. Real literals are numbers having fractional parts. These may be written in one of the two forms called fractional form or the exponent form.

A real literal in fraction form consist of signed or unsigned digits including a decimal point between digits. The rule for writing a real constant in fraction from is given below:
A real literal in fraction form must have at least one digit before a decimal point and at last one digit after decimal point. It may also have either + or – sign preceding it. A real literal with no sign is assumed to be positive.        
Valid real literals in fraction form contains 2.0, 17.5, -13.0, -0.00625
Invalid real constants contains 7, (7.), +17/2, 250.26.2, (17,250.262)

A real literals in exponent form consists of two parts: mantissa and exponent. For instance 5.8 can be written as 0.58 X 10 = o.58E01 where mantissa part is 0.58 (the part appearing before E) and exponent part is 1(the part appearing after E). E01 represent 10 1 . The rule for writing a real literal in exponent from is given below:
A real literal in exponent from has two parts: a mantissa and an exponent. The mantissa must be either must be an integer or a proper real literal. The mantissa is followed by a letter E or e and the exponent. The exponent must be an integer.
Valid real literals in exponent form: 152E05, 1.52E07, 0,152E08, 152.0E08, 152E+8, 1520E04

Invalid real literals in exponent from:
      (i)  172.E5                    (at least a digit must follow the decimal point)
      (ii) 1.7E                         (no digit specified for exponent)
      (iii) 0.17E2.3                (exponent cannot have fraction part)
      (iv) 17,225E02             (no comma allowed)
      (v) .25E-7                      (no preceding digits before decimal point)

Continue...

Comments

Popular Post

Polynomial representation using Linked List for Data Structure in 'C'

Polynomial representation using Linked List The linked list can be used to represent a polynomial of any degree. Simply the information field is changed according to the number of variables used in the polynomial. If a single variable is used in the polynomial the information field of the node contains two parts: one for coefficient of variable and the other for degree of variable. Let us consider an example to represent a polynomial using linked list as follows: Polynomial:      3x 3 -4x 2 +2x-9 Linked List: In the above linked list, the external pointer ‘ROOT’ point to the first node of the linked list. The first node of the linked list contains the information about the variable with the highest degree. The first node points to the next node with next lowest degree of the variable. Representation of a polynomial using the linked list is beneficial when the operations on the polynomial like addition and subtractions are performed. The resulting polynomial can also

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

Memory representation of Linked List Data Structures in C Language

                                 Memory representation of Linked List              In memory the linked list is stored in scattered cells (locations).The memory for each node is allocated dynamically means as and when required. So the Linked List can increase as per the user wish and the size is not fixed, it can vary.                Suppose first node of linked list is allocated with an address 1008. Its graphical representation looks like the figure shown below:       Suppose next node is allocated at an address 506, so the list becomes,   Suppose next node is allocated with an address with an address 10,s the list become, The other way to represent the linked list is as shown below:  In the above representation the data stored in the linked list is “INDIA”, the information part of each node contains one character. The external pointer root points to first node’s address 1005. The link part of the node containing information I contains 1007, the address of